/* CSS Custom Properties - Desert Color Palette */
:root {
    --desert-sand: #E6D7C3;
    --warm-sand: #D4B896;
    --sage-green: #8B9A8B;
    --dusty-rose: #C49B91;
    --terracotta: #B8673A;
    --deep-canyon: #7A5A3F;
    --sunset-orange: #D4803F;
    --cactus-green: #4A5D4A;
    --white: #FFFFFF;
    --light-gray: #F8F6F3;
    --dark-gray: #3A3A3A;
    --shadow: rgba(0, 0, 0, 0.1);
    
    --font-primary: 'Inter', sans-serif;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--deep-canyon);
    position: relative;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--cactus-green);
    margin-bottom: 3rem;
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--desert-sand);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--terracotta);
    font-weight: 700;
}

.logo-subtitle {
    font-size: 0.875rem;
    color: var(--cactus-green);
    font-weight: 300;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--terracotta);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--terracotta);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--desert-sand) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--deep-canyon);
}

.hero-title .accent {
    color: var(--terracotta);
    display: block;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--cactus-green);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(184, 103, 58, 0.3);
}

.btn-primary:hover {
    background: var(--deep-canyon);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 103, 58, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--terracotta);
    border: 2px solid var(--terracotta);
}

.btn-secondary:hover {
    background: var(--terracotta);
    color: var(--white);
}

/* Geometric Shapes */
.hero-visual {
    position: relative;
    height: 400px;
}

.geometric-shape {
    position: absolute;
    border-radius: var(--border-radius);
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--dusty-rose), var(--warm-sand));
    top: 50px;
    left: 50px;
    transform: rotate(15deg);
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--sage-green), var(--cactus-green));
    top: 150px;
    right: 100px;
    transform: rotate(-20deg);
    animation: float 4s ease-in-out infinite reverse;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--sunset-orange), var(--terracotta));
    bottom: 100px;
    left: 200px;
    transform: rotate(30deg);
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(15deg); }
    50% { transform: translateY(-20px) rotate(15deg); }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--light-gray);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--desert-sand);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
    background: var(--white);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--terracotta), var(--sunset-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--deep-canyon);
}

.service-card p {
    color: var(--cactus-green);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--desert-sand) 0%, var(--warm-sand) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--cactus-green);
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--terracotta);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--cactus-green);
    font-weight: 500;
}

/* Cactus Illustration */
.cactus-illustration {
    position: relative;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.cactus-main {
    width: 40px;
    height: 200px;
    background: linear-gradient(to bottom, var(--cactus-green), var(--sage-green));
    border-radius: 20px;
    position: relative;
}

.cactus-arm {
    width: 25px;
    height: 80px;
    background: linear-gradient(to bottom, var(--cactus-green), var(--sage-green));
    border-radius: 15px;
    position: absolute;
}

.cactus-arm.left {
    top: 40px;
    left: -20px;
    transform: rotate(-30deg);
}

.cactus-arm.right {
    top: 80px;
    right: -20px;
    transform: rotate(30deg);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--terracotta);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--terracotta);
    width: 30px;
}

.contact-item h4 {
    color: var(--deep-canyon);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--cactus-green);
}

.contact-cta {
    background: linear-gradient(135deg, var(--desert-sand) 0%, var(--warm-sand) 100%);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
}

.cta-content h3 {
    font-size: 2rem;
    color: var(--deep-canyon);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--cactus-green);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--desert-sand);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(184, 103, 58, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--deep-canyon);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: var(--desert-sand);
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: var(--warm-sand);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--warm-sand);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--desert-sand);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--warm-sand);
}

.footer-bottom p {
    color: var(--warm-sand);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        height: 200px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
}
