/* ===================================
   Elegant Beige Color Palette
   =================================== */
:root {
    /* Primary Beige - Sophisticated & Minimal */
    --primary-dark: #4A4238;
    --primary-brown: #6B5D52;
    --primary-medium: #9C8B7A;
    --primary-light: #D4C5B0;
    --primary-pale: #EDE7DF;

    /* Accent Colors */
    --accent-gold: #B8A088;
    --accent-cream: #F7F3EE;
    --accent-warm: #CEB8A3;

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #FDFBF7;
    --gray-light: #EFEAE3;
    --gray-medium: #ACA197;
    --text-dark: #3A342E;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(74, 66, 56, 0.06);
    --shadow-md: 0 4px 20px rgba(74, 66, 56, 0.08);
    --shadow-lg: 0 8px 40px rgba(74, 66, 56, 0.1);

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;
}

/* ===================================
   Global Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-dark);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-light));
    margin: 20px auto 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--primary-medium);
    margin-bottom: 60px;
    font-weight: 300;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-brown) 50%, var(--primary-medium) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(196, 160, 90, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 111, 71, 0.15) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="rgba(255,255,255,0.02)" width="100" height="100"/><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 5px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--accent-cream);
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-experience {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 40px;
    font-weight: 600;
    font-style: italic;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0 0 40px 0;
}

@media (max-width: 968px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-features {
        align-items: center;
    }

    .feature-badge {
        width: 100%;
        max-width: 500px;
    }

    .hero-image {
        order: -1;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

.feature-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.feature-badge .icon {
    background: var(--accent-gold);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-warm));
    color: var(--white);
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(196, 160, 90, 0.3);
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(196, 160, 90, 0.4);
    background: linear-gradient(135deg, var(--accent-warm), var(--accent-gold));
}

.cta-button.large {
    padding: 22px 60px;
    font-size: 1.2rem;
}

.hero-contact {
    margin-top: 50px;
    font-size: 1.1rem;
    color: var(--accent-cream);
}

.hero-contact p {
    margin: 8px 0;
}

/* ===================================
   Gallery Section
   =================================== */
.gallery {
    padding: var(--section-padding) 0;
    background: var(--white);
    text-align: center;
}

.gallery-slider {
    position: relative;
    max-width: 90%;
    margin: 0 auto;
    overflow: visible;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: inline-block;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: none;
}

.slide.active {
    opacity: 1;
    z-index: 1;
    display: block;
    position: relative;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(74, 66, 56, 0.9), transparent);
    color: var(--white);
    padding: 40px 30px 30px;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    font-family: 'Playfair Display', serif;
    border-radius: 0 0 20px 20px;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.slider-arrow span {
    font-size: 2rem;
    color: var(--primary-dark);
    font-weight: 300;
    line-height: 1;
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: var(--white);
    border-color: var(--accent-gold);
    transform: scale(1.3);
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 2px solid var(--gray-light);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-brown), var(--accent-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--primary-pale) 0%, var(--white) 100%);
    border: 2px solid var(--accent-gold);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--primary-pale);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1;
}

.service-title {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
}

.service-intro {
    font-size: 1.2rem;
    color: var(--primary-medium);
    font-weight: 500;
    margin-bottom: 20px;
}

.service-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.service-benefits li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
    font-size: 1rem;
}

.service-benefits li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
}

.service-recommended {
    background: var(--accent-cream);
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
}

.service-recommended h4 {
    color: var(--primary-brown);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.service-recommended ul {
    list-style: none;
}

.service-recommended li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.service-recommended li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-brown);
    font-weight: 700;
}

/* ===================================
   Pricing Section
   =================================== */
.pricing {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.pricing-images {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.pricing-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 50px rgba(74, 66, 56, 0.15);
}

.pricing-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   Process Section
   =================================== */
.process {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--accent-cream) 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-brown), var(--accent-gold));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    font-family: 'Playfair Display', serif;
}

.process-step h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--gray-medium);
    line-height: 1.6;
}

.process-note {
    background: var(--primary-pale);
    border-left: 4px solid var(--accent-gold);
    padding: 25px 30px;
    margin-top: 50px;
    border-radius: 10px;
}

.process-note p {
    color: var(--primary-dark);
    font-size: 1rem;
    line-height: 1.7;
}

/* ===================================
   Pricing Section
   =================================== */
.pricing {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.pricing-table {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-bottom: 1px solid var(--gray-light);
    transition: all 0.3s ease;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:hover {
    background: var(--accent-cream);
}

.pricing-service {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.pricing-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: 700;
}

.pricing-note {
    text-align: center;
    margin-top: 30px;
    color: var(--gray-medium);
    font-size: 0.95rem;
    font-style: italic;
}

/* ===================================
   Why Us Section
   =================================== */
.why-us {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-brown) 100%);
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.why-us .section-title,
.why-us .section-subtitle {
    color: var(--white);
}

.why-us .section-title::after {
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-cream));
}

.why-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.why-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.5;
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-text {
    text-align: left;
}

.about-subtitle {
    font-size: 1.3rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 30px;
    font-style: italic;
}

.about-description {
    color: var(--text-dark);
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--primary-brown);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.highlight-item {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-pale);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
}

.highlight-item strong {
    display: block;
    font-size: 1.3rem;
    color: var(--primary-dark);
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
}

.highlight-item span {
    font-size: 0.9rem;
    color: var(--primary-medium);
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--accent-cream);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-gold);
}

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--primary-brown);
    margin-bottom: 10px;
}

.contact-detail {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-guide {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.contact-guide h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.guide-intro {
    color: var(--primary-medium);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.contact-guide ul {
    list-style: none;
}

.contact-guide li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
}

.contact-guide li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
}

.cta-section {
    text-align: center;
    background: var(--white);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.cta-text {
    font-size: 1.2rem;
    color: var(--primary-medium);
    margin-bottom: 30px;
}

.cta-note {
    margin-top: 20px;
    color: var(--gray-medium);
    font-size: 1rem;
}

/* ===================================
   QR Code Section
   =================================== */
.qr-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-pale) 0%, var(--accent-cream) 100%);
}

.qr-codes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.qr-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.qr-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(74, 66, 56, 0.2);
    border-color: var(--accent-gold);
}

.qr-image {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 30px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
}

.qr-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.qr-card h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.qr-card p {
    font-size: 1.1rem;
    color: var(--primary-medium);
}

@media (max-width: 768px) {
    .qr-codes {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--primary-dark);
    color: var(--accent-cream);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--accent-cream);
}

.footer-contact p {
    margin: 5px 0;
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    color: var(--gray-medium);
    font-size: 0.9rem;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .container {
        padding: 0 25px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .logo {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .service-card {
        padding: 40px 30px;
    }

    .pricing-row {
        padding: 25px 30px;
    }

    /* Gallery Slider Mobile */
    .slider-wrapper {
        height: 400px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-arrow span {
        font-size: 1.5rem;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }

    .slide-caption {
        font-size: 1rem;
        padding: 30px 20px 20px;
    }

    .slider-dots {
        bottom: 15px;
        gap: 8px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .feature-badge {
        padding: 15px 20px;
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .cta-button.large {
        padding: 18px 40px;
        font-size: 1.1rem;
    }

    .service-number {
        font-size: 3rem;
    }

    .service-title {
        font-size: 1.6rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out backwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }
.hero-content > *:nth-child(6) { animation-delay: 0.6s; }
