/* ============================================
   Mercantile Accountancy - Global Styles
   Colors extracted from logo
   ============================================ */

:root {
    /* Logo Colors */
    --primary: #1A2E5A;
    --primary-dark: #0F1C3A;
    --primary-light: #243E73;
    --gold: #E8A020;
    --gold-dark: #C8880E;
    --gold-light: #F5C85C;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --text: #1E293B;
    --text-muted: #64748B;
    
    /* Legacy compatibility */
    --primary-blue: #1A2E5A;
    --light-gray: #F2F2F2;
    --text-gray: #444444;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background: var(--white);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background: var(--white) !important;
    box-shadow: 0 1px 20px rgba(0,0,0,0.08);
    padding: 12px 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary) !important;
}

.logo-title {
    color: var(--primary);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 10px;
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 500;
    color: var(--text) !important;
    position: relative;
    padding: 8px 4px !important;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-phone {
    background: var(--primary);
    color: var(--white) !important;
    border-radius: 50px;
    font-weight: 600;
    padding: 10px 24px;
    font-size: 0.9rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-phone:hover {
    background: var(--gold);
    color: var(--white) !important;
    transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    z-index: 1;
}

/* Hero Section for other pages */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: rgba(232,160,32,0.06);
    border-radius: 50%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,160,32,0.2);
    border: 1px solid rgba(232,160,32,0.4);
    color: var(--gold);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-badge i {
    font-size: 0.7rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--gold);
}

.hero .lead {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 36px;
}

.btn-gold-cta {
    background: var(--gold);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    padding: 14px 28px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-gold-cta:hover {
    background: var(--gold-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-white {
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--white);
    border-radius: 50px;
    font-weight: 500;
    padding: 14px 28px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

/* Trust Stats */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.trust-stat .stat-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.trust-stat .stat-label {
    font-size: 0.78rem;
    opacity: 0.7;
    margin-top: 4px;
    line-height: 1.3;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    width: 100%;
}

.hero-cred-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 240px;
}

.hero-cred-card .cred-icon {
    width: 46px;
    height: 46px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hero-cred-card strong {
    display: block;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-cred-card span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Logo container in hero */
.hero-logo-container {
    background: white;
    padding: 12px;
    border-radius: 12px;
    display: block;
    width: fit-content;
    margin-bottom: 20px;
}

/* Hero floating logo */
.hero-logo-float {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 4s ease-in-out infinite;
    margin-top: -40px;
}

.hero-logo-float img {
    width: 280px;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    background: white;
    padding: 24px;
    border-radius: 24px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ============================================
   SERVICES NEWS TICKER
   ============================================ */
.services-ticker {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(232,160,32,0.2);
    border-bottom: 1px solid rgba(232,160,32,0.2);
}

.services-ticker::before,
.services-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.services-ticker::before {
    left: 0;
    background: linear-gradient(to right, var(--primary), transparent);
}

.services-ticker::after {
    right: 0;
    background: linear-gradient(to left, var(--primary-light), transparent);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 30s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 30px;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s;
}

.ticker-item i {
    color: var(--gold);
    font-size: 1.1rem;
}

.ticker-item:hover {
    color: var(--gold);
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-tag.light {
    background: rgba(232,160,32,0.15);
    border: 1px solid rgba(232,160,32,0.3);
    color: var(--gold);
}

.section-tag.dark {
    background: rgba(26,46,90,0.08);
    border: 1px solid rgba(26,46,90,0.15);
    color: var(--primary);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--primary);
}

.about-text {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Professional Service Cards for Homepage */
.services-section .service-card {
    background: linear-gradient(145deg, var(--white) 0%, #fafbfc 100%);
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12), 0 5px 15px rgba(0,0,0,0.08);
}

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

.services-section .service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0,0,0,0.2), 0 10px 25px rgba(0,0,0,0.1);
    border-color: rgba(232,160,32,0.4);
}

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

/* Service Number Badge */
.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    transition: all 0.3s ease;
}

.services-section .service-card:hover .service-number {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    transform: scale(1.1);
}

.services-section .service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(232,160,32,0.12) 0%, rgba(232,160,32,0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.4s ease;
    position: relative;
}

.services-section .service-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--gold-light) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.services-section .service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 15px 35px rgba(232,160,32,0.35);
}

.services-section .service-card:hover .service-icon::after {
    opacity: 0.5;
}

.services-section .service-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    transition: all 0.3s;
}

.services-section .service-card:hover .service-icon img {
    filter: brightness(0) invert(1);
    transform: scale(1.1);
}

.services-section .service-card h5 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 16px;
    line-height: 1.3;
}

.services-section .service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.services-section .btn-service {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26,46,90,0.2);
}

