/* ===== GLOBAL RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #C5A028;
    --royal-blue: #1e3a8a;
    --dark-bg: #0a0a0a;
    --dark-gray: #1a1a1a;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3 {
    line-height: 1.4; 
    margin-bottom: 0.5em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.slide-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-gold);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.cta-btn:hover {
    background: var(--secondary-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
}

/* Hide slider controls on tablet and mobile */
@media (max-width: 968px) {
    .slider-controls {
        display: none;
    }
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-gold);
    width: 30px;
    border-radius: 10px;
}

/* ===== INTRO SECTION ===== */
.intro-section {
    padding: 100px 0;
    background: var(--white);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--royal-blue);
    margin-bottom: 25px;
}

/* Add this to style.css */
.intro-text h2 {
    display: flex;
    flex-direction: column;
    text-align: center;     /* Text alignment ko center rakhegi */
    width: 100%;
}

.indent-text {
    padding-left: 0px; /* Adjust this value to match the exact spacing you want */
    display: block;
    width: 100%;            /* Alignment fix karne ke liye */
}

.intro-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    text-align: justify;
}

.intro-image img {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--royal-blue);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

/* Grid Layout */
.services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
    padding: 20px 5px;
    width: 100%;
}

/* Tablet View (2 Columns) */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Mobile View (1 Column) */
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Card Styling */
.service-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Image Area */
.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

