:root {
    --primary: #FFC107; /* Logo Yellow */
    --secondary: #2C3359; /* Logo Navy Blue */
    --accent: #FF5A5F; /* Vibrant Coral */
    --text-dark: #1A1F36; /* Deep Navy text */
    --text-light: #6B7280; /* Soft gray */
    --bg-light: #F9FAFB; /* Very light gray */
    --bg-white: #FFFFFF;
    --border: #E5E7EB;
    --whatsapp: #25D366;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -3px rgba(44, 51, 89, 0.1);
    --shadow-lg: 0 20px 40px -5px rgba(44, 51, 89, 0.15);
    --radius: 12px;
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-white { color: var(--bg-white); }
.text-light-grey { color: #A0A5BD; }
.bg-navy { background-color: var(--secondary); color: var(--bg-white); }
.bg-light { background-color: var(--bg-light); }
.mt-2 { margin-top: 10px; }
.mt-50 { margin-top: 50px; }
.mb-20 { margin-bottom: 20px; }

.section {
    padding: 100px 0;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    color: var(--text-dark);
}

.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 {
    color: var(--bg-white);
}

h1 { font-size: 3.5rem; font-weight: 800; margin-bottom: 24px; letter-spacing: -1px; }
h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 24px; }
h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 16px; }
h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 12px; }

p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--accent);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px; /* Pill shape */
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-sm {
    padding: 8px 24px;
    font-size: 0.95rem;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--secondary);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.btn-accent {
    background-color: var(--accent);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(255, 90, 95, 0.4);
}

.btn-accent:hover {
    background-color: transparent;
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: none;
}

.btn-outline {
    background-color: transparent;
    border-color: var(--secondary);
    color: var(--secondary);
}

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

.btn-text {
    font-weight: 600;
    color: var(--secondary);
    position: relative;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.btn-text:hover::after {
    width: 100%;
}

/* Header */
.header {
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    margin-top: 20px;
}

.logo-img {
    height: 50px;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.desktop-nav a:not(.btn) {
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.desktop-nav a:not(.btn):hover {
    color: var(--accent);
}

/* Hero Section */
.hero-split {
    padding: 200px 0 100px;
    background: linear-gradient(135deg, #F4F6F9 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.hero-split-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 193, 7, 0.2);
    color: #D4A000;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.call-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--secondary);
    transition: color 0.3s ease;
}

.call-link:hover {
    color: var(--accent);
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.hero-shape {
    position: absolute;
    width: 120%;
    height: 120%;
    background: var(--primary);
    border-radius: 50%;
    top: -10%;
    right: -20%;
    z-index: 1;
    opacity: 0.2;
}

/* Stats Banner */
.stats-banner {
    padding: 60px 0;
    position: relative;
    z-index: 5;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 5px;
}

.stat-item p {
    margin-bottom: 0;
    color: var(--bg-white);
    opacity: 0.8;
}

/* About Section */
.split-layout {
    display: flex;
    gap: 80px;
}

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

.image-collage {
    flex: 1;
    position: relative;
}

.main-collage-img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-white);
}

.experience-badge .number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
}

.about-modern .content {
    flex: 1;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Services Modern Grid */
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card-modern {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--border);
}

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

.card-image-wrapper {
    height: 220px;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-modern:hover .card-image-wrapper img {
    transform: scale(1.1);
}

.card-content {
    padding: 30px;
}

/* AMC Banner */
.amc-banner {
    padding: 100px 0;
    background: linear-gradient(rgba(44, 51, 89, 0.95), rgba(44, 51, 89, 0.95)), url('images/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--bg-white);
}

.amc-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.2);
}

.amc-content h2 {
    color: var(--bg-white);
}

.amc-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.price-tag {
    font-size: 1.5rem;
    color: var(--primary);
}

.price-tag strong {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Footer */
.footer {
    padding: 80px 0 20px;
}

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

.license-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 24px;
}

.license-box p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #A0A5BD;
}

.license-box p strong {
    color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #A0A5BD;
    font-size: 0.9rem;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
    background-color: var(--bg-white);
}

.fab:hover {
    transform: scale(1.1);
}

.whatsapp-fab {
    color: var(--whatsapp);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-split-container, .split-layout, .amc-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-badge {
        right: 0;
        bottom: -20px;
    }

    .amc-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .desktop-nav {
        display: none;
    }

    .header-container {
        margin-top: 0;
        border-radius: 0;
    }
}
