:root {
    --primary-color: #E67E22;  /* Warm Orange */
    --secondary-color: #D35400;  /* Deep Orange */
    --text-color: #2C3E50;  /* Dark Blue-Gray */
    --light-bg: #FDF2E9;  /* Soft Peach */
    --white: #ffffff;
    --card-bg: #ffffff;
    --accent-color: #F39C12;  /* Golden Yellow */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    padding: 1rem 0;
    display: flex;
    justify-content: center;
}

.logo img {
    height: 120px;
    width: auto;
    filter: sepia(20%) saturate(120%) hue-rotate(5deg) brightness(105%);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 12rem 0 4rem;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero .subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Intro Section */
.intro {
    padding: 4rem 0;
    background-color: var(--white);
}

.intro-text {
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: center;
    line-height: 1.8;
    color: var(--text-color);
}

.coming-soon {
    font-size: 1.2rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.services .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(230, 126, 34, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(230, 126, 34, 0.15);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    min-height: 3.5rem;
}

.service-card p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    text-align: center;
    background-color: var(--white);
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tagline {
    font-style: italic;
    color: var(--text-color);
    opacity: 0.8;
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.btn.primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn.primary:hover {
    background-color: var(--secondary-color);
}

.btn.secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn.secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.support-email {
    margin: 1.5rem 0;
}

.support-email a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

.support-email a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.4rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .services .container {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .service-card h3 {
        min-height: auto;
    }
    
    .contact h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .service-card {
        padding: 1.5rem;
    }
} 