.services-section .btn-service:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    gap: 14px;
    box-shadow: 0 8px 25px rgba(232,160,32,0.4);
    transform: translateX(5px);
}

.services-section .btn-service i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.services-section .btn-service:hover i {
    transform: translateX(4px);
}

/* ============================================
   ABOUT & WHY US SECTIONS
   ============================================ */
.about-section,
.why-us-section {
    padding: 100px 0;
}

/* Professional Why Us Cards */
.why-us-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-100) 100%);
}

.why-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 20px rgba(26,46,90,0.06);
}

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

.why-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(26,46,90,0.12);
    border-color: rgba(232,160,32,0.3);
}

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

.why-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--gold);
    font-size: 1.6rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(26,46,90,0.2);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 40px rgba(232,160,32,0.35);
}

.why-card h4 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 16px;
    line-height: 1.3;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Why Us Section Header Enhancement */
.why-us-section .section-tag.dark {
    background: linear-gradient(135deg, rgba(26,46,90,0.08) 0%, rgba(26,46,90,0.04) 100%);
    border: 1px solid rgba(26,46,90,0.12);
    padding: 8px 20px;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.why-us-section .section-tag.dark i {
    color: var(--gold);
}

.why-us-section .section-title {
    font-size: 2.4rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.exp-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--white);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    text-align: center;
}

.exp-badge .num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.exp-badge .lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text);
}

.feature-list li i {
    color: var(--gold);
    font-size: 1.1rem;
}

.btn-navy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-navy:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
}

.feature-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(232,160,32,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item h5 {
    font-weight: 600;
    margin-bottom: 6px;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================
   PACKAGES SECTION
   ============================================ */
.packages-section {
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
    padding: 100px 0;
}

.package-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 45px rgba(26,46,90,0.1);
    border: 1px solid var(--gray-200);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.package-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 30px 60px rgba(26,46,90,0.15);
    border-color: rgba(232,160,32,0.4);
}

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

/* Package Number Badge */
.pkg-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    transition: all 0.3s ease;
}

.package-card:hover .pkg-number {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    transform: scale(1.1);
}

.pkg-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(232,160,32,0.12) 0%, rgba(232,160,32,0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.8rem;
    transition: all 0.4s ease;
}

.pkg-icon-primary {
    color: var(--primary);
}

.pkg-icon-gold {
    color: var(--gold);
}

.package-card:hover .pkg-icon {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(232,160,32,0.35);
}

.package-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.pkg-price {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    font-weight: 500;
}

.pkg-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 28px;
    flex: 1;
}

.pkg-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.92rem;
    color: var(--text);
    border-bottom: 1px solid var(--gray-100);
    line-height: 1.5;
}

.pkg-features li:last-child {
    border-bottom: none;
}

.pkg-features li i {
    color: var(--gold);
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.btn-pkg {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
    box-shadow: 0 6px 20px rgba(26,46,90,0.2);
}

.btn-pkg:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(232,160,32,0.4);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--primary);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand img {
    width: 36px;
    filter: brightness(0) invert(1);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item .f-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.footer-contact-item .f-info strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.footer-contact-item .f-info span {
    font-size: 0.9rem;
    opacity: 0.75;
}

.footer-form input,
.footer-form textarea,
.footer-form select {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    border-radius: 8px;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
}

.footer-desc {
    opacity: 0.75;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.875rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-link:hover {
    opacity: 1;
    color: var(--white);
}

.footer-copyright {
    opacity: 0.6;
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gold);
}

.footer-contact-item {
    font-size: 0.875rem;
    opacity: 0.75;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-item i {
    color: var(--gold);
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--white);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37,211,102,0.4);
    transition: all 0.3s;
    z-index: 1000;
    text-decoration: none;
    font-size: 1.5rem;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item.visible:nth-child(1) { transition-delay: 0.1s; }
.stagger-item.visible:nth-child(2) { transition-delay: 0.2s; }
.stagger-item.visible:nth-child(3) { transition-delay: 0.3s; }
.stagger-item.visible:nth-child(4) { transition-delay: 0.4s; }
.stagger-item.visible:nth-child(5) { transition-delay: 0.5s; }
.stagger-item.visible:nth-child(6) { transition-delay: 0.6s; }

/* ============================================
   PAGE-SPECIFIC STYLES
   ============================================ */

/* Services Page - Professional Card Layout */
.service-category-header {
    text-align: center;
    margin-bottom: 60px;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(232,160,32,0.3);
}

.category-badge i {
    font-size: 0.7rem;
}

.service-category-header h2 {
    color: var(--primary);
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-category-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

.service-card {
    background: linear-gradient(145deg, var(--white) 0%, #fafbfc 100%);
    border-radius: 24px;
    padding: 36px 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(26,46,90,0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--gray-200);
}

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

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(26,46,90,0.15);
    border-color: rgba(232,160,32,0.4);
}

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

/* Service Number Badge */
.svc-number {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-card:hover .svc-number {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    transform: scale(1.1);
}

.service-card .service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(232,160,32,0.12) 0%, rgba(232,160,32,0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--gold);
    font-size: 1.6rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(232,160,32,0.35);
}

.service-card h4 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 14px;
    line-height: 1.4;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26,46,90,0.2);
}

