/* =========================================
   CSS Reset & Base Variables (Light Mode)
========================================= */
:root {
    /* Brand Colors */
    --primary-color: #FBB117; /* Brighter, premium yellow */
    --primary-hover: #EAA00A;
    --primary-light: rgba(251, 177, 23, 0.1);
    
    /* Light Theme Backgrounds */
    --body-bg: #F8F9FA;
    --surface-bg: #FFFFFF;
    --section-alt-bg: #F1F3F5;
    
    /* Text Colors */
    --text-main: #212529; /* Dark for high contrast */
    --text-muted: #6C757D;
    --text-heading: #111111;
    
    /* Other Utilities */
    --border-color: #E9ECEF;
    --whatsapp-color: #25D366;
    --whatsapp-hover: #1EBE55;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    /* Geometry & Shadows */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Elegant Shadows for Light Theme */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-btn: 0 4px 15px rgba(251, 177, 23, 0.3);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-primary);
    background-color: var(--body-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-weight: 700;
}
p {
    margin-bottom: 1rem;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
/* =========================================
   Typography & Accents
========================================= */
span {
    color: var(--primary-color);
}
.text-center {
    text-align: center;
}
.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
}
.section-title {
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}
.section-title p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 700px;
}
.section-title.text-center p {
    margin-left: auto;
    margin-right: auto;
}
/* =========================================
   Buttons
========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-family: var(--font-heading);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
}
.btn-primary {
    background-color: var(--primary-color);
    color: #111; /* Dark text on yellow for contrast */
    box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 177, 23, 0.4);
}
.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--text-main);
    color: var(--text-main);
}
.btn-outline:hover {
    background: var(--text-main);
    color: #fff;
}
.btn-dark {
    background-color: var(--text-heading);
    color: #fff;
}
.btn-dark:hover {
    background-color: #000;
    color: var(--primary-color);
}
/* =========================================
   Header
========================================= */
.header {
    background-color: rgb(255, 255, 255);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    height: 55px;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
}
.logo:hover img {
    transform: scale(1.05);
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}
.desktop-nav ul {
    display: flex;
    gap: 25px;
}
.desktop-nav a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-main);
    transition: var(--transition);
    position: relative;
}
.desktop-nav a:hover {
    color: var(--primary-color);
}
.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}
.desktop-nav a:hover::after {
    width: 100%;
}
@media (max-width: 900px) {
    .desktop-nav {
        display: none;
    }
}
/* =========================================
   Hero Section
========================================= */
.hero {
    position: relative;
    padding: 160px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--surface-bg);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-color: var(--section-alt-bg);
    border-bottom-left-radius: 100px;
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hero-text {
    max-width: 650px;
    animation: fadeInUp 1s ease-out;
}
.badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-light);
    color: #D48E00; /* Slightly darker yellow for readability */
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 25px;
}
.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}
.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}
.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.hero-trust {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}
.trust-item i {
    color: var(--primary-color);
    margin-right: 5px;
}
.hero-image {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}
.slider-logo-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    animation: fadeInRight 1s ease-out;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}
/* =========================================
   Stats Section
========================================= */
.stats {
    padding: 40px 0;
    background-color: var(--surface-bg);
    border-bottom: 1px solid var(--border-color);
}
.stats-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #fff;
    padding: 30px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 20px;
}
.stat-box {
    text-align: center;
}
.stat-number {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}
.stat-text {
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 0;
}
.stat-divider {
    width: 2px;
    height: 60px;
    background-color: var(--border-color);
}
@media(max-width: 768px) {
    .stat-divider {
        display: none;
    }
    .stats-wrapper {
        flex-direction: column;
        text-align: center;
    }
}
/* =========================================
   About Us Section
========================================= */
.about {
    padding: 100px 0;
    background-color: var(--body-bg);
}
.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}
.about-image {
    flex: 1;
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}
.about-img-fluid {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: block;
}
.about-card-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--surface-bg);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--primary-color);
}
.about-card-float i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.about-content {
    flex: 1;
}
.about-list {
    margin-top: 30px;
}
.about-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-heading);
    font-weight: 500;
}
.about-list i {
    color: var(--primary-color);
    background: var(--primary-light);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}
/* =========================================
   Services Section (Grid)
========================================= */
.services {
    padding: 100px 0;
    background-color: var(--surface-bg);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.service-card {
    background-color: var(--body-bg);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    background-color: #fff;
    border-color: transparent;
}
.service-icon {
    width: 65px;
    height: 65px;
    background: var(--primary-light);
    color: #D48E00;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--primary-color);
    color: #111;
    transform: scale(1.1) rotate(-5deg);
}
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.service-card p {
    color: var(--text-muted);
}
/* =========================================
   Banner CTA
========================================= */
.banner-cta {
    padding: 80px 0;
    background-color: var(--primary-color);
    text-align: center;
}
.banner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" fill-opacity="0.05" fill="%23000"><path d="M50 0L100 50L50 100L0 50Z"/></svg>');
}
.banner-text {
    text-align: left;
    max-width: 600px;
}
.banner-text h2 {
    color: #111;
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.banner-text p {
    color: #333;
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0;
}
/* =========================================
   FAQ Section
========================================= */
.faq {
    padding: 100px 0;
    background-color: var(--body-bg);
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.faq-card {
    background: var(--surface-bg);
    padding: 30px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}
.faq-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.faq-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-heading);
}
.faq-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}
@media(max-width: 900px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================
   Footer
========================================= */
.footer {
    background-color: #111111;
    color: #eee;
    padding: 80px 0 20px;
    border-top: 5px solid var(--primary-color);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}
.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Makes logo white if it's black */
}
.brand-col p {
    color: #aaa;
}
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--primary-color);
    color: #111;
}
.footer-col h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}
.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}
.links-col ul li {
    margin-bottom: 15px;
}
.links-col ul li a {
    color: #aaa;
    transition: var(--transition);
}
.links-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #aaa;
}
.contact-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom p {
    color: #777;
    margin-bottom: 5px;
    font-size: 0.95rem;
}
.seo-footer-text {
    font-size: 0.8rem !important;
    opacity: 0.5;
}
/* =========================================
   Floating Buttons
========================================= */
.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    box-shadow: var(--shadow-md);
    z-index: 100;
    transition: var(--transition);
    text-decoration: none;
}
.whatsapp-float {
    right: 30px;
    background-color: var(--whatsapp-color);
}
.whatsapp-float:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}
.phone-float {
    left: 30px;
    background-color: var(--primary-color);
    color: #111;
}
.phone-float:hover {
    background-color: var(--primary-hover);
    transform: scale(1.1) translateY(-5px);
    box-shadow: var(--shadow-btn);
}
/* =========================================
   Animations & Media Queries
========================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 0.05; transform: translateX(0); }
}
@media (max-width: 1024px) {
    .banner-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .banner-text {
        text-align: center;
    }
}
@media (max-width: 768px) {
    .header-contact .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    .hero-trust {
        flex-direction: column;
        gap: 10px;
    }
    .hero-image {
        display: flex;
        width: 100%;
        margin-top: 30px;
    }
    
    .slider-logo-img {
        max-width: 280px;
    }
    
    .about-container {
        flex-direction: column;
    }
    
    .about-image {
        width: 100%;
    }
    .about-card-float {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        width: 80%;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-links, .contact-list li {
        justify-content: center;
    }
    .floating-btn {
        bottom: 20px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .whatsapp-float { right: 20px; }
    .phone-float { left: 20px; }
}
