:root {
    --primary-font: 'Inter', sans-serif;
    --logo-font: 'Parisienne', cursive;
    --text-dark: #111111;
    --text-light: #555555;
    --bg-light: #f9f9f9;
    --logo-bg: #e2e4e1;
    --white: #ffffff;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--primary-font);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 0;
    padding-right: 5%;
    height: 100px;
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.logo-container {
    background-color: var(--logo-bg);
    padding: 15px 30px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    font-family: var(--logo-font);
    font-size: 42px;
    color: #444;
    line-height: 1;
    font-weight: 400;
}

.logo-sub {
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #555;
    margin-top: 5px;
}

.nav ul {
    display: flex;
    gap: 30px;
}

.nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s;
}

.nav a:hover, .nav a.active {
    color: #666;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline {
    border: 1px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--text-dark);
}

.btn-dark {
    background-color: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background-color: #333;
}

.btn-white {
    background-color: var(--white);
    color: var(--black);
}

.btn-white:hover {
    background-color: #f0f0f0;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    background-image: url('images/hero-bg.webp');
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #e0e0e0;
}

/* About Section */
.about {
    display: flex;
    padding: 80px 10%;
    gap: 50px;
    align-items: flex-start;
}

.about-left {
    flex: 1;
}

.about-left h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.about-img-main-wrapper {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-img-main {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-right {
    flex: 1;
    padding-top: 100px;
}

.about-images-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.about-images-row img {
    flex: 1;
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.about-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 28px;
    font-weight: 600;
    color: inherit;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 13px;
    color: inherit;
    text-transform: capitalize;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 10%;
    text-align: center;
    background-color: var(--white);
}

.why-choose h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-sub {
    font-size: 14px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.icon-circle {
    width: 50px;
    height: 50px;
    background-color: var(--black);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

/* CTA Section */
.cta {
    position: relative;
    min-height: 400px;
    height: auto;
    background: url('images/cta-bg.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin: 60px 10%;
    padding: 40px;
    border-radius: 40px;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

.cta p {
    font-size: 14px;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 10% 30px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-col-1 {
    flex: 2;
}

.footer-logo {
    background-color: #f1f2f0;
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 20px;
    color: var(--black);
}

.logo-light {
    font-family: var(--logo-font);
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
}

.logo-sub-light {
    font-size: 8px;
    letter-spacing: 2px;
    font-weight: 600;
    text-align: center;
    margin-top: 5px;
}

.footer-desc {
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
    max-width: 300px;
}

.footer-col-2 {
    flex: 1;
}

.footer-col-2 h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-col-2 ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col-2 a {
    font-size: 13px;
    color: #aaa;
    transition: color 0.3s;
}

.footer-col-2 a:hover {
    color: var(--white);
}

.footer-col-3 {
    flex: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 38px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: #888;
    margin-top: 3px;
}

.contact-text .label {
    font-size: 12px;
    color: #888;
    margin-bottom: 2px;
}

.contact-text p:last-child {
    font-size: 13px;
    font-weight: 500;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    font-size: 12px;
    color: #aaa;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 14px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #888;
}

/* Core Values Grid */
.core-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Responsive */
@media (max-width: 1024px) {
    .about {
        flex-direction: column;
    }
    .about-right {
        padding-top: 30px;
    }
    .footer-container {
        flex-direction: column;
    }
    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* =========================================
   COMPREHENSIVE RESPONSIVE STYLES 
   ========================================= */

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}
.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--black);
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    

    /* Global sections */
    section { padding-left: 5% !important; padding-right: 5% !important; }
    div[style*="padding: 160px 10%"] { padding-left: 5% !important; padding-right: 5% !important; }
}

@media (max-width: 768px) {
    /* Typography Overrides */
    h1[style] { font-size: 38px !important; }
    h2[style] { font-size: 32px !important; }
    h3[style] { font-size: 26px !important; }
    h4[style] { font-size: 20px !important; }
    p[style] { font-size: 15px !important; }
    
    /* Header */
    .header { padding: 0 5%; height: 80px; flex-wrap: nowrap; justify-content: space-between; padding-top: 0; padding-bottom: 0; }
    .logo-container { height: 100%; padding: 10px 15px; display: flex; align-items: center; justify-content: center; background-color: transparent;}
    .logo { font-size: 28px; }
    .logo-sub { display: none; }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav { 
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        height: auto;
        background-color: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 30px;
        padding-bottom: 30px;
        transition: left 0.4s ease;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        z-index: 999;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav ul {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    /* Hamburger Animation */
    .menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
    
    /* Hero Section */
    .hero { padding-top: 80px !important; padding-bottom: 60px !important; height: auto !important; }
    .hero-content h2, .hero h2 { font-size: 26px !important; line-height: 1.3 !important; }
    .hero-content p, .hero p { font-size: 14px !important; line-height: 1.5 !important; margin-bottom: 25px !important; }
    div[style*="padding: 160px"] { padding: 100px 5% 60px !important; }
    div[style*="padding: 120px"] { padding: 100px 5% 60px !important; }
    
    /* About Section */
    .about[style] { padding: 60px 5% !important; }
    .about h3[style], .about h3 { font-size: 22px !important; line-height: 1.3 !important; }
    .about-left { margin-bottom: 30px; }
    .stats { flex-wrap: wrap; gap: 30px; justify-content: center; }
    .stat-item { width: 45%; }
    
    /* Why Choose Section */
    .why-choose[style] { padding: 60px 5% !important; }
    .features-list[style] { grid-template-columns: 1fr !important; gap: 30px !important; }
    .feature-card[style] { padding: 30px 20px !important; }
    
    /* CTA Section */
    .cta[style], .cta { padding: 40px 5% !important; margin: 40px 5% !important; min-height: auto !important; border-radius: 20px !important; }
    .cta h2[style], .cta h2 { font-size: 24px !important; line-height: 1.3 !important; }
    .cta p[style], .cta p { font-size: 14px !important; margin-bottom: 20px !important; line-height: 1.5 !important; }
    .btn-white[style], .btn-white { padding: 12px 24px !important; font-size: 14px !important; }
    
    /* Contact Page */
    .contact-page-section[style] { padding: 60px 5% !important; }
    div[style*="gap: 50px"] { gap: 30px !important; flex-direction: column !important; }
    div[style*="padding: 50px 40px"] { padding: 30px 20px !important; }
    .contact-item { margin-bottom: 30px !important; }
    .contact-item:last-child { margin-bottom: 0 !important; }
    
    /* Footer */
    .footer { padding: 50px 5% 20px !important; }
    .footer-container { gap: 25px; }
    .footer-col-1, .footer-col-2, .footer-col-3 { width: 100%; text-align: left; }
    .footer-desc { max-width: 100%; }
    .footer-col-2 h3 { margin-bottom: 12px !important; }
    .footer-col-2 ul { gap: 6px !important; }
    .contact-info { margin-top: 0; align-items: flex-start; gap: 12px !important; }
    .footer .contact-item { justify-content: flex-start; margin-bottom: 0 !important; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}

@media (max-width: 480px) {
    /* Micro adjustments for very small screens */
    .nav ul { gap: 15px; flex-wrap: wrap; justify-content: center; }
    .nav a { font-size: 13px; }
    h1[style] { font-size: 32px !important; }
    h2[style] { font-size: 24px !important; }
    .hero-content h2, .hero h2 { font-size: 22px !important; max-width: 100% !important; margin-bottom: 15px !important; }
    .hero-content p, .hero p { font-size: 13px !important; max-width: 100% !important; margin-bottom: 20px !important; }
    .about h3[style], .about h3 { font-size: 20px !important; line-height: 1.3 !important; }
    .stat-item { width: 100%; }
    .core-values-grid {
        grid-template-columns: 1fr;
    }
}