.service-link:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    gap: 14px;
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(232,160,32,0.4);
}

.service-link i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.service-link:hover i {
    transform: translateX(4px);
}

.alt-section {
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

/* About Us Page */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 100px 0 80px;
}

.hero-section h1 {
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.hero-sub {
    font-size: 1.15rem;
    opacity: 0.85;
    max-width: 700px;
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

/* Story Section */
.story-section {
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
    padding: 100px 0;
}

.story-content {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text);
    margin-bottom: 28px;
    text-align: justify;
}

/* Consultant Card */
.consultant-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(26,46,90,0.12);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.consultant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(26,46,90,0.18);
}

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

.consultant-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.consultant-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.consultant-header h3 {
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.consultant-header p {
    opacity: 0.9;
    font-size: 1.05rem;
    font-weight: 500;
}

.consultant-details {
    padding: 35px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.detail-row:hover {
    background: var(--gray-100);
    margin: 0 -35px;
    padding: 16px 35px;
}

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

.detail-label {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.consultant-bio {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
    padding: 25px;
    border-radius: 16px;
    margin-top: 25px;
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--text);
    border-left: 4px solid var(--gold);
}

.consultant-bio strong {
    color: var(--primary);
    font-weight: 700;
}

/* Branch Cards (Replacing Table) */
.branch-cards-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.branch-card-lg {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    background: linear-gradient(145deg, var(--white) 0%, #fafbfc 100%);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 10px 40px rgba(26,46,90,0.08);
    transition: all 0.4s ease;
}

.branch-card-lg:hover {
    transform: translateX(10px);
    border-color: rgba(232,160,32,0.4);
    box-shadow: 0 15px 50px rgba(26,46,90,0.12);
}

.branch-info-lg {
    display: flex;
    align-items: center;
    gap: 20px;
}

.branch-icon-lg {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
}

.branch-card-lg.main-branch .branch-icon-lg {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
}

.branch-name-lg {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.branch-location-lg {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.branch-contact-lg {
    display: flex;
    align-items: center;
    gap: 10px;
}

.branch-contact-lg a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 22px;
    background: linear-gradient(135deg, rgba(232,160,32,0.15) 0%, rgba(232,160,32,0.05) 100%);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.branch-contact-lg a:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
}

/* Registrations Section */
.registrations-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 100px 0;
}

.registrations-section .section-title {
    background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.registrations-section .section-subtitle {
    color: rgba(255,255,255,0.85);
}

.registration-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.1);
    padding: 24px 30px;
    border-radius: 16px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}

.registration-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(10px);
    border-color: rgba(232,160,32,0.5);
}

.registration-item i {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.registration-item span {
    font-size: 1rem;
    font-weight: 500;
}

/* Value Cards */
.value-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(232,160,32,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Team Section */
.team-card {
    text-align: center;
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 4px solid var(--gold);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 0;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
}

.timeline-item .year {
    font-weight: 700;
    color: var(--gold);
    font-size: 0.9rem;
}

/* Services Page */
.service-detail-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-detail-card:hover {
    transform: translateY(-5px);
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list li i {
    color: var(--gold);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 80px 0;
}

/* Contact Page */
.contact-info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: rgba(232,160,32,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    margin: 0 auto 16px;
}

.contact-form {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(232,160,32,0.25);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
}

/* Blog Page */
.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-meta i {
    color: var(--gold);
    margin-right: 4px;
}

/* Why Us Page */
.reason-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-left: 4px solid var(--gold);
    transition: transform 0.3s;
}

.reason-card:hover {
    transform: translateX(5px);
}

.reason-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 10px;
}

.client-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    height: 100%;
}

.client-card:hover {
    transform: translateY(-5px);
}

.client-icon {
    width: 60px;
    height: 60px;
    background: rgba(232,160,32,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    margin: 0 auto 16px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hero {
        padding: 80px 0 60px;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 36px;
    }
    .hero-image-wrapper {
        margin-top: 48px;
    }
    .hero-cred-card {
        bottom: -10px;
        left: 10px;
    }
    .services-section,
    .about-section,
    .why-us-section,
    .packages-section {
        padding: 70px 0;
    }
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 1.9rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .hero-cred-card {
        position: static;
        margin-top: 16px;
    }
    .footer-top {
        padding: 60px 0 40px;
    }
}