/* Content Area */
.card-content {
    padding: 25px 30px 35px 30px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Title Styling */
.service-card h3 {
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #1e3a8a;
}

.service-card h3 a {
    text-decoration: none;
    color: #1e3a8a;
    transition: color 0.3s ease;
}

.service-card h3 a:hover {
    color: #D4AF37;
}

/* Description Styling */
.service-card p {
    color: #666666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* ===== PREMIUM CTA DOWNLOAD SECTION ===== */
.cta-download-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.cta-download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(212,175,55,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-subtext {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-form {
    max-width: 1100px;
    margin: 0 auto;
}

.cta-form-fields {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 15px;
    align-items: end;
}

.cta-field {
    position: relative;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.cta-field input,
.cta-field select {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    transition: var(--transition);
}

.cta-field input:focus,
.cta-field select:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.cta-field input::placeholder {
    color: var(--text-light);
}

.cta-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.cta-submit-btn {
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.cta-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold));
}

.cta-submit-btn i {
    font-size: 18px;
}

.cta-message {
    margin-top: 20px;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition);
}

.cta-message.show {
    opacity: 1;
    transform: translateY(0);
}

.cta-message.success {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 2px solid rgba(34, 197, 94, 0.3);
}

.cta-message.error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 2px solid rgba(239, 68, 68, 0.3);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 100px 0;
    background: var(--white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px; /* Buttons ke beech ka gap */
    margin-bottom: 40px;
    flex-wrap: wrap; /* Mobile par buttons wrap ho jayenge */
    padding: 0 10px;
}

.gallery-filters .filter-btn {
    padding: 12px 25px;
    background: var(--white);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.gallery-filters .filter-btn i {
    font-size: 12px;
    color: inherit; /* Icon ka color button text jaisa rahega */
}

.gallery-filters .filter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border-color: var(--primary-gold);
}

.gallery-filters .filter-btn.active {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    border-color: var(--primary-gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    height: 300px;
}

/* Show only 9 items on desktop */
.gallery-item:nth-child(10) {
    display: none;
}

/* Show 10 items on tablet and mobile */
@media (max-width: 968px) {
    .gallery-item:nth-child(10) {
        display: block;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* --- NEW LIGHTBOX GALLERY STYLE --- */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    height: 300px;
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease; /* Smooth zoom ke liye */
}

.gallery-item:hover img {
    transform: scale(1.08); /* Hover par sirf zoom hoga, black shade nahi aayegi */
}

.gallery-btn-wrapper {
    text-align: center;
}

.see-all-btn {
    display: inline-block;
    padding: 15px 50px;
    background: var(--royal-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.see-all-btn:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* ===== FACILITIES SECTION ===== */
.facilities-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--royal-blue), #2563eb);
}

.facilities-ribbon {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.facility-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.facility-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.facility-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    flex-shrink: 0;
}

.facility-info h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 5px;
}

.facility-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Tablet View (968px se kam): 2 Columns */
@media (max-width: 968px) {
    .facilities-ribbon {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile View (576px se kam): 1 Column */
@media (max-width: 576px) {
    .facilities-ribbon {
        grid-template-columns: 1fr;
    }
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--royal-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
}

.feature-card h3 {
    font-size: 20px;
    color: var(--royal-blue);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    overflow: hidden;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 10px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.testimonial-card {
    background: var(--light-gray);
    border-radius: 20px;
    position: relative;
    box-sizing: border-box;
    padding: 40px;
    margin: 0 15px;
}

@media (min-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 30px);
        min-width: calc(50% - 30px);
    }
}

@media (max-width: 991px) {
    .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
        margin: 0;
        border-left: 5px solid var(--white);
        border-right: 5px solid var(--white);
    }
    .testimonials-slider { padding: 0; }
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px 20px;
        border: none;
        border-radius: 15px;
    }
    .testimonial-text { font-size: 15px; line-height: 1.6; }
    .testimonial-controls { display: none !important; }
}

.quote-icon {
    font-size: 50px;
    color: var(--primary-gold);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-text {
    color: var(--text-dark);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 20px;
    color: var(--royal-blue);
    margin-bottom: 10px;
}

.stars { color: var(--primary-gold); }

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-btn {
    background: var(--white);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    background: var(--primary-gold);
    color: var(--white);
}

/* ===== RESPONSIVE PAGE ADJUSTMENTS ===== */

/* Large Tablets (iPad Pro, 12.7 inch tabs) - Safe for Laptops */
@media (max-width: 1280px) { 
    /* Hero Slider Adjustment */
    .hero-slider { 
        height: 50vh; 
        min-height: 450px; 
    }

    /* INTRO SECTION SPACING ADJUSTMENT */
    .intro-section {
        padding-top: 70px;    /* Pehle 100px tha, ab kam kar diya */
        padding-bottom: 90px; /* Balance rakhne ke liye neeche se bhi kam kiya */
    }

    .slide-content h2 { font-size: 36px; }
    .slide-content p { font-size: 16px; }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-form-fields {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }
    .cta-field:nth-child(1),
    .cta-field:nth-child(4) { flex: 0 0 100%; }
    .cta-field:nth-child(2),
    .cta-field:nth-child(3) { flex: 0 0 calc(50% - 7.5px); }

    .cta-submit-btn { width: 100%; justify-content: center; }
    
    .contact-form { padding: 30px; }
    .form-row { grid-template-columns: 1fr; }
}

/* Mobile Devices */
@media (max-width: 768px) {
    /* Mobile me Intro spacing aur kam */
    .intro-section {
        padding-top: 50px;
        padding-bottom: 90px;
    }

    .section-header h2 {
    font-size: 32px;
    line-height: 1.3;
}
    .intro-text h2 { font-size: 32px; }
    
    .hero-slider { height: 50vh; }
    
    .cta-content h2 { font-size: 32px; }
    .cta-subtext { font-size: 16px; }
    .cta-form-fields { grid-template-columns: 1fr; }
    .cta-field:nth-child(2),
    .cta-field:nth-child(3) { flex: 0 0 100%; }
}

/* Small Mobile Screens - Final Optimized Version */
@media (max-width: 480px) {

    /* --- SECTION SPACING (HALF & EQUAL) --- */
    /* Hero aur Intro ke beech gap 100px rahega (padding-top: 100px) */
    .intro-section {
        padding-bottom: 50px !important;
    }

    /* Baaki saare sections ka gap half (50+50 = 100px) ho jayega */
    .services-section, 
    .gallery-section, 
    .facilities-section,
    .why-choose-section, 
    .testimonials-section {
        padding: 50px 0 !important;
    }
    .cta-download-section {
    padding: 50px 0 20px 0 !important; /* Bottom padding ko 50px se 30px kiya */
}

.gallery-filters {
        gap: 15px !important;
    }

    .gallery-filters .filter-btn {
        padding: 8px 16px !important; /* Left-Right spacing kam ki */
        font-size: 13px !important;
        flex: none !important; /* Forced width hata di */
        width: auto !important; /* Content ke hisaab se width lega */
        min-width: 0 !important; /* Purani min-width reset ki */
        justify-content: center;
    }

/* --- CARD ALIGNMENT & WIDTH (100% as requested) --- */
    .features-grid, .services-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .feature-card, .service-card {
        width: 100% !important; /* Side spacing half se bhi kam */
        max-width: 400px;
        margin: 0 auto 0px auto !important;
    }

    /* --- FONT SIZES (Aapke format ke mutabiq) --- */
    .slide-content h1, .slide-content h2 { font-size: 30px !important; line-height: 1.4 !important; }
    .slide-content p { font-size: 14px !important; }
    .slide-content .cta-btn { display: none !important; } /* Hero Button Removed */

    .intro-text h2, .section-header h2, .cta-content h2, 
    .why-choose-section h2, .testimonials-section h2 {
        font-size: 26px !important;
        line-height: 1.4 !important;
    }

    .service-card h3, .feature-card h3, .testimonial-author h4 { font-size: 20px !important; color: #1e3a8a !important; }

    .intro-text p, .service-card p, .feature-card p, .testimonial-text {
        font-size: 16px !important;
        line-height: 1.4 !important;
    }

    .section-header p, .cta-subtext { font-size: 14px !important; }

    /* Form iOS Zoom Fix */
    .cta-field input, .cta-field select, .cta-submit-btn { font-size: 16px !important; padding: 12px 15px; }
}

/* --- Global Heading Gap Adjustment (40% Reduced) --- */
.section-header h2, 
.cta-content h2,
.why-choose-section h2,
.testimonials-section h2 {
    margin-bottom: 5px !important; /* 15px se ghata kar 10px kiya */
}

/* Fix for Extra White Space */
html, body {
    width: 100%;
    overflow-x: hidden !important;
    position: relative;
    margin: 0;
    padding: 0;
}
section {
    max-width: 100vw;
    overflow-x: clip;
}

/* 4K Optimizations */
@media (min-width: 2000px) {
    .container { max-width: 1800px; padding: 0 40px; }
    body { font-size: 18px; }
    
    .slide-content { max-width: 1200px; }
    .slide-content h2 { font-size: 84px; margin-bottom: 30px; }
    .slide-content p { font-size: 28px; }
    .cta-btn { padding: 20px 60px; font-size: 20px; }
    
    .services-grid, .features-grid, .gallery-grid { gap: 50px; }
    .service-card, .feature-card { padding: 60px 40px; }
    
    .intro-section, .services-section, .gallery-section, 
    .why-choose-section, .testimonials-section, .contact-section {
        padding: 150px 0;
    }
}

