/* ============================================ */
/* CSS VARIABLES – Based on Your Color Scheme    */
/* ============================================ */
:root {
    /* Primary Colors */
    --color-navy: #0B3472;
    --color-navy-dark: #082652;
    --color-gold: #E4A11B;
    --color-gold-hover: #C98A12;
    --color-white: #FFFFFF;
    
    /* Neutral Colors */
    --color-bg-light: #F8F0FC;
    --color-bg-light-blue: #E6F3FF;
    --color-border: #DCE3EA;
    --color-text-light: #6B7280;
    --color-text-body: #334155;
    --color-text-heading: #0F172A;
    
    /* Status Colors */
    --color-success: #22C55E;
    --color-warning: #F59E0B;
    --color-error: #DC2626;
    --color-info: #2563EB;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Buttons */
    --btn-gold-bg: #E4A11B;
    --btn-gold-text: #0B3472;
    --btn-gold-hover: #C98A12;
    --btn-navy-bg: #0B3472;
    --btn-navy-text: #FFFFFF;
    --btn-navy-hover: #082652;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(11, 52, 114, 0.08);
    --shadow-md: 0 8px 30px rgba(11, 52, 114, 0.12);
    --shadow-lg: 0 20px 60px rgba(11, 52, 114, 0.18);
    --shadow-gold: 0 8px 30px rgba(228, 161, 27, 0.35);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================ */
/* GLOBAL STYLES                                */
/* ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-body);
    background: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: var(--transition-fast);
}

/* ============================================ */
/* HEADER – Premium Professional Design         */
/* ============================================ */

/* ============================================ */
/* TOP HEADER – Contact Bar                     */
/* ============================================ */

.top-header {
    background: var(--color-navy-dark);
    padding: 6px 0;
    position: relative;
    z-index: 1050;
    border-bottom: 2px solid var(--color-gold);
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-radius: var(--radius-md);
    padding: 4px 20px;
    background: rgba(8, 38, 82, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.top-header-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-header-info a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: var(--transition-fast);
    text-decoration: none;
}

.top-header-info a:hover {
    color: var(--color-gold);
    transform: translateY(-1px);
}

.top-header-info a i {
    color: var(--color-gold);
    margin-right: 6px;
    font-size: 13px;
}

.top-header-social {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* WhatsApp Button in Top Header */
.btn-whatsapp-top {
    background: #25D366;
    color: var(--color-white);
    padding: 4px 18px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.btn-whatsapp-top:hover {
    background: #1DA851;
    color: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Admin Button */
.btn-admin-top {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-fast);
    text-decoration: none;
}

.btn-admin-top:hover {
    color: var(--color-white);
    border-color: var(--color-gold);
    background: rgba(228, 161, 27, 0.1);
}

/* ============================================ */
/* MAIN NAVIGATION – Rounded Container          */
/* ============================================ */

.navbar {
    background: transparent !important;
    padding: 12px 0;
    transition: var(--transition-medium);
    position: sticky;
    top: 0;
    z-index: 1040;
}

/* Glass Container */
.navbar .container {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: var(--radius-xl);
    padding: 6px 20px;
    box-shadow: 0 8px 40px rgba(11, 52, 114, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* On Scroll Effect */
.navbar.sticky-scroll .container {
    padding: 4px 20px;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 50px rgba(11, 52, 114, 0.08);
    background: rgba(255, 255, 255, 0.92);
}

/* ============================================ */
/* LOGO                                         */
/* ============================================ */

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
    flex-shrink: 0;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    transition: var(--transition-medium);
    filter: drop-shadow(0 2px 4px rgba(11, 52, 114, 0.08));
}

.navbar-brand:hover img {
    filter: drop-shadow(0 4px 15px rgba(228, 161, 27, 0.25));
    transform: scale(1.03);
}

.brand-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-navy);
    letter-spacing: -0.5px;
    transition: var(--transition-fast);
}

.brand-text span {
    color: var(--color-gold);
}

/* ============================================ */
/* NAVIGATION – Center Aligned                  */
/* ============================================ */

.navbar-collapse {
    flex-grow: 1;
}

.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex: 1;
}

/* ============================================ */
/* NAV LINKS                                     */
/* ============================================ */

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 14px;
    color: var(--color-text-body) !important;
    padding: 8px 18px !important;
    border-radius: var(--radius-full);
    transition: var(--transition-medium);
    position: relative;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link i {
    font-size: 14px;
    color: var(--color-navy);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-navy) !important;
    background: rgba(11, 52, 114, 0.04);
    transform: translateY(-2px);
}

.nav-link:hover i {
    color: var(--color-gold);
}

/* Active Link */
.nav-link.active {
    color: var(--color-navy) !important;
    background: rgba(11, 52, 114, 0.06);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
    border-radius: var(--radius-full);
    animation: activeLine 0.4s ease;
}

@keyframes activeLine {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 20px;
        opacity: 1;
    }
}

.nav-link.active i {
    color: var(--color-gold);
}

/* ============================================ */
/* DROPDOWN – Hover Open (Desktop)              */
/* ============================================ */

.dropdown-menu {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(11, 52, 114, 0.08);
    padding: 8px;
    min-width: 230px;
    margin-top: 8px;
    animation: dropdownSlide 0.3s ease;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Desktop Hover Dropdown */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

.dropdown-item {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: var(--color-text-body);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-item i {
    color: var(--color-navy);
    font-size: 14px;
    width: 20px;
    text-align: center;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: rgba(11, 52, 114, 0.04);
    color: var(--color-navy);
    transform: translateX(4px);
}

.dropdown-item:hover i {
    color: var(--color-gold);
    transform: scale(1.15);
}

.dropdown-divider {
    border-color: var(--color-border);
    opacity: 0.2;
    margin: 6px 0;
}

/* Dropdown Toggle Arrow */
.dropdown-toggle::after {
    border: none !important;
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: var(--color-text-light);
    transition: var(--transition-fast);
    margin-left: 6px;
}

.dropdown-toggle.show::after {
    transform: rotate(180deg);
    color: var(--color-gold);
}

/* ============================================ */
/* HIRE NOW BUTTON                              */
/* ============================================ */

.btn-hire {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
    color: var(--color-navy) !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 28px;
    border-radius: var(--radius-full);
    border: none;
    box-shadow: 0 4px 25px rgba(228, 161, 27, 0.25);
    transition: var(--transition-medium);
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}

.btn-hire:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(228, 161, 27, 0.4);
    color: var(--color-navy) !important;
}

.btn-hire i {
    font-size: 16px;
}

/* ============================================ */
/* MOBILE NAVIGATION                            */
/* ============================================ */

.navbar-toggler {
    border: 1px solid var(--color-border) !important;
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    transition: var(--transition-fast);
    background: transparent;
}

.navbar-toggler:hover {
    border-color: var(--color-gold) !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(228, 161, 27, 0.15);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230B3472' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .navbar .container {
        border-radius: var(--radius-md);
        padding: 6px 12px;
        background: rgba(255, 255, 255, 0.92);
    }
    
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        border-radius: var(--radius-md);
        padding: 16px;
        margin-top: 10px;
        box-shadow: var(--shadow-md);
        border: 1px solid rgba(220, 227, 234, 0.15);
    }
    
    .navbar-nav {
        gap: 2px;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }
    
    .nav-link {
        padding: 10px 16px !important;
        border-radius: var(--radius-sm);
        font-size: 15px;
        justify-content: flex-start;
    }
    
    .nav-link i {
        font-size: 16px;
        width: 28px;
    }
    
    .dropdown-menu {
        background: rgba(248, 240, 252, 0.5);
        border-radius: var(--radius-sm);
        padding: 6px;
        margin: 4px 0 4px 30px;
        box-shadow: none;
        border: none;
        animation: none;
    }
    
    .dropdown-item {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .btn-hire {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
        padding: 12px;
    }
    
    .brand-text {
        font-size: 15px;
    }
    
    .navbar-brand img {
        height: 40px;
    }
    
    /* Top Header Mobile */
    .top-header-info {
        display: none;
    }
    
    .top-header .container {
        justify-content: center;
        border-radius: var(--radius-sm);
        padding: 4px 12px;
    }
    
    .top-header-social {
        width: 100%;
        justify-content: center;
        gap: 8px;
    }
    
    .btn-whatsapp-top {
        font-size: 11px;
        padding: 3px 14px;
    }
    
    .btn-admin-top {
        font-size: 11px;
        padding: 3px 12px;
    }
}

@media (max-width: 575.98px) {
    .navbar .container {
        border-radius: var(--radius-sm);
        padding: 4px 10px;
    }
    
    .navbar-brand img {
        height: 34px;
    }
    
    .brand-text {
        font-size: 13px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 8px 14px !important;
    }
    
    .top-header .container {
        padding: 2px 8px;
        border-radius: var(--radius-sm);
    }
    
    .btn-whatsapp-top {
        font-size: 10px;
        padding: 2px 10px;
    }
    
    .btn-admin-top {
        font-size: 10px;
        padding: 2px 10px;
    }
}

/* ============================================ */
/* REDUCED MOTION PREFERENCE                   */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    .dropdown-menu {
        animation: none !important;
    }
    
    .nav-link.active::after {
        animation: none !important;
    }
    
    .navbar .container {
        transition: none !important;
    }
    
    .nav-link {
        transition: none !important;
    }
    
    .btn-hire {
        transition: none !important;
    }
}

/* ============================================ */
/* DARK MODE SUPPORT                           */
/* ============================================ */

@media (prefers-color-scheme: dark) {
    .navbar .container {
        background: rgba(8, 38, 82, 0.85);
        border-color: rgba(255, 255, 255, 0.05);
    }
    
    .nav-link {
        color: rgba(255, 255, 255, 0.7) !important;
    }
    
    .nav-link:hover {
        color: var(--color-white) !important;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .nav-link.active {
        color: var(--color-white) !important;
        background: rgba(255, 255, 255, 0.06);
    }
    
    .nav-link i {
        color: rgba(255, 255, 255, 0.5);
    }
    
    .nav-link:hover i {
        color: var(--color-gold);
    }
    
    .brand-text {
        color: var(--color-white);
    }
    
    .dropdown-menu {
        background: rgba(8, 38, 82, 0.92);
        border-color: rgba(255, 255, 255, 0.05);
    }
    
    .dropdown-item {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.05);
        color: var(--color-white);
    }
    
    .dropdown-item i {
        color: rgba(255, 255, 255, 0.4);
    }
    
    .dropdown-item:hover i {
        color: var(--color-gold);
    }
    
    .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.1) !important;
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FFFFFF' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .navbar.sticky-scroll .container {
        background: rgba(8, 38, 82, 0.92);
    }
    
    .top-header {
        background: var(--color-navy-dark);
        border-bottom-color: var(--color-gold);
    }
    
    .top-header .container {
        background: rgba(0, 0, 0, 0.3);
    }
}

/* ============================================ */
/* SCROLL EFFECT                                */
/* ============================================ */

.navbar.sticky-scroll .container {
    padding: 4px 20px;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 50px rgba(11, 52, 114, 0.08);
}

.navbar.sticky-scroll .navbar-brand img {
    height: 44px;
}

.navbar.sticky-scroll .brand-text {
    font-size: 16px;
}

/* ============================================ */
/* FOOTER – Premium Professional Design         */
/* ============================================ */

.site-footer {
    background: var(--color-navy-dark);
    color: var(--color-white);
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

/* ============================================ */
/* DECORATIVE BACKGROUND                        */
/* ============================================ */

.site-footer::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(228, 161, 27, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat 25s ease-in-out infinite;
}

.site-footer::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat 30s ease-in-out infinite reverse;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -20px) scale(1.1);
    }
}

/* ============================================ */
/* GOLD DIVIDER – Top Accent Line               */
/* ============================================ */

.site-footer .gold-divider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-gold-hover), transparent);
    z-index: 1;
    animation: dividerShine 3s ease-in-out infinite;
}

@keyframes dividerShine {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

/* ============================================ */
/* FOOTER TOP – Rounded Container               */
/* ============================================ */

.footer-top {
    padding: 60px 0 40px;
    position: relative;
}

.footer-top .container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-xl);
    padding: 50px 40px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ============================================ */
/* COLUMN 1: COMPANY INFO & LOGO                */
/* ============================================ */

.footer-company {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
    transition: var(--transition-medium);
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo img {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition-medium);
}

.footer-logo:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 4px 20px rgba(228, 161, 27, 0.15));
}

.footer-company h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    color: var(--color-white);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.footer-company h4 span {
    color: var(--color-gold);
}

.footer-description {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    max-width: 320px;
    margin-bottom: 20px;
}

/* ============================================ */
/* SOCIAL ICONS                                 */
/* ============================================ */

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-white);
    font-size: 18px;
    transition: var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.04);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--color-gold);
    color: var(--color-navy);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(228, 161, 27, 0.3);
    border-color: var(--color-gold);
}

/* ============================================ */
/* FOOTER LINKS COLUMNS                         */
/* ============================================ */

.footer-links h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-white);
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

/* Gold Underline on Heading */
.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
    border-radius: var(--radius-full);
    transition: var(--transition-medium);
}

.footer-links:hover h5::after {
    width: 45px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 400;
    transition: var(--transition-fast);
    display: inline-block;
    position: relative;
    padding-left: 0;
    text-decoration: none;
}

.footer-links ul li a::before {
    content: '›';
    position: absolute;
    left: -8px;
    opacity: 0;
    color: var(--color-gold);
    font-weight: 700;
    transition: var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--color-gold);
    transform: translateX(6px);
}

.footer-links ul li a:hover::before {
    opacity: 1;
    left: -14px;
}

/* ============================================ */
/* FOOTER BOTTOM                                */
/* ============================================ */

.footer-bottom {
    background: rgba(0, 0, 0, 0.25);
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    margin-top: 20px;
}

.footer-bottom .container {
    border-radius: var(--radius-md);
    padding: 8px 20px;
    background: rgba(0, 0, 0, 0.15);
}

.footer-contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.footer-contact-info span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-contact-info span i {
    color: var(--color-gold);
    font-size: 13px;
}

.footer-contact-info span a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
    text-decoration: none;
}

.footer-contact-info span a:hover {
    color: var(--color-gold);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
    margin: 0;
    letter-spacing: 0.3px;
    font-family: var(--font-body);
}

.footer-copyright p strong {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================ */
/* RESPONSIVE – Tablet                         */
/* ============================================ */

@media (max-width: 991.98px) {
    .footer-top {
        padding: 40px 0 30px;
    }
    
    .footer-top .container {
        padding: 35px 25px 30px;
        border-radius: var(--radius-lg);
    }
    
    .footer-company {
        align-items: center;
        text-align: center;
    }
    
    .footer-description {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links ul li a::before {
        display: none;
    }
    
    .footer-links ul li a:hover {
        transform: none;
    }
    
    .footer-bottom .container {
        text-align: center;
        border-radius: var(--radius-sm);
        padding: 12px 16px;
    }
    
    .footer-contact-info {
        justify-content: center;
        margin-bottom: 8px;
    }
    
    .footer-copyright {
        text-align: center !important;
    }
}

/* ============================================ */
/* RESPONSIVE – Mobile                         */
/* ============================================ */

@media (max-width: 575.98px) {
    .footer-top {
        padding: 30px 0 20px;
    }
    
    .footer-top .container {
        padding: 25px 16px 20px;
        border-radius: var(--radius-md);
    }
    
    .footer-logo img {
        height: 55px;
    }
    
    .footer-company h4 {
        font-size: 18px;
    }
    
    .footer-description {
        font-size: 13px;
    }
    
    .footer-social a {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    
    .footer-links h5 {
        font-size: 15px;
    }
    
    .footer-links ul li a {
        font-size: 13px;
    }
    
    .footer-bottom .container {
        padding: 10px 12px;
        border-radius: var(--radius-sm);
    }
    
    .footer-contact-info {
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-contact-info span {
        font-size: 12px;
    }
    
    .footer-copyright p {
        font-size: 11px;
    }
}

/* ============================================ */
/* EXTRA SMALL – 400px and below               */
/* ============================================ */

@media (max-width: 399.98px) {
    .footer-top .container {
        padding: 20px 12px 16px;
        border-radius: var(--radius-sm);
    }
    
    .footer-logo img {
        height: 45px;
    }
    
    .footer-company h4 {
        font-size: 16px;
    }
    
    .footer-description {
        font-size: 12px;
    }
    
    .footer-social a {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
}

/* ============================================ */
/* REDUCED MOTION PREFERENCE                   */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    .site-footer::before,
    .site-footer::after {
        animation: none !important;
    }
    
    .site-footer .gold-divider {
        animation: none !important;
    }
    
    .footer-logo {
        transition: none !important;
    }
    
    .footer-logo:hover {
        transform: none !important;
    }
    
    .footer-social a {
        transition: none !important;
    }
    
    .footer-social a:hover {
        transform: none !important;
    }
    
    .footer-links ul li a {
        transition: none !important;
    }
    
    .footer-links ul li a:hover {
        transform: none !important;
    }
    
    .footer-links h5::after {
        transition: none !important;
    }
}

/* ============================================ */
/* DARK MODE – Already Dark (Navy)             */
/* ============================================ */

/* ============================================ */
/* ACCESSIBILITY – Focus States                */
/* ============================================ */

.footer-links ul li a:focus-visible,
.footer-social a:focus-visible,
.footer-contact-info span a:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* ============================================ */
/* SCROLL ANIMATION – Fade In                  */
/* ============================================ */

.footer-top .container {
    opacity: 0;
    transform: translateY(30px);
    animation: footerAppear 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes footerAppear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .footer-top .container {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* ============================================ */
/* 9. ANIMATIONS & UTILITY                      */
/* ============================================ */

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Glass Effect Utility */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gold Gradient Text */
.text-gold-gradient {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gold Underline Animation */
.gold-underline {
    position: relative;
}

.gold-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition-medium);
}

.gold-underline:hover::after {
    width: 100%;
}

/* ============================================ */
/* 10. SHADOW & BORDER UTILITIES                */
/* ============================================ */
.shadow-gold {
    box-shadow: var(--shadow-gold);
}

.shadow-hover {
    transition: var(--transition-medium);
}

.shadow-hover:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.border-gold {
    border-color: var(--color-gold) !important;
}

.border-gradient-top {
    border-top: 2px solid;
    border-image: linear-gradient(90deg, transparent, var(--color-gold), transparent) 1;
}

/* ============================================ */
/* 11. HEADER ROUNDED FIXES                     */
/* ============================================ */

/* Fix for dropdown on mobile */
@media (max-width: 991.98px) {
    .navbar .container {
        border-radius: var(--radius-md) !important;
        overflow: hidden;
    }
    
    .navbar-collapse {
        border-radius: var(--radius-sm);
        overflow: hidden;
    }
}

/* Ensure rounded header on all screens */
.navbar .container {
    border-radius: var(--radius-lg);
    overflow: visible;
}

/* Top header rounded corners */
.top-header .container {
    border-radius: var(--radius-md);
    padding: 4px 20px;
    background: rgba(8, 38, 82, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* ============================================ */
/* 12. SCROLL ANIMATIONS                        */
/* ============================================ */

/* Navbar scroll effect */
.navbar.sticky-scroll .container {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* Fade-in animation for dropdown */
.dropdown-menu.show {
    animation: dropdownSlide 0.3s ease;
}

/* ============================================ */
/* 13. ACCESSIBILITY IMPROVEMENTS               */
/* ============================================ */

/* Focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* High contrast for dark sections */
.section-dark .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
}

.section-dark .nav-link:hover {
    color: var(--color-gold) !important;
}

/* ============================================ */
/* 14. CUSTOM SCROLLBAR                         */
/* ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-navy), var(--color-gold));
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-navy-dark);
}
/* ============================================ */
/* FLOATING ICONS – WhatsApp & Chatbot          */
/* ============================================ */

.floating-icons {
    position: fixed;
    bottom: 30px;
    width: 100%;
    pointer-events: none;
    z-index: 9998;
    padding: 0 20px;
}

/* Base Floating Icon Style */
.floating-icon {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border: none;
    text-decoration: none;
    pointer-events: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: fixed;
    z-index: 9999;
}

/* ============================================ */
/* WHATSAPP ICON – Right Side                   */
/* ============================================ */
.floating-whatsapp {
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
}

.floating-whatsapp i {
    font-size: 32px;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* ============================================ */
/* CHATBOT ICON – Left Side                    */
/* ============================================ */
.floating-chatbot {
    left: 30px;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
    border: 2px solid var(--color-gold);
    animation: chatbotFloat 3s ease-in-out infinite;
}

.floating-chatbot:hover {
    transform: scale(1.12) rotate(5deg);
    box-shadow: 0 12px 40px rgba(228, 161, 27, 0.35);
    border-color: var(--color-gold-hover);
}

.floating-chatbot i {
    font-size: 28px;
    color: var(--color-gold);
    filter: drop-shadow(0 2px 4px rgba(228, 161, 27, 0.3));
}

/* ============================================ */
/* TOOLTIP – Show on Hover                     */
/* ============================================ */
.floating-tooltip {
    position: absolute;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* WhatsApp Tooltip (Right side) */
.floating-whatsapp .floating-tooltip {
    right: 75px;
    top: 50%;
    transform: translateY(-50%) translateX(5px);
}

.floating-whatsapp:hover .floating-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Chatbot Tooltip (Left side) */
.floating-chatbot .floating-tooltip {
    left: 75px;
    top: 50%;
    transform: translateY(-50%) translateX(-5px);
}

.floating-chatbot:hover .floating-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* ============================================ */
/* BADGE – Small indicator on icon             */
/* ============================================ */
.floating-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--color-gold);
    color: var(--color-navy);
    font-size: 9px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    padding: 2px 8px;
    border-radius: 20px;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.floating-whatsapp .floating-badge {
    background: #25D366;
    color: #fff;
}

/* ============================================ */
/* ANIMATIONS                                   */
/* ============================================ */

/* WhatsApp Pulse Animation */
@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 8px 50px rgba(37, 211, 102, 0.6), 0 0 0 15px rgba(37, 211, 102, 0.1);
    }
}

/* Chatbot Float Animation */
@keyframes chatbotFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* ============================================ */
/* RIPPLE EFFECT ON CLICK                       */
/* ============================================ */
.floating-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    opacity: 0;
    transition: all 0.4s ease;
}

.floating-icon:active::after {
    opacity: 1;
    animation: rippleEffect 0.6s ease-out;
}

@keyframes rippleEffect {
    0% {
        transform: scale(1);
        opacity: 1;
        border-color: rgba(255, 255, 255, 0.6);
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
        border-color: transparent;
    }
}

/* ============================================ */
/* RESPONSIVE – Mobile & Tablet                 */
/* ============================================ */

/* Tablet */
@media (max-width: 991.98px) {
    .floating-whatsapp {
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 24px;
        bottom: 25px;
    }
    
    .floating-chatbot {
        left: 20px;
        width: 55px;
        height: 55px;
        font-size: 24px;
        bottom: 25px;
    }
    
    .floating-whatsapp i {
        font-size: 28px;
    }
    
    .floating-chatbot i {
        font-size: 24px;
    }
    
    .floating-tooltip {
        display: none;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .floating-whatsapp {
        right: 15px;
        width: 50px;
        height: 50px;
        bottom: 20px;
    }
    
    .floating-chatbot {
        left: 15px;
        width: 50px;
        height: 50px;
        bottom: 20px;
    }
    
    .floating-whatsapp i {
        font-size: 24px;
    }
    
    .floating-chatbot i {
        font-size: 20px;
    }
    
    .floating-badge {
        font-size: 7px;
        padding: 1px 6px;
        top: -2px;
        right: -2px;
    }
    
    .floating-icon {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }
    
    /* Disable animations on mobile for performance */
    .floating-whatsapp {
        animation: none;
    }
    
    .floating-chatbot {
        animation: none;
    }
}

/* ============================================ */
/* DARK MODE SUPPORT                           */
/* ============================================ */
@media (prefers-color-scheme: dark) {
    .floating-tooltip {
        background: rgba(0, 0, 0, 0.9);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .floating-badge {
        border-color: var(--color-navy-dark);
    }
}

/* ============================================ */
/* ACCESSIBILITY – Focus States                */
/* ============================================ */
.floating-icon:focus-visible {
    outline: 3px solid var(--color-gold);
    outline-offset: 3px;
}

/* ============================================ */
/* REDUCED MOTION PREFERENCE                   */
/* ============================================ */
@media (prefers-reduced-motion: reduce) {
    .floating-whatsapp,
    .floating-chatbot {
        animation: none !important;
        transition: none !important;
    }
    
    .floating-whatsapp:hover,
    .floating-chatbot:hover {
        transform: none !important;
    }
}
/* ============================================ */
/* HERO SECTION – Left Content, Right Image     */
/* ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-white);
}

/* ============================================ */
/* BACKGROUND IMAGE & OVERLAY                   */
/* ============================================ */

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Gradient Overlay – Left side strong, Right side transparent */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(11, 52, 114, 0.92) 0%,
        rgba(11, 52, 114, 0.85) 20%,
        rgba(11, 52, 114, 0.70) 35%,
        rgba(11, 52, 114, 0.50) 50%,
        rgba(11, 52, 114, 0.25) 65%,
        rgba(11, 52, 114, 0.05) 80%,
        transparent 100%
    );
    z-index: 1;
}

/* Gold accent overlay (subtle) */
.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 20% 50%,
        rgba(228, 161, 27, 0.08) 0%,
        transparent 60%
    );
    z-index: 1;
}

/* ============================================ */
/* LEFT SIDE – CONTENT                         */
/* ============================================ */

.hero-content {
    position: relative;
    z-index: 3;
    padding: 40px 0;
}

.hero-text-wrapper {
    max-width: 600px;
}

/* Badge */
.hero-badge {
    display: inline-block;
    background: rgba(228, 161, 27, 0.15);
    border: 1px solid rgba(228, 161, 27, 0.3);
    color: var(--color-gold);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    backdrop-filter: blur(10px);
}

/* Title */
.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 48px;
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title .text-gold {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.hero-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    font-weight: 400;
}

/* Buttons */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 14px 36px;
    border-radius: var(--radius-full);
    border: none;
    box-shadow: 0 8px 30px rgba(228, 161, 27, 0.35);
    transition: var(--transition-medium);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 45px rgba(228, 161, 27, 0.5);
    color: var(--color-navy);
}

.btn-gold i {
    font-size: 20px;
}

.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 14px 36px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-medium);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    color: var(--color-white);
    transform: translateY(-3px);
}

.btn-outline-white i {
    font-size: 20px;
    color: #25D366;
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 28px;
    color: var(--color-gold);
    line-height: 1;
}

.hero-stat-label {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

/* ============================================ */
/* RIGHT SIDE – IMAGE                          */
/* ============================================ */

.hero-image-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 40px 0;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    transition: var(--transition-medium);
}

.hero-image-container:hover .hero-image {
    transform: scale(1.02);
}

/* Image Badge – Police Verified */
.hero-image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(34, 197, 94, 0.95);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

.hero-image-badge i {
    font-size: 14px;
}

/* Floating Cards */
.hero-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 3s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-floating-card i {
    font-size: 22px;
    color: var(--color-gold);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(228, 161, 27, 0.1);
    border-radius: 50%;
}

.hero-floating-card strong {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--color-text-heading);
    display: block;
    line-height: 1.2;
}

.hero-floating-card small {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--color-text-light);
}

.hero-floating-card-1 {
    bottom: 30px;
    left: -20px;
    animation-delay: 0.5s;
}

.hero-floating-card-2 {
    top: 30px;
    left: -20px;
    animation-delay: 1s;
}

/* ============================================ */
/* ANIMATIONS                                   */
/* ============================================ */

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ============================================ */
/* RESPONSIVE – Tablet                         */
/* ============================================ */

@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(11, 52, 114, 0.92) 0%,
            rgba(11, 52, 114, 0.85) 40%,
            rgba(11, 52, 114, 0.70) 70%,
            rgba(11, 52, 114, 0.50) 100%
        ) !important;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 0 40px;
    }
    
    .hero-text-wrapper {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .hero-image-wrapper {
        justify-content: center;
        padding: 20px 0 0;
    }
    
    .hero-image-container {
        max-width: 100%;
    }
    
    .hero-floating-card {
        display: none;
    }
}

/* ============================================ */
/* RESPONSIVE – Mobile                         */
/* ============================================ */

/* ============================================ */
/* RESPONSIVE – Mobile (575px and below)        */
/* ============================================ */

@media (max-width: 575.98px) {
    .hero-section {
        padding: 40px 0 30px;
        min-height: auto;
        display: flex;
        align-items: center;
    }
    
    /* ============================================ */
    /* OVERLAY – Mobile optimized                   */
    /* ============================================ */
    
    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(11, 52, 114, 0.95) 0%,
            rgba(11, 52, 114, 0.85) 40%,
            rgba(11, 52, 114, 0.70) 70%,
            rgba(11, 52, 114, 0.50) 100%
        ) !important;
    }
    
    /* ============================================ */
    /* CONTENT – Left side                         */
    /* ============================================ */
    
    .hero-content {
        padding: 10px 0 20px;
        text-align: center;
    }
    
    .hero-text-wrapper {
        max-width: 100%;
        padding: 0 5px;
    }
    
    /* Badge */
    .hero-badge {
        font-size: 10px;
        padding: 4px 14px;
        margin-bottom: 14px;
        letter-spacing: 0.3px;
        background: rgba(228, 161, 27, 0.12);
        border-color: rgba(228, 161, 27, 0.15);
    }
    
    /* Title */
    .hero-title {
        font-size: 26px;
        line-height: 1.2;
        letter-spacing: -0.5px;
        margin-bottom: 12px;
    }
    
    .hero-title .text-gold {
        display: inline;
    }
    
    /* Subtitle */
    .hero-subtitle {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 24px;
        padding: 0 5px;
        color: rgba(255, 255, 255, 0.8);
    }
    
    /* ============================================ */
    /* BUTTONS – Mobile optimized                  */
    /* ============================================ */
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        margin-bottom: 30px;
    }
    
    .btn-gold,
    .btn-outline-white {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 13px 20px;
        font-size: 14px;
        border-radius: var(--radius-full);
        letter-spacing: 0.3px;
    }
    
    .btn-gold {
        box-shadow: 0 6px 25px rgba(228, 161, 27, 0.3);
    }
    
    .btn-gold:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 35px rgba(228, 161, 27, 0.4);
    }
    
    .btn-outline-white {
        border-width: 1.5px;
        backdrop-filter: blur(5px);
        background: rgba(255, 255, 255, 0.05);
    }
    
    .btn-outline-white:hover {
        background: rgba(255, 255, 255, 0.12);
    }
    
    .btn-gold i,
    .btn-outline-white i {
        font-size: 16px;
    }
    
    /* ============================================ */
    /* STATS – Mobile optimized                    */
    /* ============================================ */
    
    .hero-stats {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        margin: 0 10px;
    }
    
    .hero-stat {
        flex: 0 0 auto;
        min-width: 70px;
        text-align: center;
        padding: 0 5px;
    }
    
    .hero-stat-number {
        font-size: 20px;
        font-weight: 800;
        color: var(--color-gold);
        line-height: 1.2;
        display: block;
    }
    
    .hero-stat-label {
        font-size: 10px;
        color: rgba(255, 255, 255, 0.55);
        margin-top: 3px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 500;
        display: block;
    }
    
    /* Separator between stats */
    .hero-stat:not(:last-child)::after {
        content: '';
        position: absolute;
        right: -8px;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 20px;
        background: rgba(255, 255, 255, 0.08);
    }
    
    .hero-stat {
        position: relative;
    }
    
    /* ============================================ */
    /* IMAGE – Right side (Smaller on Mobile)      */
    /* ============================================ */
    
    .hero-image-wrapper {
        padding: 0;
        margin-top: 10px;
        justify-content: center;
    }
    
    .hero-image-container {
        max-width: 85%;
        border-radius: var(--radius-md);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
        margin: 0 auto;
    }
    
    .hero-image {
        border-radius: var(--radius-md);
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
        object-fit: cover;
    }
    
    /* Image Badge – Smaller */
    .hero-image-badge {
        top: 10px;
        right: 10px;
        font-size: 9px;
        padding: 4px 12px;
        gap: 5px;
        border-radius: var(--radius-full);
        background: rgba(34, 197, 94, 0.95);
        backdrop-filter: blur(5px);
        box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    }
    
    .hero-image-badge i {
        font-size: 10px;
    }
    
    /* ============================================ */
    /* FLOATING CARDS – Hide on Mobile             */
    /* ============================================ */
    
    .hero-floating-card {
        display: none !important;
    }
    
    /* ============================================ */
    /* IMAGE CONTAINER – Border & Shadow           */
    /* ============================================ */
    
    .hero-image-container {
        position: relative;
        border: 2px solid rgba(255, 255, 255, 0.08);
        box-shadow: 
            0 20px 50px rgba(0, 0, 0, 0.2),
            inset 0 0 30px rgba(228, 161, 27, 0.03);
    }
    
    /* Gold corner accent on image */
    .hero-image-container::after {
        content: '';
        position: absolute;
        bottom: -6px;
        right: -6px;
        width: 40px;
        height: 40px;
        border-right: 3px solid var(--color-gold);
        border-bottom: 3px solid var(--color-gold);
        border-radius: 0 0 var(--radius-md) 0;
        opacity: 0.5;
        pointer-events: none;
    }
    
    /* ============================================ */
    /* STATS – Alternative Grid Layout             */
    /* ============================================ */
    
    .hero-stats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .hero-stat-item {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(5px);
        border-radius: var(--radius-sm);
        padding: 10px 5px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .hero-stat-item .number {
        font-family: var(--font-heading);
        font-weight: 800;
        font-size: 18px;
        color: var(--color-gold);
        display: block;
        line-height: 1.2;
    }
    
    .hero-stat-item .label {
        font-size: 9px;
        color: rgba(255, 255, 255, 0.5);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        display: block;
        margin-top: 2px;
    }
}

/* ============================================ */
/* EXTRA SMALL – 400px and below                */
/* ============================================ */

@media (max-width: 399.98px) {
    .hero-title {
        font-size: 22px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
    .btn-gold,
    .btn-outline-white {
        max-width: 100%;
        padding: 11px 18px;
        font-size: 13px;
    }
    
    .hero-image-container {
        max-width: 75%;
    }
    
    .hero-stat-number {
        font-size: 17px;
    }
    
    .hero-stat-label {
        font-size: 9px;
    }
    
    .hero-stats {
        gap: 10px;
    }
    
    .hero-stat:not(:last-child)::after {
        display: none;
    }
}

/* ============================================ */
/* MOBILE PORTRAIT – Height based              */
/* ============================================ */

@media (max-height: 700px) and (max-width: 575.98px) {
    .hero-section {
        padding: 20px 0 15px;
    }
    
    .hero-title {
        font-size: 22px;
    }
    
    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .hero-badge {
        font-size: 9px;
        padding: 3px 12px;
        margin-bottom: 10px;
    }
    
    .hero-buttons {
        gap: 8px;
        margin-bottom: 16px;
    }
    
    .btn-gold,
    .btn-outline-white {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .hero-stats {
        padding-top: 12px;
    }
    
    .hero-stat-number {
        font-size: 16px;
    }
    
    .hero-image-container {
        max-width: 60%;
    }
}

/* ============================================ */
/* REDUCED MOTION PREFERENCE                    */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    .hero-floating-card {
        animation: none !important;
    }
    
    .hero-image-badge {
        animation: none !important;
    }
    
    .hero-image-container:hover .hero-image {
        transform: none !important;
    }
}

/* ============================================ */
/* TRUST SECTION – Professional Cards           */
/* ============================================ */

.trust-section {
    padding: 80px 0;
    background: var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

/* Decorative Background Elements */
.trust-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(228, 161, 27, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.trust-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(11, 52, 114, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ============================================ */
/* SECTION HEADER                               */
/* ============================================ */

.section-header {
    margin-bottom: 50px;
    position: relative;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 38px;
    color: var(--color-navy);
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
    border-radius: var(--radius-full);
    margin: 12px auto 0;
}

.section-header .section-subtitle {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================ */
/* TRUST CARDS – Glassmorphism Style            */
/* ============================================ */

.trust-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: 35px 25px 30px;
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(11, 52, 114, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Card Hover Effect */
.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(11, 52, 114, 0.12);
    border-color: rgba(228, 161, 27, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

/* Gold Accent Line - Bottom */
.trust-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    transform: scaleX(0);
    transition: var(--transition-medium);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.trust-card:hover::after {
    transform: scaleX(1);
}

/* Gold Glow Effect on Hover */
.trust-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, transparent, var(--color-gold), transparent);
    opacity: 0;
    transition: var(--transition-medium);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.trust-card:hover::before {
    opacity: 1;
}

/* ============================================ */
/* TRUST ICON – Gold Circle                     */
/* ============================================ */

.trust-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(228, 161, 27, 0.12), rgba(228, 161, 27, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--color-gold);
    margin-bottom: 20px;
    transition: var(--transition-medium);
    position: relative;
    flex-shrink: 0;
}

/* Icon Inner Glow */
.trust-icon::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(228, 161, 27, 0.2), transparent);
    opacity: 0;
    transition: var(--transition-medium);
}

.trust-card:hover .trust-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, rgba(228, 161, 27, 0.2), rgba(228, 161, 27, 0.08));
    box-shadow: 0 8px 30px rgba(228, 161, 27, 0.25);
}

.trust-card:hover .trust-icon::after {
    opacity: 1;
}

/* Icon Pulse Animation */
.trust-card:nth-child(1) .trust-icon {
    animation: iconPulse 3s ease-in-out infinite;
}
.trust-card:nth-child(2) .trust-icon {
    animation: iconPulse 3.5s ease-in-out infinite 0.3s;
}
.trust-card:nth-child(3) .trust-icon {
    animation: iconPulse 4s ease-in-out infinite 0.6s;
}
.trust-card:nth-child(4) .trust-icon {
    animation: iconPulse 4.5s ease-in-out infinite 0.9s;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ============================================ */
/* TRUST CARD TEXT                              */
/* ============================================ */

.trust-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-navy);
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.trust-card:hover h4 {
    color: var(--color-navy);
}

.trust-card p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-body);
    margin: 0;
    flex: 1;
}

/* ============================================ */
/* CARD NUMBER BADGE (Decorative)               */
/* ============================================ */

.trust-card .card-number {
    position: absolute;
    top: -10px;
    right: -5px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 72px;
    color: rgba(11, 52, 114, 0.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: var(--transition-medium);
}

.trust-card:hover .card-number {
    color: rgba(228, 161, 27, 0.05);
    transform: scale(1.1);
}

/* ============================================ */
/* RESPONSIVE – Tablet                         */
/* ============================================ */

@media (max-width: 991.98px) {
    .trust-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .section-header .section-subtitle {
        font-size: 16px;
    }
    
    .trust-card {
        padding: 30px 20px 25px;
    }
    
    .trust-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .trust-card h4 {
        font-size: 17px;
    }
    
    .trust-card .card-number {
        font-size: 56px;
    }
}

/* ============================================ */
/* RESPONSIVE – Mobile                         */
/* ============================================ */

@media (max-width: 575.98px) {
    .trust-section {
        padding: 50px 0 30px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .section-header h2::after {
        width: 40px;
        height: 3px;
    }
    
    .section-header .section-subtitle {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .trust-card {
        padding: 25px 18px 20px;
        border-radius: var(--radius-md);
    }
    
    .trust-card:hover {
        transform: translateY(-5px);
    }
    
    .trust-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .trust-card h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .trust-card p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .trust-card .card-number {
        font-size: 40px;
        top: -5px;
        right: 5px;
    }
    
    /* Disable animations on mobile for performance */
    .trust-card:nth-child(1) .trust-icon,
    .trust-card:nth-child(2) .trust-icon,
    .trust-card:nth-child(3) .trust-icon,
    .trust-card:nth-child(4) .trust-icon {
        animation: none;
    }
}

/* ============================================ */
/* REDUCED MOTION PREFERENCE                    */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    .trust-card {
        transition: none !important;
    }
    
    .trust-card:hover {
        transform: none !important;
    }
    
    .trust-card:nth-child(1) .trust-icon,
    .trust-card:nth-child(2) .trust-icon,
    .trust-card:nth-child(3) .trust-icon,
    .trust-card:nth-child(4) .trust-icon {
        animation: none !important;
    }
    
    .trust-card::after,
    .trust-card::before {
        transition: none !important;
    }
}

/* ============================================ */
/* DARK MODE SUPPORT                           */
/* ============================================ */

@media (prefers-color-scheme: dark) {
    .trust-card {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.05);
    }
    
    .trust-card:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(228, 161, 27, 0.2);
    }
    
    .trust-card h4 {
        color: var(--color-white);
    }
    
    .trust-card p {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .trust-icon {
        background: linear-gradient(135deg, rgba(228, 161, 27, 0.2), rgba(228, 161, 27, 0.08));
    }
    
    .trust-card .card-number {
        color: rgba(255, 255, 255, 0.03);
    }
}

/* ============================================ */
/* ACCESSIBILITY – Focus States                */
/* ============================================ */

.trust-card:focus-within {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* ============================================ */
/* GRID GAP ADJUSTMENT                         */
/* ============================================ */

.row.g-4 {
    --bs-gutter-y: 1.5rem;
    --bs-gutter-x: 1.5rem;
}

/* ============================================ */
/* ADDITIONAL – Card Hover Ripple Effect       */
/* ============================================ */

.trust-card .hover-ripple {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    pointer-events: none;
    overflow: hidden;
}

.trust-card .hover-ripple::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(228, 161, 27, 0.05);
    transform: translate(-50%, -50%);
    transition: var(--transition-slow);
}

.trust-card:hover .hover-ripple::before {
    width: 500px;
    height: 500px;
}

/* ============================================ */
/* CARD SHADOW VARIANTS                        */
/* ============================================ */

.trust-card-shadow {
    box-shadow: 0 4px 20px rgba(11, 52, 114, 0.06);
}

.trust-card-shadow:hover {
    box-shadow: 0 20px 60px rgba(11, 52, 114, 0.12);
}

.trust-card-shadow-gold {
    box-shadow: 0 4px 20px rgba(228, 161, 27, 0.08);
}

.trust-card-shadow-gold:hover {
    box-shadow: 0 20px 60px rgba(228, 161, 27, 0.15);
}

/* ============================================ */
/* ABOUT PREVIEW SECTION – Modern Split Layout  */
/* ============================================ */

.about-preview-section {
    padding: 100px 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* ============================================ */
/* DECORATIVE BACKGROUND ELEMENTS               */
/* ============================================ */

.about-preview-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(228, 161, 27, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-preview-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(11, 52, 114, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ============================================ */
/* GOLD DIVIDER – Top of Section                */
/* ============================================ */

.about-preview-section .section-divider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.3;
}

/* ============================================ */
/* LEFT SIDE – CONTENT                         */
/* ============================================ */

.about-preview-content {
    padding-right: 40px;
    position: relative;
    z-index: 2;
}

/* Badge */
.about-badge {
    display: inline-block;
    background: rgba(228, 161, 27, 0.1);
    border: 1px solid rgba(228, 161, 27, 0.15);
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 11px;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

/* Heading */
.about-preview-content h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 36px;
    color: var(--color-navy);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    position: relative;
}

/* Gold Underline on Heading */
.about-preview-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
    border-radius: var(--radius-full);
    margin-top: 14px;
}

/* Heading Highlight */
.about-preview-content h2 .text-gold {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Paragraph */
.about-preview-content p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-body);
    margin-bottom: 28px;
    max-width: 550px;
}

/* ============================================ */
/* BUTTON – Gold CTA                           */
/* ============================================ */

.about-preview-content .btn-about {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 34px;
    border-radius: var(--radius-full);
    border: none;
    box-shadow: 0 8px 30px rgba(228, 161, 27, 0.3);
    transition: var(--transition-medium);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.about-preview-content .btn-about:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 45px rgba(228, 161, 27, 0.45);
    color: var(--color-navy);
}

.about-preview-content .btn-about i {
    font-size: 18px;
    transition: var(--transition-fast);
}

.about-preview-content .btn-about:hover i {
    transform: translateX(6px);
}

/* ============================================ */
/* RIGHT SIDE – IMAGE                          */
/* ============================================ */

.about-preview-image {
    position: relative;
    z-index: 2;
    padding: 20px 0 20px 30px;
}

/* Image Container */
.about-preview-image .image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(11, 52, 114, 0.15);
    transition: var(--transition-medium);
}

.about-preview-image .image-wrapper:hover {
    transform: scale(1.01);
    box-shadow: 0 40px 100px rgba(11, 52, 114, 0.2);
}

/* Image */
.about-preview-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: var(--transition-medium);
}

.about-preview-image .image-wrapper:hover img {
    transform: scale(1.03);
}

/* ============================================ */
/* IMAGE DECORATIVE ELEMENTS                   */
/* ============================================ */

/* Gold Border Frame */
.about-preview-image .image-frame {
    position: absolute;
    inset: -10px;
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-lg);
    opacity: 0.15;
    pointer-events: none;
}

/* Gold Corner Accents */
.about-preview-image .corner-accent {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--color-gold);
    opacity: 0.2;
    pointer-events: none;
}

.about-preview-image .corner-accent.tl {
    top: -6px;
    left: -6px;
    border-right: none;
    border-bottom: none;
    border-radius: var(--radius-sm) 0 0 0;
}

.about-preview-image .corner-accent.tr {
    top: -6px;
    right: -6px;
    border-left: none;
    border-bottom: none;
    border-radius: 0 var(--radius-sm) 0 0;
}

.about-preview-image .corner-accent.bl {
    bottom: -6px;
    left: -6px;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 var(--radius-sm);
}

.about-preview-image .corner-accent.br {
    bottom: -6px;
    right: -6px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 var(--radius-sm) 0;
}

/* ============================================ */
/* IMAGE BADGE – Overlay                        */
/* ============================================ */

.about-preview-image .image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 14px 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: aboutBadgeFloat 3s ease-in-out infinite;
}

.about-preview-image .image-badge i {
    font-size: 24px;
    color: var(--color-gold);
    background: rgba(228, 161, 27, 0.1);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.about-preview-image .image-badge .badge-text {
    display: flex;
    flex-direction: column;
}

.about-preview-image .image-badge .badge-text strong {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--color-text-heading);
    font-weight: 700;
}

.about-preview-image .image-badge .badge-text small {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--color-text-light);
}

/* ============================================ */
/* SECOND BADGE – Top Right                     */
/* ============================================ */

.about-preview-image .image-badge-top {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(34, 197, 94, 0.95);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.35);
    animation: aboutBadgePulse 2s ease-in-out infinite;
}

.about-preview-image .image-badge-top i {
    font-size: 14px;
}

/* ============================================ */
/* ANIMATIONS                                   */
/* ============================================ */

@keyframes aboutBadgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes aboutBadgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
}

/* ============================================ */
/* RESPONSIVE – Tablet                         */
/* ============================================ */

@media (max-width: 991.98px) {
    .about-preview-section {
        padding: 70px 0;
    }
    
    .about-preview-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .about-preview-content h2 {
        font-size: 30px;
    }
    
    .about-preview-content h2::after {
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-preview-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-preview-image {
        padding: 0;
    }
    
    .about-preview-image img {
        height: 350px;
    }
    
    .about-preview-image .image-frame {
        display: none;
    }
    
    .about-preview-image .corner-accent {
        display: none;
    }
    
    .about-preview-image .image-badge {
        bottom: 20px;
        left: 20px;
        padding: 12px 18px;
    }
    
    .about-preview-image .image-badge-top {
        top: 20px;
        right: 20px;
        font-size: 11px;
        padding: 6px 14px;
    }
}

/* ============================================ */
/* RESPONSIVE – Mobile                         */
/* ============================================ */

@media (max-width: 575.98px) {
    .about-preview-section {
        padding: 50px 0 40px;
    }
    
    /* Content */
    .about-preview-content {
        text-align: center;
        padding: 0 5px;
    }
    
    .about-badge {
        font-size: 9px;
        padding: 3px 12px;
        margin-bottom: 12px;
    }
    
    .about-preview-content h2 {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .about-preview-content h2::after {
        width: 40px;
        height: 3px;
        margin-top: 10px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-preview-content p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 22px;
    }
    
    /* Button */
    .about-preview-content .btn-about {
        font-size: 14px;
        padding: 12px 28px;
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }
    
    .about-preview-content .btn-about i {
        font-size: 16px;
    }
    
    /* Image */
    .about-preview-image {
        padding: 0;
        margin-top: 10px;
    }
    
    .about-preview-image .image-wrapper {
        border-radius: var(--radius-md);
        box-shadow: 0 15px 40px rgba(11, 52, 114, 0.12);
        max-width: 90%;
        margin: 0 auto;
    }
    
    .about-preview-image img {
        height: 250px;
        border-radius: var(--radius-md);
    }
    
    .about-preview-image .image-wrapper:hover {
        transform: none;
    }
    
    .about-preview-image .image-wrapper:hover img {
        transform: none;
    }
    
    /* Badges – Mobile Optimized */
    .about-preview-image .image-badge {
        bottom: 14px;
        left: 14px;
        padding: 10px 16px;
        gap: 10px;
        border-radius: var(--radius-sm);
        animation: none;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(10px);
    }
    
    .about-preview-image .image-badge i {
        font-size: 18px;
        width: 34px;
        height: 34px;
    }
    
    .about-preview-image .image-badge .badge-text strong {
        font-size: 12px;
    }
    
    .about-preview-image .image-badge .badge-text small {
        font-size: 10px;
    }
    
    .about-preview-image .image-badge-top {
        top: 14px;
        right: 14px;
        font-size: 9px;
        padding: 4px 12px;
        animation: none;
        background: rgba(34, 197, 94, 0.92);
    }
    
    .about-preview-image .image-badge-top i {
        font-size: 11px;
    }
    
    /* Hide decorative elements on mobile */
    .about-preview-image .image-frame,
    .about-preview-image .corner-accent {
        display: none !important;
    }
}

/* ============================================ */
/* EXTRA SMALL – 400px and below               */
/* ============================================ */

@media (max-width: 399.98px) {
    .about-preview-section {
        padding: 40px 0 30px;
    }
    
    .about-preview-content h2 {
        font-size: 20px;
    }
    
    .about-preview-content p {
        font-size: 13px;
    }
    
    .about-preview-content .btn-about {
        font-size: 13px;
        padding: 10px 20px;
        max-width: 100%;
    }
    
    .about-preview-image img {
        height: 200px;
    }
    
    .about-preview-image .image-wrapper {
        max-width: 95%;
    }
    
    .about-preview-image .image-badge {
        bottom: 10px;
        left: 10px;
        padding: 8px 12px;
        gap: 8px;
    }
    
    .about-preview-image .image-badge i {
        font-size: 14px;
        width: 28px;
        height: 28px;
    }
    
    .about-preview-image .image-badge .badge-text strong {
        font-size: 10px;
    }
    
    .about-preview-image .image-badge .badge-text small {
        font-size: 9px;
    }
    
    .about-preview-image .image-badge-top {
        top: 10px;
        right: 10px;
        font-size: 8px;
        padding: 3px 10px;
    }
}

/* ============================================ */
/* REDUCED MOTION PREFERENCE                   */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    .about-preview-image .image-badge {
        animation: none !important;
    }
    
    .about-preview-image .image-badge-top {
        animation: none !important;
    }
    
    .about-preview-content .btn-about {
        transition: none !important;
    }
    
    .about-preview-content .btn-about:hover {
        transform: none !important;
    }
    
    .about-preview-image .image-wrapper {
        transition: none !important;
    }
    
    .about-preview-image .image-wrapper:hover {
        transform: none !important;
    }
    
    .about-preview-image .image-wrapper:hover img {
        transform: none !important;
    }
}

/* ============================================ */
/* DARK MODE SUPPORT                           */
/* ============================================ */

@media (prefers-color-scheme: dark) {
    .about-preview-section {
        background: var(--color-navy-dark);
    }
    
    .about-preview-content h2 {
        color: var(--color-white);
    }
    
    .about-preview-content p {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .about-preview-image .image-badge {
        background: rgba(8, 38, 82, 0.9);
        border-color: rgba(255, 255, 255, 0.05);
    }
    
    .about-preview-image .image-badge .badge-text strong {
        color: var(--color-white);
    }
    
    .about-preview-image .image-badge .badge-text small {
        color: rgba(255, 255, 255, 0.5);
    }
    
    .about-preview-image .image-badge i {
        background: rgba(228, 161, 27, 0.15);
    }
}
/* ============================================ */
/* HOW IT WORKS SECTION – Premium 3 Steps       */
/* ============================================ */

.how-it-works-section {
    padding: 100px 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* ============================================ */
/* DECORATIVE BACKGROUND                        */
/* ============================================ */

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(228, 161, 27, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.how-it-works-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(11, 52, 114, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ============================================ */
/* SECTION HEADER                               */
/* ============================================ */

.how-it-works-section .section-header {
    margin-bottom: 60px;
    position: relative;
}

.how-it-works-section .section-header h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 42px;
    color: var(--color-navy);
    letter-spacing: -1px;
    margin-bottom: 0;
}

.how-it-works-section .section-header h2 .text-gold {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.how-it-works-section .section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
    border-radius: var(--radius-full);
    margin: 16px auto 0;
}

/* ============================================ */
/* STEP CARDS – Desktop Row                     */
/* ============================================ */

.how-it-works-section .row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
}

/* For desktop: 4-4-4 columns with connectors */
@media (min-width: 992px) {
    .how-it-works-section .row {
        flex-wrap: nowrap;
    }
    
    .how-it-works-section .col-md-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
    
    .how-it-works-section .col-md-1 {
        flex: 0 0 0;
        max-width: 0;
        padding: 0;
    }
    
    /* Hide connector columns on desktop */
    .step-connector {
        display: none !important;
    }
}

/* ============================================ */
/* STEP CARDS – Enhanced Design                 */
/* ============================================ */

.step-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(220, 227, 234, 0.15);
    border-radius: var(--radius-lg);
    padding: 45px 35px 40px;
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
    height: 100%;
    box-shadow: 0 4px 20px rgba(11, 52, 114, 0.04);
    margin: 0 8px;
}

.step-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(11, 52, 114, 0.12);
    border-color: rgba(228, 161, 27, 0.2);
    background: rgba(255, 255, 255, 0.98);
}

/* Gold Gradient Border on Hover */
.step-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, transparent, var(--color-gold), transparent);
    opacity: 0;
    transition: var(--transition-medium);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.step-card:hover::before {
    opacity: 1;
}

/* ============================================ */
/* STEP NUMBER – Premium Gold Circle            */
/* ============================================ */

.step-number {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    box-shadow: 0 8px 40px rgba(228, 161, 27, 0.35);
    transition: var(--transition-medium);
    position: relative;
    z-index: 1;
    line-height: 1;
}

/* Number Inner Ring */
.step-number::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    pointer-events: none;
    transition: var(--transition-medium);
}

.step-card:hover .step-number {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 12px 60px rgba(228, 161, 27, 0.5);
}

.step-card:hover .step-number::after {
    border-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.05);
}

/* Glow Ring Behind Number */
.step-number::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(228, 161, 27, 0.15), transparent 70%);
    opacity: 0;
    transition: var(--transition-medium);
    z-index: -1;
}

.step-card:hover .step-number::before {
    opacity: 1;
    transform: scale(1.2);
}

/* ============================================ */
/* STEP CARD TEXT                               */
/* ============================================ */

.step-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    color: var(--color-navy);
    margin-bottom: 14px;
    transition: var(--transition-fast);
    position: relative;
}

.step-card:hover h4 {
    color: var(--color-gold-hover);
}

/* Gold Underline on Title */
.step-card h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    border-radius: var(--radius-full);
    margin: 10px auto 0;
    transition: var(--transition-medium);
}

.step-card:hover h4::after {
    width: 50px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
}

.step-card p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-body);
    margin: 0;
}

/* ============================================ */
/* CONNECTING LINES – Between Steps             */
/* ============================================ */

/* Desktop: Show connecting lines between cards */
@media (min-width: 992px) {
    .step-connector-desktop {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 60px;
        max-width: 60px;
        padding: 0 8px;
        position: relative;
    }
    
    .step-connector-desktop .connector-line {
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--color-gold), rgba(228, 161, 27, 0.15));
        border-radius: var(--radius-full);
        position: relative;
        transition: var(--transition-medium);
    }
    
    /* Dot at ends */
    .step-connector-desktop .connector-line::before,
    .step-connector-desktop .connector-line::after {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 10px;
        height: 10px;
        background: var(--color-gold);
        border-radius: 50%;
        opacity: 0.3;
        transition: var(--transition-medium);
    }
    
    .step-connector-desktop .connector-line::before {
        left: -5px;
    }
    
    .step-connector-desktop .connector-line::after {
        right: -5px;
    }
    
    /* Progress bar inside connector */
    .step-connector-desktop .connector-line .progress-fill {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 0%;
        background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
        border-radius: var(--radius-full);
        transition: var(--transition-slow);
    }
    
    /* Animate on card hover */
    .step-card:hover ~ .step-connector-desktop .connector-line .progress-fill,
    .step-connector-desktop:hover .connector-line .progress-fill {
        width: 100%;
    }
    
    /* Pulse animation on connector */
    .step-connector-desktop .connector-line {
        animation: connectorPulse 3s ease-in-out infinite;
    }
    
    .step-connector-desktop:nth-child(2) .connector-line {
        animation-delay: 0.5s;
    }
}

@keyframes connectorPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ============================================ */
/* CTA BUTTON – Premium WhatsApp                */
/* ============================================ */

.how-it-works-section .btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #1DA851);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    padding: 18px 48px;
    border-radius: var(--radius-full);
    border: none;
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.35);
    transition: var(--transition-medium);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* Shine Effect */
.how-it-works-section .btn-whatsapp::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: var(--transition-slow);
}

.how-it-works-section .btn-whatsapp:hover::before {
    transform: rotate(45deg) translateX(100%);
}

.how-it-works-section .btn-whatsapp:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 60px rgba(37, 211, 102, 0.5);
    color: var(--color-white);
}

.how-it-works-section .btn-whatsapp i {
    font-size: 24px;
}

/* ============================================ */
/* RESPONSIVE – Tablet                         */
/* ============================================ */

@media (max-width: 991.98px) {
    .how-it-works-section {
        padding: 70px 0 50px;
    }
    
    .how-it-works-section .section-header h2 {
        font-size: 34px;
    }
    
    .step-card {
        padding: 35px 25px 30px;
        margin: 0 4px;
    }
    
    .step-number {
        width: 75px;
        height: 75px;
        font-size: 30px;
        margin-bottom: 18px;
    }
    
    .step-card h4 {
        font-size: 19px;
    }
    
    .step-card p {
        font-size: 14px;
    }
    
    .step-connector-desktop {
        display: none !important;
    }
}

/* ============================================ */
/* RESPONSIVE – Mobile                         */
/* ============================================ */

@media (max-width: 575.98px) {
    .how-it-works-section {
        padding: 50px 0 30px;
    }
    
    .how-it-works-section .section-header {
        margin-bottom: 35px;
    }
    
    .how-it-works-section .section-header h2 {
        font-size: 26px;
    }
    
    .how-it-works-section .section-header h2::after {
        width: 40px;
        height: 3px;
        margin-top: 12px;
    }
    
    .step-card {
        padding: 28px 20px 24px;
        border-radius: var(--radius-md);
        margin: 0;
        background: rgba(255, 255, 255, 0.95);
    }
    
    .step-card:hover {
        transform: translateY(-6px);
    }
    
    .step-number {
        width: 65px;
        height: 65px;
        font-size: 26px;
        margin-bottom: 16px;
        box-shadow: 0 6px 25px rgba(228, 161, 27, 0.3);
    }
    
    .step-card:hover .step-number {
        transform: scale(1.08);
    }
    
    .step-card h4 {
        font-size: 17px;
        margin-bottom: 10px;
    }
    
    .step-card h4::after {
        width: 25px;
        height: 2px;
        margin-top: 8px;
    }
    
    .step-card:hover h4::after {
        width: 35px;
    }
    
    .step-card p {
        font-size: 13px;
        line-height: 1.7;
    }
    
    /* CTA Button */
    .how-it-works-section .btn-whatsapp {
        font-size: 15px;
        padding: 14px 32px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
        gap: 12px;
    }
    
    .how-it-works-section .btn-whatsapp i {
        font-size: 20px;
    }
    
    .how-it-works-section .btn-whatsapp::before {
        display: none;
    }
}

/* ============================================ */
/* EXTRA SMALL – 400px and below               */
/* ============================================ */

@media (max-width: 399.98px) {
    .how-it-works-section .section-header h2 {
        font-size: 22px;
    }
    
    .step-number {
        width: 55px;
        height: 55px;
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .step-card h4 {
        font-size: 15px;
    }
    
    .step-card p {
        font-size: 12px;
    }
    
    .how-it-works-section .btn-whatsapp {
        font-size: 14px;
        padding: 12px 24px;
        max-width: 100%;
    }
}

/* ============================================ */
/* REDUCED MOTION PREFERENCE                   */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    .step-card {
        transition: none !important;
    }
    
    .step-card:hover {
        transform: none !important;
    }
    
    .step-card::before {
        transition: none !important;
    }
    
    .step-number::before {
        transition: none !important;
    }
    
    .step-connector-desktop .connector-line .progress-fill {
        transition: none !important;
    }
    
    .step-connector-desktop .connector-line {
        animation: none !important;
    }
    
    .how-it-works-section .btn-whatsapp {
        transition: none !important;
    }
    
    .how-it-works-section .btn-whatsapp::before {
        display: none !important;
    }
    
    .how-it-works-section .btn-whatsapp:hover {
        transform: none !important;
    }
}

/* ============================================ */
/* DARK MODE SUPPORT                           */
/* ============================================ */

@media (prefers-color-scheme: dark) {
    .how-it-works-section {
        background: var(--color-navy-dark);
    }
    
    .how-it-works-section .section-header h2 {
        color: var(--color-white);
    }
    
    .step-card {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.06);
    }
    
    .step-card:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(228, 161, 27, 0.15);
    }
    
    .step-card h4 {
        color: var(--color-white);
    }
    
    .step-card h4::after {
        background: linear-gradient(90deg, var(--color-gold), transparent);
    }
    
    .step-card:hover h4::after {
        background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
    }
    
    .step-card p {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .step-card::before {
        background: linear-gradient(135deg, transparent, var(--color-gold), transparent);
    }
}

/* ============================================ */
/* ACCESSIBILITY – Focus States                */
/* ============================================ */

.step-card:focus-within {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

.how-it-works-section .btn-whatsapp:focus-visible {
    outline: 3px solid var(--color-gold);
    outline-offset: 3px;
}

/* ============================================ */
/* WHY CHOOSE US SECTION – Premium Dark Theme   */
/* ============================================ */

/* ============================================ */
/* WHY CHOOSE US SECTION – Premium Dark Theme   */
/* ============================================ */

.why-choose-section {
    padding: 100px 0;
    background: var(--color-navy-dark);
    position: relative;
    overflow: hidden;
}

/* ============================================ */
/* DECORATIVE BACKGROUND ELEMENTS – LIGHT COLOR */
/* ============================================ */

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ============================================ */
/* RESPONSIVE – Tablet                         */
/* ============================================ */

@media (max-width: 991.98px) {
    .why-choose-section {
        padding: 70px 0;
    }
    
    .why-choose-section::before {
        width: 350px;
        height: 350px;
        top: -150px;
        right: -80px;
    }
    
    .why-choose-section::after {
        width: 300px;
        height: 300px;
        bottom: -100px;
        left: -100px;
    }
}

/* ============================================ */
/* RESPONSIVE – Mobile                         */
/* ============================================ */

@media (max-width: 575.98px) {
    .why-choose-section {
        padding: 50px 0 30px;
    }
    
    .why-choose-section::before {
        width: 200px;
        height: 200px;
        top: -80px;
        right: -50px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    }
    
    .why-choose-section::after {
        width: 150px;
        height: 150px;
        bottom: -60px;
        left: -50px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    }
}

/* ============================================ */
/* EXTRA SMALL – 400px and below               */
/* ============================================ */

@media (max-width: 399.98px) {
    .why-choose-section {
        padding: 40px 0 20px;
    }
    
    .why-choose-section::before {
        width: 150px;
        height: 150px;
        top: -60px;
        right: -40px;
    }
    
    .why-choose-section::after {
        width: 120px;
        height: 120px;
        bottom: -40px;
        left: -40px;
    }
}

/* ============================================ */
/* REDUCED MOTION PREFERENCE                   */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    .why-choose-section::before,
    .why-choose-section::after {
        display: none;
    }
}

/* ============================================ */
/* SECTION HEADER                               */
/* ============================================ */

.why-choose-section .section-header {
    margin-bottom: 50px;
    position: relative;
}

.why-choose-section .section-header h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 38px;
    color: var(--color-white);
    letter-spacing: -1px;
    margin-bottom: 0;
}

.why-choose-section .section-header h2 .text-gold {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-choose-section .section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
    border-radius: var(--radius-full);
    margin: 16px auto 0;
}

/* ============================================ */
/* WHY CARDS – Glassmorphism on Dark            */
/* ============================================ */

.why-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 35px 28px 30px;
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

/* Card Hover Effect */
.why-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(228, 161, 27, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Gold Gradient Border on Hover */
.why-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, transparent, var(--color-gold), transparent);
    opacity: 0;
    transition: var(--transition-medium);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.why-card:hover::before {
    opacity: 1;
}

/* ============================================ */
/* WHY ICON – Gold with Glow                    */
/* ============================================ */

.why-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: rgba(228, 161, 27, 0.12);
    border: 2px solid rgba(228, 161, 27, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--color-gold);
    margin-bottom: 18px;
    transition: var(--transition-medium);
    position: relative;
    flex-shrink: 0;
}

/* Icon Glow Effect */
.why-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(228, 161, 27, 0.15), transparent 70%);
    opacity: 0;
    transition: var(--transition-medium);
    z-index: -1;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(228, 161, 27, 0.2);
    border-color: var(--color-gold);
    box-shadow: 0 8px 40px rgba(228, 161, 27, 0.2);
}

.why-card:hover .why-icon::after {
    opacity: 1;
    transform: scale(1.3);
}

/* Icon Pulse Animation */
.why-card:nth-child(1) .why-icon { animation: whyIconPulse 3.5s ease-in-out infinite; }
.why-card:nth-child(2) .why-icon { animation: whyIconPulse 3.8s ease-in-out infinite 0.3s; }
.why-card:nth-child(3) .why-icon { animation: whyIconPulse 4.1s ease-in-out infinite 0.6s; }
.why-card:nth-child(4) .why-icon { animation: whyIconPulse 3.3s ease-in-out infinite 0.9s; }
.why-card:nth-child(5) .why-icon { animation: whyIconPulse 3.6s ease-in-out infinite 1.2s; }
.why-card:nth-child(6) .why-icon { animation: whyIconPulse 4.2s ease-in-out infinite 1.5s; }
.why-card:nth-child(7) .why-icon { animation: whyIconPulse 3.9s ease-in-out infinite 1.8s; }
.why-card:nth-child(8) .why-icon { animation: whyIconPulse 3.4s ease-in-out infinite 2.1s; }

@keyframes whyIconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ============================================ */
/* WHY CARD TEXT                                */
/* ============================================ */

.why-card h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 12px;
    transition: var(--transition-fast);
    position: relative;
}

/* Gold Underline on Title */
.why-card h5::after {
    content: '';
    display: block;
    width: 25px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    border-radius: var(--radius-full);
    margin: 10px auto 0;
    transition: var(--transition-medium);
}

.why-card:hover h5::after {
    width: 45px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
}

.why-card p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    flex: 1;
}

/* ============================================ */
/* CARD NUMBER BADGE                            */
/* ============================================ */

.why-card .card-number {
    position: absolute;
    top: -5px;
    right: 10px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 64px;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: var(--transition-medium);
}

.why-card:hover .card-number {
    color: rgba(228, 161, 27, 0.05);
    transform: scale(1.1);
}

/* ============================================ */
/* GOLD DOT PATTERN (Decorative)                */
/* ============================================ */

.why-card .gold-dots {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 4px;
    opacity: 0.05;
    pointer-events: none;
}

.why-card .gold-dots span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-gold);
}

.why-card:hover .gold-dots {
    opacity: 0.1;
}

/* ============================================ */
/* RESPONSIVE – Tablet                         */
/* ============================================ */

@media (max-width: 991.98px) {
    .why-choose-section {
        padding: 70px 0;
    }
    
    .why-choose-section .section-header h2 {
        font-size: 32px;
    }
    
    .why-card {
        padding: 30px 22px 25px;
        border-radius: var(--radius-md);
    }
    
    .why-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }
    
    .why-card h5 {
        font-size: 17px;
    }
    
    .why-card p {
        font-size: 13px;
    }
    
    .why-card .card-number {
        font-size: 48px;
    }
    
    .why-card:nth-child(1) .why-icon,
    .why-card:nth-child(2) .why-icon,
    .why-card:nth-child(3) .why-icon,
    .why-card:nth-child(4) .why-icon,
    .why-card:nth-child(5) .why-icon,
    .why-card:nth-child(6) .why-icon,
    .why-card:nth-child(7) .why-icon,
    .why-card:nth-child(8) .why-icon {
        animation: none;
    }
}

/* ============================================ */
/* RESPONSIVE – Mobile                         */
/* ============================================ */

@media (max-width: 575.98px) {
    .why-choose-section {
        padding: 50px 0 30px;
    }
    
    .why-choose-section .section-header {
        margin-bottom: 35px;
    }
    
    .why-choose-section .section-header h2 {
        font-size: 26px;
    }
    
    .why-choose-section .section-header h2::after {
        width: 40px;
        height: 3px;
        margin-top: 12px;
    }
    
    .why-card {
        padding: 25px 18px 22px;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.05);
    }
    
    .why-card:hover {
        transform: translateY(-5px);
    }
    
    .why-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
        margin-bottom: 14px;
        border-width: 1.5px;
    }
    
    .why-card:hover .why-icon {
        transform: scale(1.05);
    }
    
    .why-card h5 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .why-card h5::after {
        width: 20px;
        height: 2px;
        margin-top: 8px;
    }
    
    .why-card:hover h5::after {
        width: 30px;
    }
    
    .why-card p {
        font-size: 13px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.65);
    }
    
    .why-card .card-number {
        font-size: 36px;
        top: -2px;
        right: 8px;
    }
    
    .why-card .gold-dots {
        display: none;
    }
    
    .row.g-4 {
        --bs-gutter-y: 1rem;
        --bs-gutter-x: 1rem;
    }
}

/* ============================================ */
/* EXTRA SMALL – 400px and below               */
/* ============================================ */

@media (max-width: 399.98px) {
    .why-choose-section {
        padding: 40px 0 20px;
    }
    
    .why-choose-section .section-header h2 {
        font-size: 22px;
    }
    
    .why-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .why-card h5 {
        font-size: 14px;
    }
    
    .why-card p {
        font-size: 12px;
    }
    
    .why-card .card-number {
        font-size: 28px;
    }
}

/* ============================================ */
/* REDUCED MOTION PREFERENCE                   */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    .why-card {
        transition: none !important;
    }
    
    .why-card:hover {
        transform: none !important;
    }
    
    .why-card::before {
        transition: none !important;
    }
    
    .why-icon::after {
        transition: none !important;
    }
    
    .why-card:nth-child(1) .why-icon,
    .why-card:nth-child(2) .why-icon,
    .why-card:nth-child(3) .why-icon,
    .why-card:nth-child(4) .why-icon,
    .why-card:nth-child(5) .why-icon,
    .why-card:nth-child(6) .why-icon,
    .why-card:nth-child(7) .why-icon,
    .why-card:nth-child(8) .why-icon {
        animation: none !important;
    }
}

/* ============================================ */
/* ACCESSIBILITY – Focus States                */
/* ============================================ */

.why-card:focus-within {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

/* ============================================ */
/* GRID ENHANCEMENTS                           */
/* ============================================ */

.why-choose-section .row.g-4 {
    --bs-gutter-y: 1.5rem;
    --bs-gutter-x: 1.5rem;
}

/* ============================================ */
/* SCROLL ANIMATION – Fade In                  */
/* ============================================ */

.why-card {
    opacity: 0;
    transform: translateY(30px);
    animation: whyCardAppear 0.6s ease forwards;
}

.why-card:nth-child(1) { animation-delay: 0.05s; }
.why-card:nth-child(2) { animation-delay: 0.1s; }
.why-card:nth-child(3) { animation-delay: 0.15s; }
.why-card:nth-child(4) { animation-delay: 0.2s; }
.why-card:nth-child(5) { animation-delay: 0.25s; }
.why-card:nth-child(6) { animation-delay: 0.3s; }
.why-card:nth-child(7) { animation-delay: 0.35s; }
.why-card:nth-child(8) { animation-delay: 0.4s; }

@keyframes whyCardAppear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .why-card {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* ============================================ */
/* HOVER GLOW EFFECT ON CARD                   */
/* ============================================ */

.why-card .hover-glow {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    pointer-events: none;
    overflow: hidden;
}

.why-card .hover-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(228, 161, 27, 0.03), transparent 60%);
    opacity: 0;
    transition: var(--transition-slow);
    transform: scale(0.5);
}

.why-card:hover .hover-glow::before {
    opacity: 1;
    transform: scale(1);
}
/* ============================================ */
/* FINAL CTA SECTION – Premium Gold Gradient    */
/* ============================================ */

.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-hover) 50%, #B87A0E 100%);
    position: relative;
    overflow: hidden;
}

/* ============================================ */
/* DECORATIVE BACKGROUND ELEMENTS               */
/* ============================================ */

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(11, 52, 114, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.final-cta-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ============================================ */
/* ANIMATED GOLD PARTICLES (Decorative)        */
/* ============================================ */

.final-cta-section .particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.final-cta-section .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

.final-cta-section .particle:nth-child(1) { top: 10%; left: 5%; animation-duration: 8s; animation-delay: 0s; width: 8px; height: 8px; }
.final-cta-section .particle:nth-child(2) { top: 20%; right: 8%; animation-duration: 10s; animation-delay: 1s; width: 4px; height: 4px; }
.final-cta-section .particle:nth-child(3) { bottom: 30%; left: 12%; animation-duration: 9s; animation-delay: 2s; width: 6px; height: 6px; }
.final-cta-section .particle:nth-child(4) { top: 60%; right: 5%; animation-duration: 11s; animation-delay: 0.5s; width: 5px; height: 5px; }
.final-cta-section .particle:nth-child(5) { bottom: 15%; right: 20%; animation-duration: 7s; animation-delay: 1.5s; width: 7px; height: 7px; }
.final-cta-section .particle:nth-child(6) { top: 40%; left: 3%; animation-duration: 12s; animation-delay: 0.8s; width: 3px; height: 3px; }

@keyframes particleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* ============================================ */
/* SECTION HEADER                               */
/* ============================================ */

.final-cta-section .section-content {
    position: relative;
    z-index: 2;
}

/* Badge */
.final-cta-section .cta-badge {
    display: inline-block;
    background: rgba(11, 52, 114, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(11, 52, 114, 0.1);
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Heading */
.final-cta-section h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 42px;
    color: var(--color-navy);
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.final-cta-section h2 .text-white-highlight {
    color: var(--color-white);
}

/* Animated Underline on Heading */
.final-cta-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--color-navy);
    border-radius: var(--radius-full);
    margin: 16px auto 0;
    animation: ctaUnderline 2s ease-in-out infinite;
}

@keyframes ctaUnderline {
    0%, 100% {
        width: 80px;
        opacity: 0.6;
    }
    50% {
        width: 120px;
        opacity: 1;
    }
}

/* Paragraph */
.final-cta-section p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
    color: rgba(11, 52, 114, 0.85);
    max-width: 650px;
    margin: 0 auto 30px;
    font-weight: 400;
}

/* ============================================ */
/* CTA TAGLINE – Animated                      */
/* ============================================ */

.final-cta-section .cta-tagline {
    display: inline-block;
    background: rgba(11, 52, 114, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(11, 52, 114, 0.06);
    padding: 10px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--color-navy);
    margin-bottom: 30px;
    letter-spacing: 0.3px;
}

.final-cta-section .cta-tagline i {
    color: var(--color-white);
    margin-right: 8px;
    animation: taglinePulse 1.5s ease-in-out infinite;
}

@keyframes taglinePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* ============================================ */
/* CTA BUTTONS                                  */
/* ============================================ */

.final-cta-section .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* Primary Button – Navy */
.final-cta-section .btn-navy {
    background: var(--color-navy);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    padding: 16px 40px;
    border-radius: var(--radius-full);
    border: none;
    box-shadow: 0 8px 30px rgba(11, 52, 114, 0.3);
    transition: var(--transition-medium);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* Shine Effect on Navy Button */
.final-cta-section .btn-navy::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: var(--transition-slow);
}

.final-cta-section .btn-navy:hover::before {
    transform: rotate(45deg) translateX(100%);
}

.final-cta-section .btn-navy:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 50px rgba(11, 52, 114, 0.45);
    color: var(--color-white);
}

.final-cta-section .btn-navy i {
    font-size: 20px;
}

/* Secondary Button – White/Glassmorphism */
.final-cta-section .btn-white {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    padding: 16px 40px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-medium);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* Shine Effect on White Button */
.final-cta-section .btn-white::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(11, 52, 114, 0.05), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: var(--transition-slow);
}

.final-cta-section .btn-white:hover::before {
    transform: rotate(45deg) translateX(100%);
}

.final-cta-section .btn-white:hover {
    transform: translateY(-4px) scale(1.02);
    background: var(--color-white);
    border-color: var(--color-white);
    box-shadow: 0 12px 50px rgba(255, 255, 255, 0.25);
    color: var(--color-navy);
}

.final-cta-section .btn-white i {
    font-size: 20px;
}

/* ============================================ */
/* RESPONSIVE – Tablet                         */
/* ============================================ */

@media (max-width: 991.98px) {
    .final-cta-section {
        padding: 70px 0;
    }
    
    .final-cta-section h2 {
        font-size: 34px;
    }
    
    .final-cta-section p {
        font-size: 17px;
    }
    
    .final-cta-section .cta-tagline {
        font-size: 15px;
        padding: 8px 22px;
    }
    
    .final-cta-section .btn-navy,
    .final-cta-section .btn-white {
        padding: 14px 32px;
        font-size: 15px;
    }
    
    .final-cta-section .particles {
        display: none;
    }
}

/* ============================================ */
/* RESPONSIVE – Mobile                         */
/* ============================================ */

@media (max-width: 575.98px) {
    .final-cta-section {
        padding: 50px 0 40px;
    }
    
    .final-cta-section .cta-badge {
        font-size: 10px;
        padding: 4px 14px;
        margin-bottom: 14px;
    }
    
    .final-cta-section h2 {
        font-size: 26px;
        line-height: 1.2;
    }
    
    .final-cta-section h2::after {
        width: 50px;
        height: 3px;
        margin-top: 12px;
    }
    
    @keyframes ctaUnderline {
        0%, 100% {
            width: 50px;
        }
        50% {
            width: 70px;
        }
    }
    
    .final-cta-section p {
        font-size: 15px;
        line-height: 1.7;
        padding: 0 10px;
        margin-bottom: 24px;
    }
    
    .final-cta-section .cta-tagline {
        font-size: 13px;
        padding: 6px 16px;
        margin-bottom: 24px;
    }
    
    .final-cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 0 15px;
    }
    
    .final-cta-section .btn-navy,
    .final-cta-section .btn-white {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .final-cta-section .btn-navy i,
    .final-cta-section .btn-white i {
        font-size: 18px;
    }
    
    .final-cta-section .particles {
        display: none;
    }
}

/* ============================================ */
/* EXTRA SMALL – 400px and below               */
/* ============================================ */

@media (max-width: 399.98px) {
    .final-cta-section {
        padding: 40px 0 30px;
    }
    
    .final-cta-section h2 {
        font-size: 22px;
    }
    
    .final-cta-section p {
        font-size: 14px;
    }
    
    .final-cta-section .btn-navy,
    .final-cta-section .btn-white {
        font-size: 13px;
        padding: 12px 20px;
        max-width: 100%;
    }
}

/* ============================================ */
/* REDUCED MOTION PREFERENCE                   */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    .final-cta-section .particle {
        animation: none !important;
        display: none;
    }
    
    .final-cta-section h2::after {
        animation: none !important;
        width: 80px;
    }
    
    .final-cta-section .cta-tagline i {
        animation: none !important;
    }
    
    .final-cta-section .btn-navy::before,
    .final-cta-section .btn-white::before {
        display: none !important;
    }
    
    .final-cta-section .btn-navy:hover,
    .final-cta-section .btn-white:hover {
        transform: none !important;
    }
}

/* ============================================ */
/* ACCESSIBILITY – Focus States                */
/* ============================================ */

.final-cta-section .btn-navy:focus-visible,
.final-cta-section .btn-white:focus-visible {
    outline: 3px solid var(--color-white);
    outline-offset: 3px;
}

/* ============================================ */
/* DARK MODE – Not needed (gold gradient)      */
/* ============================================ */

/* ============================================ */
/* SCROLL ANIMATION – Fade In                  */
/* ============================================ */

.final-cta-section .section-content {
    opacity: 0;
    transform: translateY(30px);
    animation: ctaAppear 0.8s ease forwards;
}

@keyframes ctaAppear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .final-cta-section .section-content {
        opacity: 1;
        transform: none;
        animation: none;
    }
}
/* ============================================ */
/* SECTION CONTAINER ROUNDED CORNERS            */
/* ============================================ */

/* ============================================ */
/* 1. WHY CHOOSE US SECTION – Rounded Container */
/* ============================================ */

.why-choose-section .container {
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.03);
    padding: 60px 50px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ============================================ */
/* 2. FINAL CTA SECTION – Rounded Container     */
/* ============================================ */

.final-cta-section .container {
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.08);
    padding: 60px 50px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* ============================================ */
/* RESPONSIVE – Tablet                         */
/* ============================================ */

@media (max-width: 991.98px) {
    .why-choose-section .container,
    .final-cta-section .container {
        border-radius: 24px;
        padding: 40px 30px;
    }
}

/* ============================================ */
/* RESPONSIVE – Mobile                         */
/* ============================================ */

@media (max-width: 575.98px) {
    .why-choose-section .container,
    .final-cta-section .container {
        border-radius: 18px;
        padding: 25px 15px;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
}

/* ============================================ */
/* EXTRA SMALL – 400px and below               */
/* ============================================ */

@media (max-width: 399.98px) {
    .why-choose-section .container,
    .final-cta-section .container {
        border-radius: 14px;
        padding: 20px 12px;
    }
}

/* ============================================ */
/* REDUCED MOTION PREFERENCE                   */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    .why-choose-section .container,
    .final-cta-section .container {
        transition: none !important;
    }
}

/* ============================================ */
/* ACCESSIBILITY – High Contrast Mode          */
/* ============================================ */

@media (prefers-contrast: high) {
    .why-choose-section .container {
        border: 2px solid rgba(255, 255, 255, 0.15);
    }
    
    .final-cta-section .container {
        border: 2px solid rgba(255, 255, 255, 0.2);
    }
}
/* ============================================ */
/* SITE-WIDE BACKGROUND COLOR                   */
/* ============================================ */

body {
    background: #FFFFFF;
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    color: var(--color-text-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================ */
/* DARK MODE – If user prefers dark             */
/* ============================================ */

@media (prefers-color-scheme: dark) {
    body {
        background: var(--color-navy-dark);
        color: rgba(255, 255, 255, 0.9);
    }
}

/* ============================================ */
/* TESTIMONIALS SECTION – Premium Design        */
/* ============================================ */

.testimonials-section {
    padding: 100px 0;
    background: var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

/* Decorative Background */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(228, 161, 27, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(11, 52, 114, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ============================================ */
/* SECTION HEADER                               */
/* ============================================ */

.testimonials-section .section-header {
    margin-bottom: 50px;
    position: relative;
}

.testimonials-section .section-header h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 38px;
    color: var(--color-navy);
    letter-spacing: -1px;
    margin-bottom: 0;
}

.testimonials-section .section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
    border-radius: var(--radius-full);
    margin: 16px auto 0;
}

/* ============================================ */
/* TESTIMONIAL CARDS – Glassmorphism            */
/* ============================================ */

.testimonial-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: 35px 28px 30px;
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(11, 52, 114, 0.04);
    overflow: hidden;
}

/* Decorative Quote Mark */
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 80px;
    color: rgba(228, 161, 27, 0.06);
    line-height: 1;
    pointer-events: none;
    transition: var(--transition-medium);
}

.testimonial-card:hover::before {
    color: rgba(228, 161, 27, 0.12);
    transform: scale(1.1);
}

/* Gold Border on Hover */
.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    transform: scaleX(0);
    transition: var(--transition-medium);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.testimonial-card:hover::after {
    transform: scaleX(1);
}

/* Card Hover Effect */
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(11, 52, 114, 0.08);
    border-color: rgba(228, 161, 27, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

/* ============================================ */
/* TESTIMONIAL STARS                            */
/* ============================================ */

.testimonial-stars {
    font-size: 18px;
    color: var(--color-gold);
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: inline-block;
    position: relative;
}

/* Stars Glow Effect */
.testimonial-stars::after {
    content: '⭐⭐⭐⭐⭐';
    position: absolute;
    inset: 0;
    color: var(--color-gold);
    filter: blur(8px);
    opacity: 0.3;
    pointer-events: none;
    animation: starsGlow 2s ease-in-out infinite;
}

@keyframes starsGlow {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

/* ============================================ */
/* TESTIMONIAL TEXT                             */
/* ============================================ */

.testimonial-card p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-body);
    margin: 0 0 18px;
    flex: 1;
    position: relative;
    font-style: italic;
}

/* Small Quote Icon Before Text */
.testimonial-card p::before {
    content: '\201C';
    font-size: 28px;
    color: var(--color-gold);
    opacity: 0.3;
    margin-right: 4px;
    font-style: normal;
}

.testimonial-card p::after {
    content: '\201D';
    font-size: 28px;
    color: var(--color-gold);
    opacity: 0.3;
    margin-left: 4px;
    font-style: normal;
}

/* ============================================ */
/* TESTIMONIAL AUTHOR                           */
/* ============================================ */

.testimonial-author {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--color-navy);
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(220, 227, 234, 0.3);
    width: 100%;
    position: relative;
}

/* Gold Dot Before Author */
.testimonial-author::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
    animation: authorDot 2s ease-in-out infinite;
}

@keyframes authorDot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

/* ============================================ */
/* CARD NUMBER BADGE (Decorative)               */
/* ============================================ */

.testimonial-card .card-number {
    position: absolute;
    bottom: -5px;
    left: 15px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 48px;
    color: rgba(11, 52, 114, 0.02);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: var(--transition-medium);
}

.testimonial-card:hover .card-number {
    color: rgba(228, 161, 27, 0.04);
    transform: scale(1.1);
}

/* ============================================ */
/* RESPONSIVE – Tablet                         */
/* ============================================ */

@media (max-width: 991.98px) {
    .testimonials-section {
        padding: 70px 0;
    }
    
    .testimonials-section .section-header h2 {
        font-size: 32px;
    }
    
    .testimonial-card {
        padding: 30px 22px 25px;
        border-radius: var(--radius-md);
    }
    
    .testimonial-card p {
        font-size: 14px;
    }
    
    .testimonial-author {
        font-size: 14px;
    }
    
    .testimonial-card::before {
        font-size: 60px;
        top: 5px;
        right: 15px;
    }
}

/* ============================================ */
/* RESPONSIVE – Mobile                         */
/* ============================================ */

@media (max-width: 575.98px) {
    .testimonials-section {
        padding: 50px 0 30px;
    }
    
    .testimonials-section .section-header {
        margin-bottom: 30px;
    }
    
    .testimonials-section .section-header h2 {
        font-size: 26px;
    }
    
    .testimonials-section .section-header h2::after {
        width: 40px;
        height: 3px;
        margin-top: 12px;
    }
    
    .testimonial-card {
        padding: 25px 18px 20px;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.92);
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
    }
    
    .testimonial-stars {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .testimonial-stars::after {
        display: none;
    }
    
    .testimonial-card p {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 14px;
    }
    
    .testimonial-card p::before,
    .testimonial-card p::after {
        font-size: 20px;
    }
    
    .testimonial-author {
        font-size: 13px;
        padding-top: 12px;
    }
    
    .testimonial-card::before {
        font-size: 40px;
        top: 5px;
        right: 12px;
    }
    
    .testimonial-card .card-number {
        font-size: 32px;
    }
    
    /* Animated cards on mobile */
    .testimonial-card {
        animation: testimonialAppear 0.5s ease forwards;
        opacity: 0;
        transform: translateY(20px);
    }
    
    .testimonial-card:nth-child(1) { animation-delay: 0.05s; }
    .testimonial-card:nth-child(2) { animation-delay: 0.1s; }
    .testimonial-card:nth-child(3) { animation-delay: 0.15s; }
    .testimonial-card:nth-child(4) { animation-delay: 0.2s; }
    
    @keyframes testimonialAppear {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* ============================================ */
/* EXTRA SMALL – 400px and below               */
/* ============================================ */

@media (max-width: 399.98px) {
    .testimonials-section .section-header h2 {
        font-size: 22px;
    }
    
    .testimonial-card p {
        font-size: 12px;
    }
    
    .testimonial-author {
        font-size: 12px;
    }
    
    .testimonial-stars {
        font-size: 14px;
    }
}

/* ============================================ */
/* REDUCED MOTION PREFERENCE                   */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    .testimonial-card {
        transition: none !important;
    }
    
    .testimonial-card:hover {
        transform: none !important;
    }
    
    .testimonial-card::after {
        transition: none !important;
    }
    
    .testimonial-stars::after {
        animation: none !important;
    }
    
    .testimonial-author::before {
        animation: none !important;
    }
    
    .testimonial-card {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================================ */
/* DARK MODE SUPPORT                           */
/* ============================================ */

@media (prefers-color-scheme: dark) {
    .testimonials-section {
        background: var(--color-navy-dark);
    }
    
    .testimonials-section .section-header h2 {
        color: var(--color-white);
    }
    
    .testimonial-card {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.06);
    }
    
    .testimonial-card:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(228, 161, 27, 0.15);
    }
    
    .testimonial-card p {
        color: rgba(255, 255, 255, 0.8);
    }
    
    .testimonial-author {
        color: var(--color-white);
        border-top-color: rgba(255, 255, 255, 0.05);
    }
    
    .testimonial-card::before {
        color: rgba(228, 161, 27, 0.04);
    }
    
    .testimonial-card:hover::before {
        color: rgba(228, 161, 27, 0.08);
    }
    
    .testimonial-card .card-number {
        color: rgba(255, 255, 255, 0.02);
    }
    
    .testimonial-card:hover .card-number {
        color: rgba(228, 161, 27, 0.04);
    }
}
/* ============================================ */
/* SERVICES PREVIEW SECTION – Premium Design    */
/* ============================================ */

.services-preview-section {
    padding: 100px 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* Decorative Background */
.services-preview-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(228, 161, 27, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-preview-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(11, 52, 114, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ============================================ */
/* SECTION HEADER                               */
/* ============================================ */

.services-preview-section .section-header {
    margin-bottom: 50px;
    position: relative;
}

.services-preview-section .section-header h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 38px;
    color: var(--color-navy);
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.services-preview-section .section-header h2 .text-gold {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-preview-section .section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
    border-radius: var(--radius-full);
    margin: 16px auto 0;
}

.services-preview-section .section-header .section-subtitle {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--color-text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================ */
/* SERVICE CARDS – Image Background             */
/* ============================================ */

.service-preview-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(11, 52, 114, 0.06);
    transition: var(--transition-medium);
    background: var(--color-navy);
}

/* Card Background Image */
.service-preview-card .card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    z-index: 0;
}

/* Gradient Overlay – Bottom (Strong at bottom, fades up) */
.service-preview-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(11, 52, 114, 0.92) 0%,
        rgba(11, 52, 114, 0.80) 20%,
        rgba(11, 52, 114, 0.60) 40%,
        rgba(11, 52, 114, 0.30) 60%,
        rgba(11, 52, 114, 0.10) 80%,
        transparent 100%
    );
    z-index: 1;
    transition: var(--transition-medium);
}

/* Gold Accent Line at Bottom */
.service-preview-card .card-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.5;
    transition: var(--transition-medium);
}

/* Card Content */
.service-preview-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px 25px;
    z-index: 2;
    text-align: center;
}

/* Service Icon */
.service-preview-card .service-preview-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(228, 161, 27, 0.2);
    border: 1px solid rgba(228, 161, 27, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-gold);
    margin: 0 auto 12px;
    transition: var(--transition-medium);
    backdrop-filter: blur(5px);
}

/* Card Title */
.service-preview-card h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 6px;
    transition: var(--transition-fast);
}

/* Card Description */
.service-preview-card p {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Learn More Button */
.service-preview-card .btn-learn {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: var(--transition-medium);
    border: none;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-medium);
}

/* Hover Effects */
.service-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(11, 52, 114, 0.15);
}

.service-preview-card:hover .card-bg {
    transform: scale(1.08);
}

.service-preview-card:hover .card-overlay {
    background: linear-gradient(
        to top,
        rgba(11, 52, 114, 0.95) 0%,
        rgba(11, 52, 114, 0.85) 20%,
        rgba(11, 52, 114, 0.70) 40%,
        rgba(11, 52, 114, 0.40) 60%,
        rgba(11, 52, 114, 0.15) 80%,
        transparent 100%
    );
}

.service-preview-card:hover .card-overlay::after {
    opacity: 1;
    height: 4px;
}

.service-preview-card:hover .service-preview-icon {
    background: rgba(228, 161, 27, 0.3);
    border-color: var(--color-gold);
    transform: scale(1.1) rotate(-5deg);
}

.service-preview-card:hover .btn-learn {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 4px 20px rgba(228, 161, 27, 0.3);
}

.service-preview-card:hover .btn-learn:hover {
    background: var(--color-gold-hover);
    transform: translateY(-2px) scale(1.05);
}

/* ============================================ */
/* VIEW ALL SERVICES BUTTON                     */
/* ============================================ */

.services-preview-section .btn-primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    padding: 14px 40px;
    border-radius: var(--radius-full);
    border: none;
    box-shadow: 0 8px 30px rgba(228, 161, 27, 0.25);
    transition: var(--transition-medium);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.services-preview-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 45px rgba(228, 161, 27, 0.4);
    color: var(--color-navy);
}

.services-preview-section .btn-primary i {
    font-size: 18px;
    transition: var(--transition-fast);
}

.services-preview-section .btn-primary:hover i {
    transform: translateX(6px);
}

/* ============================================ */
/* RESPONSIVE – Tablet                         */
/* ============================================ */

@media (max-width: 991.98px) {
    .services-preview-section {
        padding: 70px 0;
    }
    
    .services-preview-section .section-header h2 {
        font-size: 32px;
    }
    
    .services-preview-section .section-header .section-subtitle {
        font-size: 16px;
    }
    
    .service-preview-card {
        height: 280px;
    }
    
    .service-preview-card .card-content {
        padding: 25px 20px 20px;
    }
    
    .service-preview-card h5 {
        font-size: 16px;
    }
    
    .service-preview-card p {
        font-size: 12px;
    }
}

/* ============================================ */
/* RESPONSIVE – Mobile                         */
/* ============================================ */

@media (max-width: 575.98px) {
    .services-preview-section {
        padding: 50px 0 30px;
    }
    
    .services-preview-section .section-header {
        margin-bottom: 30px;
    }
    
    .services-preview-section .section-header h2 {
        font-size: 26px;
    }
    
    .services-preview-section .section-header h2::after {
        width: 40px;
        height: 3px;
        margin-top: 12px;
    }
    
    .services-preview-section .section-header .section-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .service-preview-card {
        height: 250px;
        border-radius: var(--radius-md);
    }
    
    .service-preview-card:hover {
        transform: translateY(-5px);
    }
    
    .service-preview-card .card-content {
        padding: 20px 16px 16px;
    }
    
    .service-preview-card .service-preview-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .service-preview-card h5 {
        font-size: 15px;
    }
    
    .service-preview-card p {
        font-size: 12px;
        -webkit-line-clamp: 1;
    }
    
    .service-preview-card .btn-learn {
        font-size: 11px;
        padding: 4px 16px;
        opacity: 1;
        transform: translateY(0);
        background: rgba(228, 161, 27, 0.2);
        color: var(--color-gold);
    }
    
    .service-preview-card:hover .btn-learn {
        opacity: 1;
        transform: translateY(0);
        background: var(--color-gold);
        color: var(--color-navy);
    }
    
    .service-preview-card:hover .card-bg {
        transform: scale(1.05);
    }
    
    /* View All Button */
    .services-preview-section .btn-primary {
        font-size: 14px;
        padding: 12px 28px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ============================================ */
/* EXTRA SMALL – 400px and below               */
/* ============================================ */

@media (max-width: 399.98px) {
    .services-preview-section .section-header h2 {
        font-size: 22px;
    }
    
    .service-preview-card {
        height: 220px;
    }
    
    .service-preview-card h5 {
        font-size: 14px;
    }
    
    .service-preview-card p {
        font-size: 11px;
    }
    
    .service-preview-card .service-preview-icon {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}

/* ============================================ */
/* REDUCED MOTION PREFERENCE                   */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    .service-preview-card {
        transition: none !important;
    }
    
    .service-preview-card:hover {
        transform: none !important;
    }
    
    .service-preview-card .card-bg {
        transition: none !important;
    }
    
    .service-preview-card:hover .card-bg {
        transform: none !important;
    }
    
    .service-preview-card .card-overlay {
        transition: none !important;
    }
    
    .service-preview-card .btn-learn {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .services-preview-section .btn-primary {
        transition: none !important;
    }
    
    .services-preview-section .btn-primary:hover {
        transform: none !important;
    }
}

/* ============================================ */
/* DARK MODE SUPPORT                           */
/* ============================================ */

@media (prefers-color-scheme: dark) {
    .services-preview-section {
        background: var(--color-navy-dark);
    }
    
    .services-preview-section .section-header h2 {
        color: var(--color-white);
    }
    
    .services-preview-section .section-header .section-subtitle {
        color: rgba(255, 255, 255, 0.6);
    }
}

/* ============================================ */
/* PAGE HERO SECTION – Left Align with Overlay  */
/* ============================================ */

.page-hero-section {
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

/* ============================================ */
/* BACKGROUND IMAGE                             */
/* ============================================ */

.page-hero-section .hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* ============================================ */
/* GRADIENT OVERLAY – Left Side Strong          */
/* (Same as Home Page Hero)                     */
/* ============================================ */

.page-hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(11, 52, 114, 0.92) 0%,
        rgba(11, 52, 114, 0.85) 20%,
        rgba(11, 52, 114, 0.70) 35%,
        rgba(11, 52, 114, 0.50) 50%,
        rgba(11, 52, 114, 0.25) 65%,
        rgba(11, 52, 114, 0.05) 80%,
        transparent 100%
    );
}

/* Gold Accent Overlay (Subtle) */
.page-hero-section .hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 20% 50%,
        rgba(228, 161, 27, 0.08) 0%,
        transparent 60%
    );
    z-index: 1;
}

/* ============================================ */
/* CONTENT WRAPPER – No Glass Effect            */
/* ============================================ */

.page-hero-section .hero-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* ============================================ */
/* CONTENT – Left Aligned                       */
/* ============================================ */

.page-hero-section .hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 700px;
}

/* Badge – Premium Gold */
.page-hero-section .hero-badge {
    display: inline-block;
    background: rgba(228, 161, 27, 0.15);
    border: 1px solid rgba(228, 161, 27, 0.2);
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    padding: 8px 28px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    position: relative;
}

/* Badge Glow */
.page-hero-section .hero-badge::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-gold), transparent);
    opacity: 0.1;
    z-index: -1;
    filter: blur(15px);
}

/* Heading – BIG & BOLD – Left Aligned */
.page-hero-section h1 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 52px;
    line-height: 1.1;
    color: var(--color-white);
    letter-spacing: -2px;
    margin-bottom: 20px;
    text-align: left;
}

.page-hero-section h1 .text-gold {
    background: linear-gradient(135deg, var(--color-gold), #F5B825, var(--color-gold-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Gold Underline – Left Aligned */
.page-hero-section h1 .gold-underline {
    display: inline-block;
    position: relative;
}

.page-hero-section h1 .gold-underline::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
    border-radius: var(--radius-full);
    animation: underlineGlow 3s ease-in-out infinite;
}

@keyframes underlineGlow {
    0%, 100% {
        transform: scaleX(0.7);
        opacity: 0.4;
        box-shadow: 0 0 10px rgba(228, 161, 27, 0.2);
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
        box-shadow: 0 0 30px rgba(228, 161, 27, 0.4);
    }
}

/* Paragraph – Left Aligned */
.page-hero-section p {
    font-family: var(--font-body);
    font-size: 19px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 0 30px;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-align: left;
}

/* ============================================ */
/* STATS – Left Aligned                         */
/* ============================================ */

.page-hero-section .hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero-section .hero-stats .stat {
    text-align: left;
}

.page-hero-section .hero-stats .stat .number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 28px;
    color: var(--color-gold);
    display: block;
    line-height: 1;
}

.page-hero-section .hero-stats .stat .label {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* ============================================ */
/* DECORATIVE – Gold Particles                  */
/* ============================================ */

.page-hero-section .particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.page-hero-section .particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s ease-in-out infinite;
}

.page-hero-section .particles .particle:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.page-hero-section .particles .particle:nth-child(2) { top: 20%; right: 8%; animation-delay: 1s; width: 4px; height: 4px; }
.page-hero-section .particles .particle:nth-child(3) { bottom: 30%; left: 12%; animation-delay: 2s; width: 8px; height: 8px; }
.page-hero-section .particles .particle:nth-child(4) { top: 60%; right: 5%; animation-delay: 0.5s; width: 5px; height: 5px; }
.page-hero-section .particles .particle:nth-child(5) { bottom: 15%; right: 20%; animation-delay: 1.5s; width: 7px; height: 7px; }
.page-hero-section .particles .particle:nth-child(6) { top: 40%; left: 3%; animation-delay: 2.5s; width: 3px; height: 3px; }

@keyframes particleFloat {
    0% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
    30% {
        opacity: 0.6;
    }
    70% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-120px) scale(1);
        opacity: 0;
    }
}

/* ============================================ */
/* GOLD DIVIDER – Top Accent                    */
/* ============================================ */

.page-hero-section .gold-divider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-gold-hover), transparent);
    z-index: 3;
    animation: dividerShine 3s ease-in-out infinite;
}

@keyframes dividerShine {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

/* ============================================ */
/* RESPONSIVE – Tablet                         */
/* ============================================ */

@media (max-width: 991.98px) {
    .page-hero-section {
        padding: 80px 0 60px;
        min-height: 400px;
    }
    
    .page-hero-section .hero-content {
        max-width: 100%;
    }
    
    .page-hero-section h1 {
        font-size: 40px;
    }
    
    .page-hero-section p {
        font-size: 17px;
    }
    
    .page-hero-section .hero-badge {
        font-size: 12px;
        padding: 6px 22px;
    }
    
    .page-hero-section .particles .particle {
        display: none;
    }
    
    .page-hero-section .hero-overlay {
        background: linear-gradient(
            135deg,
            rgba(11, 52, 114, 0.92) 0%,
            rgba(11, 52, 114, 0.85) 30%,
            rgba(11, 52, 114, 0.70) 50%,
            rgba(11, 52, 114, 0.50) 70%,
            rgba(11, 52, 114, 0.30) 100%
        );
    }
    
    .page-hero-section .hero-stats {
        gap: 30px;
    }
    
    .page-hero-section .hero-stats .stat .number {
        font-size: 24px;
    }
}

/* ============================================ */
/* RESPONSIVE – Mobile                         */
/* ============================================ */

@media (max-width: 575.98px) {
    .page-hero-section {
        padding: 60px 0 40px;
        min-height: 350px;
    }
    
    .page-hero-section .hero-content {
        text-align: left;
        max-width: 100%;
        padding: 0 5px;
    }
    
    .page-hero-section .hero-badge {
        font-size: 10px;
        padding: 5px 16px;
        letter-spacing: 1px;
        margin-bottom: 16px;
    }
    
    .page-hero-section h1 {
        font-size: 28px;
        letter-spacing: -1px;
        line-height: 1.15;
    }
    
    .page-hero-section h1 .gold-underline::after {
        height: 3px;
        bottom: -4px;
    }
    
    .page-hero-section p {
        font-size: 15px;
        line-height: 1.7;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .page-hero-section .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
        padding-top: 18px;
    }
    
    .page-hero-section .hero-stats .stat .number {
        font-size: 22px;
    }
    
    .page-hero-section .hero-stats .stat .label {
        font-size: 11px;
    }
    
    .page-hero-section .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(11, 52, 114, 0.92) 0%,
            rgba(11, 52, 114, 0.85) 40%,
            rgba(11, 52, 114, 0.70) 70%,
            rgba(11, 52, 114, 0.50) 100%
        );
    }
    
    .page-hero-section .particles {
        display: none;
    }
}

/* ============================================ */
/* EXTRA SMALL – 400px and below               */
/* ============================================ */

@media (max-width: 399.98px) {
    .page-hero-section {
        padding: 50px 0 30px;
    }
    
    .page-hero-section h1 {
        font-size: 24px;
    }
    
    .page-hero-section p {
        font-size: 14px;
    }
    
    .page-hero-section .hero-stats .stat .number {
        font-size: 18px;
    }
}

/* ============================================ */
/* REDUCED MOTION PREFERENCE                   */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    .page-hero-section .particles .particle {
        animation: none !important;
        display: none;
    }
    
    .page-hero-section .gold-divider {
        animation: none !important;
    }
    
    .page-hero-section h1 .gold-underline::after {
        animation: none !important;
    }
}

/* ============================================ */
/* SCROLL ANIMATION – Fade In                  */
/* ============================================ */

.page-hero-section .hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: heroAppear 0.6s ease forwards;
}

@keyframes heroAppear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-hero-section .hero-content {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* ============================================ */
/* PAGE HERO SECTION – Left Align with Overlay  */
/* ============================================ */

.page-hero-section {
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

/* ============================================ */
/* BACKGROUND IMAGE                             */
/* ============================================ */

.page-hero-section .hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* ============================================ */
/* GRADIENT OVERLAY – Left Side Strong          */
/* ============================================ */

.page-hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(11, 52, 114, 0.92) 0%,
        rgba(11, 52, 114, 0.85) 20%,
        rgba(11, 52, 114, 0.70) 35%,
        rgba(11, 52, 114, 0.50) 50%,
        rgba(11, 52, 114, 0.25) 65%,
        rgba(11, 52, 114, 0.05) 80%,
        transparent 100%
    );
}

/* Gold Accent Overlay */
.page-hero-section .hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 20% 50%,
        rgba(228, 161, 27, 0.08) 0%,
        transparent 60%
    );
    z-index: 1;
}

/* ============================================ */
/* CONTENT WRAPPER – No Glass Effect            */
/* ============================================ */

.page-hero-section .hero-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* ============================================ */
/* CONTENT – Left Aligned                       */
/* ============================================ */

.page-hero-section .hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 700px;
}

/* Badge */
.page-hero-section .hero-badge {
    display: inline-block;
    background: rgba(228, 161, 27, 0.15);
    border: 1px solid rgba(228, 161, 27, 0.2);
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    padding: 8px 28px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    position: relative;
}

/* Heading */
.page-hero-section h1 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 52px;
    line-height: 1.1;
    color: var(--color-white);
    letter-spacing: -2px;
    margin-bottom: 20px;
    text-align: left;
}

.page-hero-section h1 .text-gold {
    background: linear-gradient(135deg, var(--color-gold), #F5B825, var(--color-gold-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Gold Underline */
.page-hero-section h1 .gold-underline {
    display: inline-block;
    position: relative;
}

.page-hero-section h1 .gold-underline::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
    border-radius: var(--radius-full);
    animation: underlineGlow 3s ease-in-out infinite;
}

@keyframes underlineGlow {
    0%, 100% {
        transform: scaleX(0.7);
        opacity: 0.4;
        box-shadow: 0 0 10px rgba(228, 161, 27, 0.2);
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
        box-shadow: 0 0 30px rgba(228, 161, 27, 0.4);
    }
}

/* Paragraph */
.page-hero-section p {
    font-family: var(--font-body);
    font-size: 19px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 0 20px;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-align: left;
}

/* ============================================ */
/* SERVICE KEYWORDS – Tags                      */
/* ============================================ */

.service-keywords-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 25px;
}

.keyword-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-size: 12px;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: var(--transition-fast);
    backdrop-filter: blur(5px);
}

.keyword-badge:hover {
    background: rgba(228, 161, 27, 0.1);
    border-color: rgba(228, 161, 27, 0.15);
    color: var(--color-gold);
    transform: translateY(-2px);
}

/* ============================================ */
/* STATS – Left Aligned                         */
/* ============================================ */

.page-hero-section .hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero-section .hero-stats .stat {
    text-align: left;
}

.page-hero-section .hero-stats .stat .number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 28px;
    color: var(--color-gold);
    display: block;
    line-height: 1;
}

.page-hero-section .hero-stats .stat .label {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* ============================================ */
/* PARTICLES – Decorative                       */
/* ============================================ */

.page-hero-section .particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.page-hero-section .particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s ease-in-out infinite;
}

.page-hero-section .particles .particle:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.page-hero-section .particles .particle:nth-child(2) { top: 20%; right: 8%; animation-delay: 1s; width: 4px; height: 4px; }
.page-hero-section .particles .particle:nth-child(3) { bottom: 30%; left: 12%; animation-delay: 2s; width: 8px; height: 8px; }
.page-hero-section .particles .particle:nth-child(4) { top: 60%; right: 5%; animation-delay: 0.5s; width: 5px; height: 5px; }
.page-hero-section .particles .particle:nth-child(5) { bottom: 15%; right: 20%; animation-delay: 1.5s; width: 7px; height: 7px; }
.page-hero-section .particles .particle:nth-child(6) { top: 40%; left: 3%; animation-delay: 2.5s; width: 3px; height: 3px; }

@keyframes particleFloat {
    0% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
    30% {
        opacity: 0.6;
    }
    70% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-120px) scale(1);
        opacity: 0;
    }
}

/* ============================================ */
/* GOLD DIVIDER – Top Accent                    */
/* ============================================ */

.page-hero-section .gold-divider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-gold-hover), transparent);
    z-index: 3;
    animation: dividerShine 3s ease-in-out infinite;
}

@keyframes dividerShine {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

/* ============================================ */
/* RESPONSIVE – Tablet                         */
/* ============================================ */

@media (max-width: 991.98px) {
    .page-hero-section {
        padding: 80px 0 60px;
        min-height: 400px;
    }
    
    .page-hero-section .hero-content {
        max-width: 100%;
    }
    
    .page-hero-section h1 {
        font-size: 40px;
    }
    
    .page-hero-section p {
        font-size: 17px;
    }
    
    .page-hero-section .hero-badge {
        font-size: 12px;
        padding: 6px 22px;
    }
    
    .page-hero-section .particles .particle {
        display: none;
    }
    
    .page-hero-section .hero-overlay {
        background: linear-gradient(
            135deg,
            rgba(11, 52, 114, 0.92) 0%,
            rgba(11, 52, 114, 0.85) 30%,
            rgba(11, 52, 114, 0.70) 50%,
            rgba(11, 52, 114, 0.50) 70%,
            rgba(11, 52, 114, 0.30) 100%
        );
    }
}

/* ============================================ */
/* RESPONSIVE – Mobile                         */
/* ============================================ */

@media (max-width: 575.98px) {
    .page-hero-section {
        padding: 60px 0 40px;
        min-height: 350px;
    }
    
    .page-hero-section .hero-content {
        max-width: 100%;
        padding: 0 5px;
    }
    
    .page-hero-section .hero-badge {
        font-size: 10px;
        padding: 5px 16px;
        letter-spacing: 1px;
        margin-bottom: 16px;
    }
    
    .page-hero-section h1 {
        font-size: 28px;
        letter-spacing: -1px;
        line-height: 1.15;
    }
    
    .page-hero-section h1 .gold-underline::after {
        height: 3px;
        bottom: -4px;
    }
    
    .page-hero-section p {
        font-size: 15px;
        line-height: 1.7;
        max-width: 100%;
        margin-bottom: 16px;
    }
    
    .service-keywords-hero {
        gap: 6px;
        margin: 0 0 18px;
    }
    
    .keyword-badge {
        font-size: 10px;
        padding: 3px 12px;
        backdrop-filter: none;
    }
    
    .page-hero-section .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
        padding-top: 18px;
    }
    
    .page-hero-section .hero-stats .stat .number {
        font-size: 22px;
    }
    
    .page-hero-section .hero-stats .stat .label {
        font-size: 11px;
    }
    
    .page-hero-section .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(11, 52, 114, 0.92) 0%,
            rgba(11, 52, 114, 0.85) 40%,
            rgba(11, 52, 114, 0.70) 70%,
            rgba(11, 52, 114, 0.50) 100%
        );
    }
    
    .page-hero-section .particles {
        display: none;
    }
}

/* ============================================ */
/* EXTRA SMALL – 400px and below               */
/* ============================================ */

@media (max-width: 399.98px) {
    .page-hero-section {
        padding: 50px 0 30px;
    }
    
    .page-hero-section h1 {
        font-size: 24px;
    }
    
    .page-hero-section p {
        font-size: 14px;
    }
    
    .page-hero-section .hero-stats .stat .number {
        font-size: 18px;
    }
}

/* ============================================ */
/* REDUCED MOTION PREFERENCE                   */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    .page-hero-section .particles .particle {
        animation: none !important;
        display: none;
    }
    
    .page-hero-section .gold-divider {
        animation: none !important;
    }
    
    .page-hero-section h1 .gold-underline::after {
        animation: none !important;
    }
}

/* ============================================ */
/* SCROLL ANIMATION – Fade In                  */
/* ============================================ */

.page-hero-section .hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: heroAppear 0.6s ease forwards;
}

@keyframes heroAppear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-hero-section .hero-content {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* ============================================ */
/* DARK MODE SUPPORT                           */
/* ============================================ */

@media (prefers-color-scheme: dark) {
    .keyword-badge {
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 255, 255, 0.03);
    }
    
    .keyword-badge:hover {
        background: rgba(228, 161, 27, 0.08);
        border-color: rgba(228, 161, 27, 0.1);
    }
}
/* ============================================ */
/* CONTACT INFO SECTION – Premium Design        */
/* ============================================ */

.contact-info-section {
    padding: 80px 0;
    background: var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

/* Decorative Background Elements */
.contact-info-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(228, 161, 27, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-info-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(11, 52, 114, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ============================================ */
/* SECTION HEADER                               */
/* ============================================ */

.contact-info-section .section-header {
    margin-bottom: 50px;
}

.contact-info-section .section-header h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 38px;
    color: var(--color-navy);
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.contact-info-section .section-header h2 .text-gold {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info-section .section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
    border-radius: var(--radius-full);
    margin: 14px auto 0;
}

.contact-info-section .section-header .section-subtitle {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================ */
/* CONTACT CARDS – Glassmorphism                */
/* ============================================ */

.contact-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: 40px 30px 35px;
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(11, 52, 114, 0.04);
    overflow: hidden;
}

/* Gold Border on Hover */
.contact-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    transform: scaleX(0);
    transition: var(--transition-medium);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.contact-card:hover::after {
    transform: scaleX(1);
}

/* Card Hover Effect */
.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(11, 52, 114, 0.08);
    border-color: rgba(228, 161, 27, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

/* ============================================ */
/* CONTACT ICON – Gold Gradient Circle          */
/* ============================================ */

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(228, 161, 27, 0.12), rgba(228, 161, 27, 0.05));
    border: 2px solid rgba(228, 161, 27, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: var(--color-gold);
    margin-bottom: 20px;
    transition: var(--transition-medium);
    flex-shrink: 0;
    position: relative;
}

/* Icon Glow Ring */
.contact-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(228, 161, 27, 0.15), transparent 70%);
    opacity: 0;
    transition: var(--transition-medium);
    z-index: -1;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, rgba(228, 161, 27, 0.2), rgba(228, 161, 27, 0.08));
    border-color: var(--color-gold);
    box-shadow: 0 8px 40px rgba(228, 161, 27, 0.2);
}

.contact-card:hover .contact-icon::after {
    opacity: 1;
    transform: scale(1.3);
}

/* Card Number Badge */
.contact-card .card-number {
    position: absolute;
    top: -5px;
    right: 15px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 56px;
    color: rgba(11, 52, 114, 0.02);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: var(--transition-medium);
}

.contact-card:hover .card-number {
    color: rgba(228, 161, 27, 0.04);
    transform: scale(1.1);
}

/* ============================================ */
/* CARD TEXT                                    */
/* ============================================ */

.contact-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--color-navy);
    margin-bottom: 12px;
}

/* Gold Underline on Title */
.contact-card h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    border-radius: var(--radius-full);
    margin: 10px auto 0;
    transition: var(--transition-medium);
}

.contact-card:hover h4::after {
    width: 50px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
}

.contact-card p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text-body);
    flex: 1;
    margin: 0 0 20px;
}

/* ============================================ */
/* CTA BUTTONS                                  */
/* ============================================ */

.contact-card .btn {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 30px;
    border-radius: var(--radius-full);
    transition: var(--transition-medium);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    width: 100%;
    justify-content: center;
}

/* WhatsApp Button */
.contact-card .btn-success {
    background: linear-gradient(135deg, #25D366, #1DA851);
    color: var(--color-white);
    border: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.contact-card .btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.4);
    color: var(--color-white);
}

/* Phone Button */
.contact-card .btn-primary {
    background: linear-gradient(135deg, var(--color-navy), var(--color-navy-dark));
    color: var(--color-white);
    border: none;
    box-shadow: 0 4px 20px rgba(11, 52, 114, 0.2);
}

.contact-card .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(11, 52, 114, 0.35);
    color: var(--color-white);
}

/* Email Button */
.contact-card .btn-outline-primary {
    background: transparent;
    color: var(--color-navy);
    border: 2px solid var(--color-navy);
    box-shadow: none;
}

.contact-card .btn-outline-primary:hover {
    background: var(--color-navy);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(11, 52, 114, 0.2);
}

/* ============================================ */
/* DECORATIVE – Gold Dot Pattern                */
/* ============================================ */

.contact-card .gold-dots {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 4px;
    opacity: 0.04;
    pointer-events: none;
}

.contact-card .gold-dots span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-gold);
}

.contact-card:hover .gold-dots {
    opacity: 0.08;
}

/* ============================================ */
/* RESPONSIVE – Tablet                         */
/* ============================================ */

@media (max-width: 991.98px) {
    .contact-info-section {
        padding: 60px 0;
    }
    
    .contact-card {
        padding: 30px 22px 25px;
        border-radius: var(--radius-md);
    }
    
    .contact-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }
    
    .contact-card h4 {
        font-size: 18px;
    }
    
    .contact-card p {
        font-size: 13px;
    }
    
    .contact-card .card-number {
        font-size: 40px;
    }
}

/* ============================================ */
/* RESPONSIVE – Mobile                         */
/* ============================================ */

@media (max-width: 575.98px) {
    .contact-info-section {
        padding: 50px 0 30px;
    }
    
    .contact-card {
        padding: 25px 18px 22px;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.92);
    }
    
    .contact-card:hover {
        transform: translateY(-5px);
    }
    
    .contact-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .contact-card:hover .contact-icon {
        transform: scale(1.05);
    }
    
    .contact-card h4 {
        font-size: 17px;
    }
    
    .contact-card h4::after {
        width: 25px;
        height: 2px;
        margin-top: 8px;
    }
    
    .contact-card:hover h4::after {
        width: 35px;
    }
    
    .contact-card p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .contact-card .btn {
        font-size: 13px;
        padding: 10px 20px;
    }
    
    .contact-card .card-number {
        font-size: 32px;
        top: -2px;
        right: 10px;
    }
    
    .contact-card .gold-dots {
        display: none;
    }
    
    .row.g-4 {
        --bs-gutter-y: 1rem;
        --bs-gutter-x: 1rem;
    }
}

/* ============================================ */
/* EXTRA SMALL – 400px and below               */
/* ============================================ */

@media (max-width: 399.98px) {
    .contact-info-section {
        padding: 40px 0 20px;
    }
    
    .contact-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .contact-card h4 {
        font-size: 15px;
    }
    
    .contact-card p {
        font-size: 12px;
    }
    
    .contact-card .btn {
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* ============================================ */
/* REDUCED MOTION PREFERENCE                   */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    .contact-card {
        transition: none !important;
    }
    
    .contact-card:hover {
        transform: none !important;
    }
    
    .contact-card::after {
        transition: none !important;
    }
    
    .contact-icon::after {
        transition: none !important;
    }
}

/* ============================================ */
/* DARK MODE SUPPORT                           */
/* ============================================ */

@media (prefers-color-scheme: dark) {
    .contact-info-section {
        background: var(--color-navy-dark);
    }
    
    .contact-card {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.06);
    }
    
    .contact-card:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(228, 161, 27, 0.15);
    }
    
    .contact-card h4 {
        color: var(--color-white);
    }
    
    .contact-card h4::after {
        background: linear-gradient(90deg, var(--color-gold), transparent);
    }
    
    .contact-card:hover h4::after {
        background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
    }
    
    .contact-card p {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .contact-card .card-number {
        color: rgba(255, 255, 255, 0.02);
    }
    
    .contact-card:hover .card-number {
        color: rgba(228, 161, 27, 0.04);
    }
}

/* ============================================ */
/* CONTACT DETAILS SECTION – Premium Design     */
/* ============================================ */

.contact-details-section {
    padding: 80px 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* Decorative Background */
.contact-details-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(228, 161, 27, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-details-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(11, 52, 114, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ============================================ */
/* DETAILS CARDS – Premium Glass                */
/* ============================================ */

.details-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    transition: var(--transition-medium);
    position: relative;
    height: 100%;
    box-shadow: 0 4px 20px rgba(11, 52, 114, 0.04);
    overflow: hidden;
}

/* Gold Border on Hover */
.details-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    transform: scaleX(0);
    transition: var(--transition-medium);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.details-card:hover::after {
    transform: scaleX(1);
}

/* Card Hover */
.details-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(11, 52, 114, 0.08);
    border-color: rgba(228, 161, 27, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

/* Glass Inner Glow */
.details-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 30% 20%, rgba(228, 161, 27, 0.03), transparent 60%);
    pointer-events: none;
}

/* ============================================ */
/* CARD HEADER – Gold Icon & Title              */
/* ============================================ */

.details-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    color: var(--color-navy);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.details-card h4 i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(228, 161, 27, 0.12), rgba(228, 161, 27, 0.05));
    border: 2px solid rgba(228, 161, 27, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-gold);
    flex-shrink: 0;
    transition: var(--transition-medium);
}

.details-card:hover h4 i {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, rgba(228, 161, 27, 0.2), rgba(228, 161, 27, 0.08));
    border-color: var(--color-gold);
    box-shadow: 0 8px 30px rgba(228, 161, 27, 0.15);
}

/* ============================================ */
/* CARD TEXT                                    */
/* ============================================ */

.details-card p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-body);
    margin-bottom: 12px;
}

.details-card p:last-child {
    margin-bottom: 0;
}

.details-card p strong {
    color: var(--color-navy);
    font-weight: 600;
}

.details-card p small {
    font-size: 13px;
    color: var(--color-text-light);
    display: block;
    margin-top: 8px;
    padding: 10px 16px;
    background: rgba(228, 161, 27, 0.04);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--color-gold);
}

/* ============================================ */
/* DECORATIVE – Gold Bar                       */
/* ============================================ */

.details-card .gold-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.05;
    pointer-events: none;
}

/* ============================================ */
/* RESPONSIVE – Tablet                         */
/* ============================================ */

@media (max-width: 991.98px) {
    .contact-details-section {
        padding: 60px 0;
    }
    
    .details-card {
        padding: 30px 25px;
        border-radius: var(--radius-md);
    }
    
    .details-card h4 {
        font-size: 20px;
    }
    
    .details-card h4 i {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .details-card p {
        font-size: 14px;
    }
}

/* ============================================ */
/* RESPONSIVE – Mobile                         */
/* ============================================ */

@media (max-width: 575.98px) {
    .contact-details-section {
        padding: 50px 0 30px;
    }
    
    .details-card {
        padding: 25px 20px;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.92);
    }
    
    .details-card:hover {
        transform: translateY(-5px);
    }
    
    .details-card h4 {
        font-size: 18px;
        gap: 12px;
    }
    
    .details-card h4 i {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .details-card p {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .details-card p small {
        font-size: 12px;
        padding: 8px 14px;
    }
    
    .row.g-4 {
        --bs-gutter-y: 1rem;
        --bs-gutter-x: 1rem;
    }
}

/* ============================================ */
/* EXTRA SMALL – 400px and below               */
/* ============================================ */

@media (max-width: 399.98px) {
    .contact-details-section {
        padding: 40px 0 20px;
    }
    
    .details-card {
        padding: 20px 16px;
    }
    
    .details-card h4 {
        font-size: 16px;
    }
    
    .details-card h4 i {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .details-card p {
        font-size: 13px;
    }
}

/* ============================================ */
/* REDUCED MOTION PREFERENCE                   */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    .details-card {
        transition: none !important;
    }
    
    .details-card:hover {
        transform: none !important;
    }
    
    .details-card::after {
        transition: none !important;
    }
    
    .details-card h4 i {
        transition: none !important;
    }
}

/* ============================================ */
/* DARK MODE SUPPORT                           */
/* ============================================ */

@media (prefers-color-scheme: dark) {
    .contact-details-section {
        background: var(--color-navy-dark);
    }
    
    .details-card {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.06);
    }
    
    .details-card:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(228, 161, 27, 0.15);
    }
    
    .details-card h4 {
        color: var(--color-white);
    }
    
    .details-card h4 i {
        background: rgba(228, 161, 27, 0.08);
        border-color: rgba(228, 161, 27, 0.1);
    }
    
    .details-card:hover h4 i {
        background: rgba(228, 161, 27, 0.15);
    }
    
    .details-card p {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .details-card p strong {
        color: var(--color-white);
    }
    
    .details-card p small {
        background: rgba(255, 255, 255, 0.03);
        color: rgba(255, 255, 255, 0.5);
        border-left-color: var(--color-gold);
    }
}
/* ============================================ */
/* COMPANY INTRO SECTION – Premium Design       */
/* ============================================ */

.company-intro-section {
    padding: 100px 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* Decorative Background */
.company-intro-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(228, 161, 27, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.company-intro-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(11, 52, 114, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ============================================ */
/* CONTENT WRAPPER – Glass Container            */
/* ============================================ */

.company-intro-section .content-wrapper {
    position: relative;
    z-index: 2;
}

/* ============================================ */
/* LEFT SIDE – TEXT CONTENT                     */
/* ============================================ */

.company-intro-section .text-content {
    padding-right: 40px;
    position: relative;
}

/* Badge */
.company-intro-section .about-badge {
    display: inline-block;
    background: rgba(228, 161, 27, 0.1);
    border: 1px solid rgba(228, 161, 27, 0.15);
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    padding: 4px 18px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

/* Heading */
.company-intro-section h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 36px;
    color: var(--color-navy);
    letter-spacing: -1px;
    margin-bottom: 20px;
    position: relative;
}

.company-intro-section h2 .text-gold {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gold Underline */
.company-intro-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
    border-radius: var(--radius-full);
    margin-top: 14px;
}

/* Paragraphs */
.company-intro-section .text-content p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.9;
    color: var(--color-text-body);
    margin-bottom: 16px;
}

.company-intro-section .text-content p:last-of-type {
    margin-bottom: 0;
}

/* Highlighted Text */
.company-intro-section .text-content .highlight-text {
    background: rgba(228, 161, 27, 0.06);
    border-left: 3px solid var(--color-gold);
    padding: 12px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
    font-weight: 500;
    color: var(--color-navy);
}

/* ============================================ */
/* RIGHT SIDE – IMAGE                           */
/* ============================================ */

.company-intro-section .about-image {
    position: relative;
    z-index: 2;
    padding: 0 0 0 30px;
}

/* Image Wrapper */
.company-intro-section .about-image .image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(11, 52, 114, 0.1);
    transition: var(--transition-medium);
}

.company-intro-section .about-image .image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 40px 100px rgba(11, 52, 114, 0.15);
}

/* Image */
.company-intro-section .about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

.company-intro-section .about-image .image-wrapper:hover img {
    transform: scale(1.05);
}

/* ============================================ */
/* IMAGE DECORATIVE ELEMENTS                    */
/* ============================================ */

/* Gold Frame */
.company-intro-section .about-image .gold-frame {
    position: absolute;
    inset: -10px;
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-lg);
    opacity: 0.1;
    pointer-events: none;
    transition: var(--transition-medium);
}

.company-intro-section .about-image .image-wrapper:hover .gold-frame {
    opacity: 0.2;
}

/* Corner Accents */
.company-intro-section .about-image .corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--color-gold);
    opacity: 0.15;
    pointer-events: none;
    transition: var(--transition-medium);
}

.company-intro-section .about-image .image-wrapper:hover .corner {
    opacity: 0.3;
}

.company-intro-section .about-image .corner.tl {
    top: -6px;
    left: -6px;
    border-right: none;
    border-bottom: none;
    border-radius: var(--radius-sm) 0 0 0;
}

.company-intro-section .about-image .corner.tr {
    top: -6px;
    right: -6px;
    border-left: none;
    border-bottom: none;
    border-radius: 0 var(--radius-sm) 0 0;
}

.company-intro-section .about-image .corner.bl {
    bottom: -6px;
    left: -6px;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 var(--radius-sm);
}

.company-intro-section .about-image .corner.br {
    bottom: -6px;
    right: -6px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 var(--radius-sm) 0;
}

/* ============================================ */
/* IMAGE BADGES                                 */
/* ============================================ */

/* Badge 1 – Bottom Left */
.company-intro-section .about-image .image-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: badgeFloat 3s ease-in-out infinite;
}

.company-intro-section .about-image .image-badge i {
    font-size: 22px;
    color: var(--color-gold);
    background: rgba(228, 161, 27, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.company-intro-section .about-image .image-badge .badge-text strong {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--color-text-heading);
    display: block;
}

.company-intro-section .about-image .image-badge .badge-text small {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--color-text-light);
}

/* Badge 2 – Top Right */
.company-intro-section .about-image .image-badge-top {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(34, 197, 94, 0.95);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

.company-intro-section .about-image .image-badge-top i {
    font-size: 14px;
}

/* ============================================ */
/* ANIMATIONS                                   */
/* ============================================ */

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ============================================ */
/* RESPONSIVE – Tablet                         */
/* ============================================ */

@media (max-width: 991.98px) {
    .company-intro-section {
        padding: 70px 0;
    }
    
    .company-intro-section .text-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .company-intro-section h2::after {
        margin-left: auto;
        margin-right: auto;
    }
    
    .company-intro-section .text-content p {
        text-align: left;
    }
    
    .company-intro-section .text-content .highlight-text {
        text-align: left;
    }
    
    .company-intro-section .about-image {
        padding: 0;
    }
    
    .company-intro-section .about-image img {
        height: 350px;
    }
    
    .company-intro-section .about-image .gold-frame {
        display: none;
    }
    
    .company-intro-section .about-image .corner {
        display: none;
    }
}

/* ============================================ */
/* RESPONSIVE – Mobile                         */
/* ============================================ */

@media (max-width: 575.98px) {
    .company-intro-section {
        padding: 50px 0 30px;
    }
    
    .company-intro-section .about-badge {
        font-size: 10px;
        padding: 3px 14px;
        margin-bottom: 12px;
    }
    
    .company-intro-section h2 {
        font-size: 26px;
        text-align: center;
    }
    
    .company-intro-section h2::after {
        width: 40px;
        height: 3px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 10px;
    }
    
    .company-intro-section .text-content p {
        font-size: 14px;
        line-height: 1.7;
        text-align: left;
    }
    
    .company-intro-section .text-content .highlight-text {
        font-size: 14px;
        padding: 10px 16px;
    }
    
    .company-intro-section .about-image {
        padding: 0;
        margin-top: 10px;
    }
    
    .company-intro-section .about-image .image-wrapper {
        border-radius: var(--radius-md);
        box-shadow: 0 15px 40px rgba(11, 52, 114, 0.08);
    }
    
    .company-intro-section .about-image img {
        height: 250px;
        border-radius: var(--radius-md);
    }
    
    .company-intro-section .about-image .image-wrapper:hover {
        transform: none;
    }
    
    .company-intro-section .about-image .image-wrapper:hover img {
        transform: none;
    }
    
    /* Badges – Mobile Optimized */
    .company-intro-section .about-image .image-badge {
        bottom: 14px;
        left: 14px;
        padding: 8px 14px;
        gap: 10px;
        border-radius: var(--radius-sm);
        animation: none;
    }
    
    .company-intro-section .about-image .image-badge i {
        font-size: 16px;
        width: 32px;
        height: 32px;
    }
    
    .company-intro-section .about-image .image-badge .badge-text strong {
        font-size: 12px;
    }
    
    .company-intro-section .about-image .image-badge .badge-text small {
        font-size: 10px;
    }
    
    .company-intro-section .about-image .image-badge-top {
        top: 14px;
        right: 14px;
        font-size: 10px;
        padding: 4px 14px;
        animation: none;
    }
    
    .company-intro-section .about-image .image-badge-top i {
        font-size: 11px;
    }
    
    .company-intro-section .about-image .gold-frame,
    .company-intro-section .about-image .corner {
        display: none !important;
    }
}

/* ============================================ */
/* EXTRA SMALL – 400px and below               */
/* ============================================ */

@media (max-width: 399.98px) {
    .company-intro-section {
        padding: 40px 0 20px;
    }
    
    .company-intro-section h2 {
        font-size: 22px;
    }
    
    .company-intro-section .text-content p {
        font-size: 13px;
    }
    
    .company-intro-section .about-image img {
        height: 200px;
    }
    
    .company-intro-section .about-image .image-badge {
        bottom: 10px;
        left: 10px;
        padding: 6px 10px;
        gap: 8px;
    }
    
    .company-intro-section .about-image .image-badge i {
        font-size: 14px;
        width: 28px;
        height: 28px;
    }
    
    .company-intro-section .about-image .image-badge .badge-text strong {
        font-size: 10px;
    }
    
    .company-intro-section .about-image .image-badge .badge-text small {
        font-size: 9px;
    }
    
    .company-intro-section .about-image .image-badge-top {
        top: 10px;
        right: 10px;
        font-size: 8px;
        padding: 3px 10px;
    }
}

/* ============================================ */
/* REDUCED MOTION PREFERENCE                   */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    .company-intro-section .about-image .image-badge {
        animation: none !important;
    }
    
    .company-intro-section .about-image .image-badge-top {
        animation: none !important;
    }
    
    .company-intro-section .about-image .image-wrapper {
        transition: none !important;
    }
    
    .company-intro-section .about-image .image-wrapper:hover {
        transform: none !important;
    }
    
    .company-intro-section .about-image .image-wrapper:hover img {
        transform: none !important;
    }
}

/* ============================================ */
/* DARK MODE SUPPORT                           */
/* ============================================ */

@media (prefers-color-scheme: dark) {
    .company-intro-section {
        background: var(--color-navy-dark);
    }
    
    .company-intro-section h2 {
        color: var(--color-white);
    }
    
    .company-intro-section .text-content p {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .company-intro-section .text-content .highlight-text {
        background: rgba(255, 255, 255, 0.03);
        color: rgba(255, 255, 255, 0.8);
        border-left-color: var(--color-gold);
    }
    
    .company-intro-section .about-image .image-badge {
        background: rgba(8, 38, 82, 0.9);
        border-color: rgba(255, 255, 255, 0.05);
    }
    
    .company-intro-section .about-image .image-badge .badge-text strong {
        color: var(--color-white);
    }
    
    .company-intro-section .about-image .image-badge .badge-text small {
        color: rgba(255, 255, 255, 0.5);
    }
    
    .company-intro-section .about-image .image-badge i {
        background: rgba(228, 161, 27, 0.15);
    }
}
/* ============================================ */
/* MISSION & VISION SECTION – Premium Luxury    */
/* ============================================ */

.mission-vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 50%, #F8F0FC 100%);
    position: relative;
    overflow: hidden;
}

/* ============================================ */
/* DECORATIVE BACKGROUND – Animated Glow Orbs   */
/* ============================================ */

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(228, 161, 27, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat 25s ease-in-out infinite;
}

.mission-vision-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(11, 52, 114, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat 30s ease-in-out infinite reverse;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(40px, -30px) scale(1.1);
    }
}

/* ============================================ */
/* SECTION HEADER                               */
/* ============================================ */

.mission-vision-section .section-header {
    margin-bottom: 60px;
    position: relative;
}

.mission-vision-section .section-header h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 40px;
    color: var(--color-navy);
    letter-spacing: -1.5px;
    margin-bottom: 0;
}

.mission-vision-section .section-header h2 .text-gold {
    background: linear-gradient(135deg, var(--color-gold), #F5B825, var(--color-gold-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animated Gold Divider */
.mission-vision-section .section-header h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
    border-radius: var(--radius-full);
    margin: 16px auto 0;
    animation: dividerPulse 2.5s ease-in-out infinite;
}

@keyframes dividerPulse {
    0%, 100% {
        width: 70px;
        opacity: 0.5;
        box-shadow: 0 0 10px rgba(228, 161, 27, 0.1);
    }
    50% {
        width: 110px;
        opacity: 1;
        box-shadow: 0 0 30px rgba(228, 161, 27, 0.3);
    }
}

/* ============================================ */
/* MISSION & VISION CARDS – Premium Glass       */
/* ============================================ */

.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    padding: 50px 40px 45px;
    transition: var(--transition-slow);
    position: relative;
    height: 100%;
    box-shadow: 0 8px 40px rgba(11, 52, 114, 0.04);
    overflow: hidden;
    cursor: pointer;
}

/* Premium Gold Border on Hover */
.mission-card::after,
.vision-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: linear-gradient(135deg, transparent, var(--color-gold), var(--color-gold-hover), transparent);
    opacity: 0;
    transition: var(--transition-medium);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.mission-card:hover::after,
.vision-card:hover::after {
    opacity: 1;
}

/* Glass Inner Glow */
.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at 30% 10%, rgba(228, 161, 27, 0.04), transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: var(--transition-slow);
}

.mission-card:hover::before,
.vision-card:hover::before {
    opacity: 1;
}

/* Card Hover – 3D Lift */
.mission-card:hover,
.vision-card:hover {
    transform: translateY(-12px) scale(1.01);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(228, 161, 27, 0.1);
    box-shadow: 0 40px 100px rgba(11, 52, 114, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Specific Card Glow Colors */
.mission-card:hover {
    box-shadow: 0 40px 100px rgba(228, 161, 27, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.vision-card:hover {
    box-shadow: 0 40px 100px rgba(11, 52, 114, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* ============================================ */
/* CARD HEADER – Gold Icon & Title              */
/* ============================================ */

.mission-card h3,
.vision-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 26px;
    color: var(--color-navy);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Icon with Premium Gold Circle */
.mission-card h3 i,
.vision-card h3 i {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(228, 161, 27, 0.12), rgba(228, 161, 27, 0.04));
    border: 2px solid rgba(228, 161, 27, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--color-gold);
    flex-shrink: 0;
    transition: var(--transition-medium);
}

/* Icon Glow Ring */
.mission-card h3 i::after,
.vision-card h3 i::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(228, 161, 27, 0.08), transparent 70%);
    opacity: 0;
    transition: var(--transition-slow);
    z-index: -1;
}

.mission-card h3 i,
.vision-card h3 i {
    position: relative;
}

.mission-card:hover h3 i,
.vision-card:hover h3 i {
    transform: scale(1.12) rotate(-10deg);
    background: linear-gradient(135deg, rgba(228, 161, 27, 0.2), rgba(228, 161, 27, 0.08));
    border-color: var(--color-gold);
    box-shadow: 0 8px 40px rgba(228, 161, 27, 0.15);
}

.mission-card:hover h3 i::after,
.vision-card:hover h3 i::after {
    opacity: 1;
    transform: scale(1.3);
}

/* Animated Title Underline */
.mission-card h3::after,
.vision-card h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    border-radius: var(--radius-full);
    margin-top: 10px;
    transition: var(--transition-medium);
}

.mission-card:hover h3::after,
.vision-card:hover h3::after {
    width: 70px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
}

/* ============================================ */
/* CARD TEXT – Premium Typography               */
/* ============================================ */

.mission-card p,
.vision-card p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.9;
    color: var(--color-text-body);
    margin: 0;
    padding-right: 10px;
    letter-spacing: 0.2px;
}

/* ============================================ */
/* CARD NUMBER – Large Decorative               */
/* ============================================ */

.mission-card .card-number,
.vision-card .card-number {
    position: absolute;
    bottom: 12px;
    right: 18px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 56px;
    color: rgba(11, 52, 114, 0.02);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: var(--transition-medium);
}

.mission-card:hover .card-number,
.vision-card:hover .card-number {
    color: rgba(228, 161, 27, 0.04);
    transform: scale(1.15);
}

/* ============================================ */
/* DECORATIVE – Gold Sparkle Dots               */
/* ============================================ */

.mission-card .gold-dots,
.vision-card .gold-dots {
    position: absolute;
    top: 18px;
    right: 18px;
    display: flex;
    gap: 5px;
    opacity: 0.04;
    pointer-events: none;
}

.mission-card .gold-dots span,
.vision-card .gold-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-gold);
}

.mission-card:hover .gold-dots,
.vision-card:hover .gold-dots {
    opacity: 0.1;
}

/* ============================================ */
/* RESPONSIVE – Tablet                         */
/* ============================================ */

@media (max-width: 991.98px) {
    .mission-vision-section {
        padding: 70px 0;
    }
    
    .mission-vision-section .section-header h2 {
        font-size: 34px;
    }
    
    .mission-card,
    .vision-card {
        padding: 40px 30px 35px;
        border-radius: var(--radius-lg);
    }
    
    .mission-card h3,
    .vision-card h3 {
        font-size: 22px;
    }
    
    .mission-card h3 i,
    .vision-card h3 i {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .mission-card p,
    .vision-card p {
        font-size: 15px;
    }
    
    .mission-card .card-number,
    .vision-card .card-number {
        font-size: 44px;
    }
}

/* ============================================ */
/* RESPONSIVE – Mobile                         */
/* ============================================ */

@media (max-width: 575.98px) {
    .mission-vision-section {
        padding: 50px 0 30px;
    }
    
    .mission-vision-section .section-header {
        margin-bottom: 40px;
    }
    
    .mission-vision-section .section-header h2 {
        font-size: 26px;
    }
    
    .mission-vision-section .section-header h2::after {
        width: 40px;
        height: 3px;
        animation: none;
        margin-top: 12px;
    }
    
    .mission-card,
    .vision-card {
        padding: 28px 20px 24px;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(15px);
    }
    
    .mission-card:hover,
    .vision-card:hover {
        transform: translateY(-6px) scale(1.01);
    }
    
    .mission-card::after,
    .vision-card::after {
        display: none;
    }
    
    .mission-card h3,
    .vision-card h3 {
        font-size: 18px;
        gap: 12px;
        margin-bottom: 14px;
    }
    
    .mission-card h3 i,
    .vision-card h3 i {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .mission-card:hover h3 i,
    .vision-card:hover h3 i {
        transform: scale(1.08);
    }
    
    .mission-card h3::after,
    .vision-card h3::after {
        width: 30px;
        height: 2px;
        margin-top: 8px;
    }
    
    .mission-card:hover h3::after,
    .vision-card:hover h3::after {
        width: 45px;
    }
    
    .mission-card p,
    .vision-card p {
        font-size: 14px;
        line-height: 1.7;
        padding-right: 0;
    }
    
    .mission-card .card-number,
    .vision-card .card-number {
        font-size: 32px;
        bottom: 8px;
        right: 12px;
    }
    
    .mission-card .gold-dots,
    .vision-card .gold-dots {
        display: none;
    }
    
    .row.g-4 {
        --bs-gutter-y: 1rem;
        --bs-gutter-x: 1rem;
    }
}

/* ============================================ */
/* EXTRA SMALL – 400px and below               */
/* ============================================ */

@media (max-width: 399.98px) {
    .mission-vision-section {
        padding: 40px 0 20px;
    }
    
    .mission-vision-section .section-header h2 {
        font-size: 22px;
    }
    
    .mission-card,
    .vision-card {
        padding: 20px 14px 18px;
    }
    
    .mission-card h3,
    .vision-card h3 {
        font-size: 16px;
    }
    
    .mission-card h3 i,
    .vision-card h3 i {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    
    .mission-card p,
    .vision-card p {
        font-size: 13px;
    }
    
    .mission-card .card-number,
    .vision-card .card-number {
        font-size: 24px;
    }
}

/* ============================================ */
/* REDUCED MOTION PREFERENCE                   */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    .mission-vision-section::before,
    .mission-vision-section::after {
        animation: none !important;
    }
    
    .mission-vision-section .section-header h2::after {
        animation: none !important;
    }
    
    .mission-card,
    .vision-card {
        transition: none !important;
    }
    
    .mission-card:hover,
    .vision-card:hover {
        transform: none !important;
    }
    
    .mission-card::after,
    .vision-card::after,
    .mission-card::before,
    .vision-card::before {
        transition: none !important;
    }
    
    .mission-card h3 i,
    .vision-card h3 i {
        transition: none !important;
    }
    
    .mission-card h3 i::after,
    .vision-card h3 i::after {
        transition: none !important;
    }
}

/* ============================================ */
/* ACCESSIBILITY – Focus States                */
/* ============================================ */

.mission-card:focus-within,
.vision-card:focus-within {
    outline: 2px solid var(--color-gold);
    outline-offset: 4px;
}

/* ============================================ */
/* SCROLL ANIMATION – Fade In                  */
/* ============================================ */

.mission-card,
.vision-card {
    opacity: 0;
    transform: translateY(30px);
    animation: cardAppear 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.mission-card {
    animation-delay: 0.1s;
}

.vision-card {
    animation-delay: 0.3s;
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .mission-card,
    .vision-card {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* ============================================ */
/* DARK MODE SUPPORT                           */
/* ============================================ */

@media (prefers-color-scheme: dark) {
    .mission-vision-section {
        background: var(--color-navy-dark);
    }
    
    .mission-vision-section .section-header h2 {
        color: var(--color-white);
    }
    
    .mission-card,
    .vision-card {
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 255, 255, 0.06);
    }
    
    .mission-card:hover,
    .vision-card:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(228, 161, 27, 0.1);
        box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    }
    
    .mission-card h3,
    .vision-card h3 {
        color: var(--color-white);
    }
    
    .mission-card h3 i,
    .vision-card h3 i {
        background: rgba(228, 161, 27, 0.08);
        border-color: rgba(228, 161, 27, 0.08);
    }
    
    .mission-card:hover h3 i,
    .vision-card:hover h3 i {
        background: rgba(228, 161, 27, 0.15);
        border-color: var(--color-gold);
    }
    
    .mission-card p,
    .vision-card p {
        color: rgba(255, 255, 255, 0.75);
    }
    
    .mission-card .card-number,
    .vision-card .card-number {
        color: rgba(255, 255, 255, 0.02);
    }
    
    .mission-card:hover .card-number,
    .vision-card:hover .card-number {
        color: rgba(228, 161, 27, 0.04);
    }
    
    .mission-card::before,
    .vision-card::before {
        background: radial-gradient(circle at 30% 10%, rgba(228, 161, 27, 0.03), transparent 60%);
    }
}
/* ============================================ */
/* WHY CHOOSE US (ABOUT PAGE) – Premium Design  */
/* ============================================ */

.why-choose-about-section {
    padding: 100px 0;
    background: var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

/* ============================================ */
/* DECORATIVE BACKGROUND – Animated Glow Orbs   */
/* ============================================ */

.why-choose-about-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(228, 161, 27, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat 25s ease-in-out infinite;
}

.why-choose-about-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(11, 52, 114, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat 30s ease-in-out infinite reverse;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* ============================================ */
/* SECTION HEADER                               */
/* ============================================ */

.why-choose-about-section .section-header {
    margin-bottom: 50px;
    position: relative;
}

.why-choose-about-section .section-header h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 38px;
    color: var(--color-navy);
    letter-spacing: -1px;
    margin-bottom: 0;
}

.why-choose-about-section .section-header h2 .text-gold {
    background: linear-gradient(135deg, var(--color-gold), #F5B825, var(--color-gold-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animated Gold Divider */
.why-choose-about-section .section-header h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
    border-radius: var(--radius-full);
    margin: 16px auto 0;
    animation: dividerPulse 2.5s ease-in-out infinite;
}

@keyframes dividerPulse {
    0%, 100% {
        width: 70px;
        opacity: 0.5;
        box-shadow: 0 0 10px rgba(228, 161, 27, 0.1);
    }
    50% {
        width: 110px;
        opacity: 1;
        box-shadow: 0 0 30px rgba(228, 161, 27, 0.3);
    }
}

/* ============================================ */
/* WHY CARDS – Premium Glassmorphism            */
/* ============================================ */

.why-about-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: 40px 30px 35px;
    text-align: center;
    transition: var(--transition-slow);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 40px rgba(11, 52, 114, 0.04);
}

/* Premium Gold Border on Hover */
.why-about-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, transparent, var(--color-gold), var(--color-gold-hover), transparent);
    opacity: 0;
    transition: var(--transition-medium);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.why-about-card:hover::after {
    opacity: 1;
}

/* Glass Inner Glow */
.why-about-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 50% 0%, rgba(228, 161, 27, 0.04), transparent 70%);
    opacity: 0;
    transition: var(--transition-slow);
    pointer-events: none;
}

.why-about-card:hover::before {
    opacity: 1;
}

/* Card Hover – 3D Lift */
.why-about-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(228, 161, 27, 0.1);
    box-shadow: 0 30px 80px rgba(11, 52, 114, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* ============================================ */
/* ICON – Premium Gold with Glow                */
/* ============================================ */

.why-about-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(228, 161, 27, 0.12), rgba(228, 161, 27, 0.04));
    border: 2px solid rgba(228, 161, 27, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--color-gold);
    margin-bottom: 20px;
    transition: var(--transition-medium);
    position: relative;
    flex-shrink: 0;
}

/* Icon Gold Ring Glow */
.why-about-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(228, 161, 27, 0.12), transparent 70%);
    opacity: 0;
    transition: var(--transition-slow);
    z-index: -1;
}

.why-about-card:hover .why-about-icon {
    transform: scale(1.12) rotate(-8deg);
    background: linear-gradient(135deg, rgba(228, 161, 27, 0.2), rgba(228, 161, 27, 0.08));
    border-color: var(--color-gold);
    box-shadow: 0 8px 40px rgba(228, 161, 27, 0.2);
}

.why-about-card:hover .why-about-icon::after {
    opacity: 1;
    transform: scale(1.3);
}

/* Icon Pulse Animation */
.why-about-card:nth-child(1) .why-about-icon { animation: iconPulse 3.5s ease-in-out infinite; }
.why-about-card:nth-child(2) .why-about-icon { animation: iconPulse 3.8s ease-in-out infinite 0.3s; }
.why-about-card:nth-child(3) .why-about-icon { animation: iconPulse 4.1s ease-in-out infinite 0.6s; }
.why-about-card:nth-child(4) .why-about-icon { animation: iconPulse 3.3s ease-in-out infinite 0.9s; }
.why-about-card:nth-child(5) .why-about-icon { animation: iconPulse 3.6s ease-in-out infinite 1.2s; }
.why-about-card:nth-child(6) .why-about-icon { animation: iconPulse 4.2s ease-in-out infinite 1.5s; }

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

/* ============================================ */
/* CARD TEXT – Premium Typography               */
/* ============================================ */

.why-about-card h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-navy);
    margin-bottom: 12px;
    transition: var(--transition-fast);
    position: relative;
}

/* Gold Underline on Title */
.why-about-card h5::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    border-radius: var(--radius-full);
    margin: 10px auto 0;
    transition: var(--transition-medium);
}

.why-about-card:hover h5::after {
    width: 50px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
}

.why-about-card p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text-body);
    margin: 0;
    flex: 1;
}

/* ============================================ */
/* CARD NUMBER – Large Decorative               */
/* ============================================ */

.why-about-card .card-number {
    position: absolute;
    top: -5px;
    right: 12px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 56px;
    color: rgba(11, 52, 114, 0.02);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: var(--transition-medium);
}

.why-about-card:hover .card-number {
    color: rgba(228, 161, 27, 0.04);
    transform: scale(1.15);
}

/* ============================================ */
/* DECORATIVE – Gold Sparkle Dots               */
/* ============================================ */

.why-about-card .sparkle-dots {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    gap: 5px;
    opacity: 0.03;
    pointer-events: none;
}

.why-about-card .sparkle-dots span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-gold);
}

.why-about-card:hover .sparkle-dots {
    opacity: 0.08;
}

/* ============================================ */
/* RESPONSIVE – Tablet                         */
/* ============================================ */

@media (max-width: 991.98px) {
    .why-choose-about-section {
        padding: 70px 0;
    }
    
    .why-choose-about-section .section-header h2 {
        font-size: 32px;
    }
    
    .why-about-card {
        padding: 30px 22px 25px;
        border-radius: var(--radius-md);
    }
    
    .why-about-card:hover {
        transform: translateY(-8px);
    }
    
    .why-about-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }
    
    .why-about-card h5 {
        font-size: 17px;
    }
    
    .why-about-card p {
        font-size: 13px;
    }
    
    .why-about-card .card-number {
        font-size: 40px;
    }
    
    .why-about-card:nth-child(1) .why-about-icon,
    .why-about-card:nth-child(2) .why-about-icon,
    .why-about-card:nth-child(3) .why-about-icon,
    .why-about-card:nth-child(4) .why-about-icon,
    .why-about-card:nth-child(5) .why-about-icon,
    .why-about-card:nth-child(6) .why-about-icon {
        animation: none;
    }
}

/* ============================================ */
/* RESPONSIVE – Mobile                         */
/* ============================================ */

@media (max-width: 575.98px) {
    .why-choose-about-section {
        padding: 50px 0 30px;
    }
    
    .why-choose-about-section .section-header {
        margin-bottom: 35px;
    }
    
    .why-choose-about-section .section-header h2 {
        font-size: 26px;
    }
    
    .why-choose-about-section .section-header h2::after {
        width: 40px;
        height: 3px;
        animation: none;
        margin-top: 12px;
    }
    
    .why-about-card {
        padding: 25px 18px 22px;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(15px);
    }
    
    .why-about-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .why-about-card::after {
        display: none;
    }
    
    .why-about-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
        margin-bottom: 14px;
        border-width: 1.5px;
    }
    
    .why-about-card:hover .why-about-icon {
        transform: scale(1.08);
    }
    
    .why-about-card h5 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .why-about-card h5::after {
        width: 25px;
        height: 2px;
        margin-top: 8px;
    }
    
    .why-about-card:hover h5::after {
        width: 35px;
    }
    
    .why-about-card p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .why-about-card .card-number {
        font-size: 32px;
        top: -2px;
        right: 8px;
    }
    
    .why-about-card .sparkle-dots {
        display: none;
    }
    
    .row.g-4 {
        --bs-gutter-y: 1rem;
        --bs-gutter-x: 1rem;
    }
}

/* ============================================ */
/* EXTRA SMALL – 400px and below               */
/* ============================================ */

@media (max-width: 399.98px) {
    .why-choose-about-section {
        padding: 40px 0 20px;
    }
    
    .why-choose-about-section .section-header h2 {
        font-size: 22px;
    }
    
    .why-about-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .why-about-card h5 {
        font-size: 14px;
    }
    
    .why-about-card p {
        font-size: 12px;
    }
    
    .why-about-card .card-number {
        font-size: 24px;
    }
}

/* ============================================ */
/* REDUCED MOTION PREFERENCE                   */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    .why-choose-about-section::before,
    .why-choose-about-section::after {
        animation: none !important;
    }
    
    .why-choose-about-section .section-header h2::after {
        animation: none !important;
    }
    
    .why-about-card {
        transition: none !important;
    }
    
    .why-about-card:hover {
        transform: none !important;
    }
    
    .why-about-card::before,
    .why-about-card::after {
        transition: none !important;
    }
    
    .why-about-icon::after {
        transition: none !important;
    }
    
    .why-about-card:nth-child(1) .why-about-icon,
    .why-about-card:nth-child(2) .why-about-icon,
    .why-about-card:nth-child(3) .why-about-icon,
    .why-about-card:nth-child(4) .why-about-icon,
    .why-about-card:nth-child(5) .why-about-icon,
    .why-about-card:nth-child(6) .why-about-icon {
        animation: none !important;
    }
}

/* ============================================ */
/* ACCESSIBILITY – Focus States                */
/* ============================================ */

.why-about-card:focus-within {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

/* ============================================ */
/* SCROLL ANIMATION – Fade In                  */
/* ============================================ */

.why-about-card {
    opacity: 0;
    transform: translateY(30px);
    animation: whyCardAppear 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.why-about-card:nth-child(1) { animation-delay: 0.05s; }
.why-about-card:nth-child(2) { animation-delay: 0.1s; }
.why-about-card:nth-child(3) { animation-delay: 0.15s; }
.why-about-card:nth-child(4) { animation-delay: 0.2s; }
.why-about-card:nth-child(5) { animation-delay: 0.25s; }
.why-about-card:nth-child(6) { animation-delay: 0.3s; }

@keyframes whyCardAppear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .why-about-card {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* ============================================ */
/* DARK MODE SUPPORT                           */
/* ============================================ */

@media (prefers-color-scheme: dark) {
    .why-choose-about-section {
        background: var(--color-navy-dark);
    }
    
    .why-choose-about-section .section-header h2 {
        color: var(--color-white);
    }
    
    .why-about-card {
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 255, 255, 0.06);
    }
    
    .why-about-card:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(228, 161, 27, 0.1);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    }
    
    .why-about-card h5 {
        color: var(--color-white);
    }
    
    .why-about-icon {
        background: rgba(228, 161, 27, 0.08);
        border-color: rgba(228, 161, 27, 0.08);
    }
    
    .why-about-card:hover .why-about-icon {
        background: rgba(228, 161, 27, 0.15);
        border-color: var(--color-gold);
    }
    
    .why-about-card p {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .why-about-card .card-number {
        color: rgba(255, 255, 255, 0.02);
    }
    
    .why-about-card:hover .card-number {
        color: rgba(228, 161, 27, 0.04);
    }
    
    .why-about-card::before {
        background: radial-gradient(circle at 50% 0%, rgba(228, 161, 27, 0.03), transparent 70%);
    }
}
/* ============================================ */
/* BLOG LISTING SECTION – Premium Design        */
/* ============================================ */

.blog-listing-section {
    padding: 80px 0;
    background: var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

/* Decorative Background */
.blog-listing-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(228, 161, 27, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat 25s ease-in-out infinite;
}

.blog-listing-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(11, 52, 114, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat 30s ease-in-out infinite reverse;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* ============================================ */
/* SECTION HEADER                               */
/* ============================================ */

.blog-listing-section .section-header {
    margin-bottom: 50px;
    position: relative;
}

.blog-listing-section .section-header h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 38px;
    color: var(--color-navy);
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.blog-listing-section .section-header h2 .text-gold {
    background: linear-gradient(135deg, var(--color-gold), #F5B825, var(--color-gold-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gold Divider */
.blog-listing-section .section-header h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
    border-radius: var(--radius-full);
    margin: 16px auto 0;
    animation: dividerPulse 2.5s ease-in-out infinite;
}

@keyframes dividerPulse {
    0%, 100% {
        width: 70px;
        opacity: 0.5;
        box-shadow: 0 0 10px rgba(228, 161, 27, 0.1);
    }
    50% {
        width: 110px;
        opacity: 1;
        box-shadow: 0 0 30px rgba(228, 161, 27, 0.3);
    }
}

.blog-listing-section .section-header .section-subtitle {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================ */
/* BLOG CARDS – Premium Glassmorphism           */
/* ============================================ */

.blog-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-slow);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 40px rgba(11, 52, 114, 0.04);
    position: relative;
    cursor: pointer;
}

/* Gold Border on Hover */
.blog-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, transparent, var(--color-gold), var(--color-gold-hover), transparent);
    opacity: 0;
    transition: var(--transition-medium);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.blog-card:hover::after {
    opacity: 1;
}

/* Card Hover */
.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(11, 52, 114, 0.08);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(228, 161, 27, 0.1);
}

/* ============================================ */
/* BLOG CARD IMAGE                              */
/* ============================================ */

.blog-card-image {
    position: relative;
    overflow: hidden;
    padding-top: 65%;
    flex-shrink: 0;
}

.blog-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

/* Image Overlay */
.blog-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(11, 52, 114, 0.4) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: var(--transition-medium);
    z-index: 1;
}

.blog-card:hover .blog-card-image::after {
    opacity: 1;
}

/* ============================================ */
/* BLOG CATEGORY BADGE                          */
/* ============================================ */

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(228, 161, 27, 0.2);
    transition: var(--transition-fast);
}

.blog-card:hover .blog-category {
    transform: scale(1.05);
}

/* ============================================ */
/* BLOG CARD CONTENT                            */
/* ============================================ */

.blog-card-content {
    padding: 25px 25px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Blog Meta */
.blog-meta {
    display: flex;
    gap: 18px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.blog-meta span {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta span i {
    color: var(--color-gold);
    font-size: 13px;
}

/* Blog Title */
.blog-card-content h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 12px;
}

.blog-card-content h4 a {
    color: var(--color-navy);
    text-decoration: none;
    transition: var(--transition-fast);
}

.blog-card-content h4 a:hover {
    color: var(--color-gold-hover);
}

/* Blog Description */
.blog-card-content p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-body);
    margin-bottom: 18px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================ */
/* READ MORE BUTTON                             */
/* ============================================ */

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-navy);
    text-decoration: none;
    transition: var(--transition-medium);
    padding: 8px 0;
    position: relative;
}

.btn-read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
    transition: var(--transition-medium);
}

.btn-read-more:hover {
    color: var(--color-gold-hover);
}

.btn-read-more:hover::after {
    width: 100%;
}

.btn-read-more i {
    transition: var(--transition-fast);
}

.btn-read-more:hover i {
    transform: translateX(5px);
}

/* ============================================ */
/* RESPONSIVE – Tablet                         */
/* ============================================ */

@media (max-width: 991.98px) {
    .blog-listing-section {
        padding: 60px 0;
    }
    
    .blog-listing-section .section-header h2 {
        font-size: 32px;
    }
    
    .blog-card-content {
        padding: 20px 20px 25px;
    }
    
    .blog-card-content h4 {
        font-size: 17px;
    }
    
    .blog-meta {
        gap: 12px;
    }
}

/* ============================================ */
/* RESPONSIVE – Mobile                         */
/* ============================================ */

@media (max-width: 575.98px) {
    .blog-listing-section {
        padding: 50px 0 30px;
    }
    
    .blog-listing-section .section-header {
        margin-bottom: 35px;
    }
    
    .blog-listing-section .section-header h2 {
        font-size: 26px;
    }
    
    .blog-listing-section .section-header h2::after {
        width: 40px;
        height: 3px;
        animation: none;
        margin-top: 12px;
    }
    
    .blog-listing-section .section-header .section-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .blog-card {
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.92);
    }
    
    .blog-card:hover {
        transform: translateY(-6px);
    }
    
    .blog-card::after {
        display: none;
    }
    
    .blog-card-image {
        padding-top: 60%;
    }
    
    .blog-card-content {
        padding: 18px 16px 22px;
    }
    
    .blog-card-content h4 {
        font-size: 16px;
    }
    
    .blog-card-content p {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
    
    .blog-meta span {
        font-size: 11px;
    }
    
    .blog-category {
        font-size: 10px;
        padding: 3px 12px;
        top: 12px;
        left: 12px;
    }
    
    .btn-read-more {
        font-size: 13px;
    }
}

/* ============================================ */
/* EXTRA SMALL – 400px and below               */
/* ============================================ */

@media (max-width: 399.98px) {
    .blog-listing-section {
        padding: 40px 0 20px;
    }
    
    .blog-listing-section .section-header h2 {
        font-size: 22px;
    }
    
    .blog-card-content h4 {
        font-size: 15px;
    }
    
    .blog-card-content p {
        font-size: 12px;
    }
    
    .blog-meta {
        gap: 8px;
    }
    
    .blog-meta span {
        font-size: 10px;
    }
}

/* ============================================ */
/* REDUCED MOTION PREFERENCE                   */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    .blog-listing-section::before,
    .blog-listing-section::after {
        animation: none !important;
    }
    
    .blog-listing-section .section-header h2::after {
        animation: none !important;
    }
    
    .blog-card {
        transition: none !important;
    }
    
    .blog-card:hover {
        transform: none !important;
    }
    
    .blog-card::after {
        transition: none !important;
    }
    
    .blog-card-image img {
        transition: none !important;
    }
    
    .blog-card:hover .blog-card-image img {
        transform: none !important;
    }
    
    .btn-read-more {
        transition: none !important;
    }
    
    .btn-read-more i {
        transition: none !important;
    }
}

/* ============================================ */
/* DARK MODE SUPPORT                           */
/* ============================================ */

@media (prefers-color-scheme: dark) {
    .blog-listing-section {
        background: var(--color-navy-dark);
    }
    
    .blog-listing-section .section-header h2 {
        color: var(--color-white);
    }
    
    .blog-listing-section .section-header .section-subtitle {
        color: rgba(255, 255, 255, 0.6);
    }
    
    .blog-card {
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 255, 255, 0.06);
    }
    
    .blog-card:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(228, 161, 27, 0.1);
    }
    
    .blog-card-content h4 a {
        color: var(--color-white);
    }
    
    .blog-card-content h4 a:hover {
        color: var(--color-gold);
    }
    
    .blog-card-content p {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .blog-meta span {
        color: rgba(255, 255, 255, 0.4);
    }
    
    .btn-read-more {
        color: var(--color-white);
    }
    
    .btn-read-more:hover {
        color: var(--color-gold);
    }
    
    .blog-category {
        background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
        color: var(--color-navy);
    }
}

/* ============================================ */
/* SCROLL ANIMATION – Fade In                  */
/* ============================================ */

.blog-card {
    opacity: 0;
    transform: translateY(30px);
    animation: cardAppear 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.blog-card:nth-child(1) { animation-delay: 0.05s; }
.blog-card:nth-child(2) { animation-delay: 0.1s; }
.blog-card:nth-child(3) { animation-delay: 0.15s; }
.blog-card:nth-child(4) { animation-delay: 0.2s; }
.blog-card:nth-child(5) { animation-delay: 0.25s; }
.blog-card:nth-child(6) { animation-delay: 0.3s; }

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .blog-card {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* ============================================ */
/* GALLERY SECTION – Premium Design             */
/* ============================================ */

.gallery-section {
    padding: 80px 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.gallery-section .section-header {
    margin-bottom: 50px;
}

.gallery-section .section-header h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 38px;
    color: var(--color-navy);
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.gallery-section .section-header h2 .text-gold {
    background: linear-gradient(135deg, var(--color-gold), #F5B825, var(--color-gold-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-section .section-header h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
    border-radius: var(--radius-full);
    margin: 16px auto 0;
    animation: dividerPulse 2.5s ease-in-out infinite;
}

.gallery-section .section-header .section-subtitle {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================ */
/* GALLERY GRID ITEMS                           */
/* ============================================ */

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(11, 52, 114, 0.04);
    transition: var(--transition-medium);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(11, 52, 114, 0.08);
}

.gallery-image-wrapper {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
}

.gallery-image-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover .gallery-image-wrapper img {
    transform: scale(1.08);
}

/* ============================================ */
/* GALLERY OVERLAY                              */
/* ============================================ */

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(11, 52, 114, 0.85) 0%,
        rgba(11, 52, 114, 0.40) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    text-align: center;
    color: var(--color-white);
    padding: 20px;
    transform: translateY(20px);
    transition: var(--transition-medium);
}

.gallery-item:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-overlay-content i {
    font-size: 32px;
    color: var(--color-gold);
    margin-bottom: 10px;
    display: block;
}

.gallery-overlay-content h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
}

.gallery-overlay-content p {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ============================================ */
/* GALLERY CAPTION                              */
/* ============================================ */

.gallery-caption {
    padding: 14px 16px 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.gallery-caption h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--color-navy);
    margin: 0;
}

.gallery-caption small {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--color-text-light);
}

/* ============================================ */
/* GALLERY MODAL / LIGHTBOX                     */
/* ============================================ */

.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    animation: modalFade 0.3s ease;
}

@keyframes modalFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.gallery-modal-content {
    position: relative;
    margin: 5% auto;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-modal-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-md);
    object-fit: contain;
    animation: modalZoom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.gallery-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--color-white);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-fast);
    line-height: 1;
}

.gallery-modal-close:hover {
    color: var(--color-gold);
    transform: rotate(90deg);
}

.gallery-modal-caption {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body);
    font-size: 16px;
    margin-top: 16px;
    text-align: center;
    max-width: 80%;
}

/* ============================================ */
/* RESPONSIVE – Gallery                         */
/* ============================================ */

@media (max-width: 575.98px) {
    .gallery-section {
        padding: 50px 0 30px;
    }
    
    .gallery-section .section-header h2 {
        font-size: 26px;
    }
    
    .gallery-section .section-header h2::after {
        width: 40px;
        height: 3px;
        animation: none;
    }
    
    .gallery-section .section-header .section-subtitle {
        font-size: 14px;
    }
    
    .gallery-image-wrapper {
        padding-top: 65%;
    }
    
    .gallery-overlay-content h6 {
        font-size: 14px;
    }
    
    .gallery-overlay-content p {
        font-size: 12px;
    }
    
    .gallery-caption h6 {
        font-size: 14px;
    }
    
    .gallery-caption small {
        font-size: 11px;
    }
    
    .gallery-modal-content {
        margin: 10% auto;
        max-width: 95%;
    }
    
    .gallery-modal-close {
        top: -30px;
        font-size: 30px;
    }
    
    .gallery-modal-caption {
        font-size: 14px;
    }
}

/* ============================================ */
/* DARK MODE – Gallery                          */
/* ============================================ */

@media (prefers-color-scheme: dark) {
    .gallery-section {
        background: var(--color-navy-dark);
    }
    
    .gallery-section .section-header h2 {
        color: var(--color-white);
    }
    
    .gallery-section .section-header .section-subtitle {
        color: rgba(255, 255, 255, 0.6);
    }
    
    .gallery-caption {
        background: rgba(255, 255, 255, 0.06);
    }
    
    .gallery-caption h6 {
        color: var(--color-white);
    }
    
    .gallery-caption small {
        color: rgba(255, 255, 255, 0.4);
    }
}

/* ============================================ */
/* SERVICE OVERVIEW SECTION – Premium Design    */
/* ============================================ */

.service-overview-section {
    padding: 80px 0 60px;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* Decorative Background */
.service-overview-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(228, 161, 27, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat 25s ease-in-out infinite;
}

.service-overview-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(11, 52, 114, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat 30s ease-in-out infinite reverse;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -20px) scale(1.1);
    }
}

/* ============================================ */
/* OVERVIEW CONTAINER – Glassmorphism           */
/* ============================================ */

.service-overview-section .overview-wrapper {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    padding: 50px 60px;
    box-shadow: 0 20px 60px rgba(11, 52, 114, 0.04);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

/* Glass Inner Glow */
.service-overview-section .overview-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at 30% 20%, rgba(228, 161, 27, 0.03), transparent 60%);
    pointer-events: none;
}

/* Gold Border on Hover */
.service-overview-section .overview-wrapper::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: linear-gradient(135deg, transparent, var(--color-gold), var(--color-gold-hover), transparent);
    opacity: 0;
    transition: var(--transition-medium);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.service-overview-section .overview-wrapper:hover::after {
    opacity: 1;
}

.service-overview-section .overview-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(11, 52, 114, 0.06);
}

/* ============================================ */
/* GOLD DIVIDER – Top Accent Line               */
/* ============================================ */

.service-overview-section .gold-divider-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.2;
    z-index: 3;
}

/* ============================================ */
/* GOLD CORNER ACCENTS                          */
/* ============================================ */

.service-overview-section .corner-accent {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--color-gold);
    opacity: 0.08;
    pointer-events: none;
    transition: var(--transition-medium);
}

.service-overview-section .overview-wrapper:hover .corner-accent {
    opacity: 0.15;
}

.service-overview-section .corner-accent.tl {
    top: 12px;
    left: 12px;
    border-right: none;
    border-bottom: none;
    border-radius: var(--radius-sm) 0 0 0;
}

.service-overview-section .corner-accent.tr {
    top: 12px;
    right: 12px;
    border-left: none;
    border-bottom: none;
    border-radius: 0 var(--radius-sm) 0 0;
}

.service-overview-section .corner-accent.bl {
    bottom: 12px;
    left: 12px;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 var(--radius-sm);
}

.service-overview-section .corner-accent.br {
    bottom: 12px;
    right: 12px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 var(--radius-sm) 0;
}

/* ============================================ */
/* ICON BADGE                                   */
/* ============================================ */

.service-overview-section .icon-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(228, 161, 27, 0.1), rgba(228, 161, 27, 0.04));
    border: 1px solid rgba(228, 161, 27, 0.12);
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.service-overview-section .icon-badge i {
    font-size: 14px;
}

/* ============================================ */
/* HEADING – Premium Styling                    */
/* ============================================ */

.service-overview-section h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 32px;
    color: var(--color-navy);
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

/* Gold Highlight on "Service" word */
.service-overview-section h2 .text-gold {
    background: linear-gradient(135deg, var(--color-gold), #F5B825, var(--color-gold-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animated Gold Underline */
.service-overview-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
    border-radius: var(--radius-full);
    margin-top: 14px;
    animation: underlinePulse 2.5s ease-in-out infinite;
}

@keyframes underlinePulse {
    0%, 100% {
        width: 60px;
        opacity: 0.5;
        box-shadow: 0 0 10px rgba(228, 161, 27, 0.1);
    }
    50% {
        width: 100px;
        opacity: 1;
        box-shadow: 0 0 30px rgba(228, 161, 27, 0.2);
    }
}

/* ============================================ */
/* PARAGRAPH – Premium Typography               */
/* ============================================ */

.service-overview-section p {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.9;
    color: var(--color-text-body);
    margin: 0;
    letter-spacing: 0.2px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid rgba(228, 161, 27, 0.2);
}

/* ============================================ */
/* RESPONSIVE – Tablet                         */
/* ============================================ */

@media (max-width: 991.98px) {
    .service-overview-section {
        padding: 60px 0 40px;
    }
    
    .service-overview-section .overview-wrapper {
        padding: 40px 35px;
        border-radius: var(--radius-lg);
        margin: 0 15px;
    }
    
    .service-overview-section h2 {
        font-size: 28px;
    }
    
    .service-overview-section p {
        font-size: 16px;
        padding-left: 16px;
    }
    
    .service-overview-section .corner-accent {
        display: none;
    }
    
    .service-overview-section .icon-badge {
        font-size: 11px;
        padding: 5px 16px;
    }
}

/* ============================================ */
/* RESPONSIVE – Mobile                         */
/* ============================================ */

@media (max-width: 575.98px) {
    .service-overview-section {
        padding: 50px 0 30px;
    }
    
    .service-overview-section .overview-wrapper {
        padding: 28px 18px 25px;
        border-radius: var(--radius-md);
        backdrop-filter: blur(20px);
        margin: 0 10px;
    }
    
    .service-overview-section .overview-wrapper:hover {
        transform: none;
    }
    
    .service-overview-section .overview-wrapper::after {
        display: none;
    }
    
    .service-overview-section .gold-divider-line {
        display: none;
    }
    
    .service-overview-section .corner-accent {
        display: none !important;
    }
    
    .service-overview-section .icon-badge {
        font-size: 10px;
        padding: 4px 14px;
        margin-bottom: 14px;
        letter-spacing: 1px;
    }
    
    .service-overview-section .icon-badge i {
        font-size: 12px;
    }
    
    .service-overview-section h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .service-overview-section h2::after {
        width: 40px;
        height: 3px;
        margin-top: 10px;
        animation: none;
    }
    
    .service-overview-section p {
        font-size: 15px;
        line-height: 1.8;
        padding-left: 12px;
        border-left-width: 2px;
    }
}

/* ============================================ */
/* EXTRA SMALL – 400px and below               */
/* ============================================ */

@media (max-width: 399.98px) {
    .service-overview-section {
        padding: 40px 0 20px;
    }
    
    .service-overview-section .overview-wrapper {
        padding: 20px 14px 18px;
    }
    
    .service-overview-section h2 {
        font-size: 20px;
    }
    
    .service-overview-section p {
        font-size: 14px;
        padding-left: 10px;
    }
}

/* ============================================ */
/* REDUCED MOTION PREFERENCE                   */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    .service-overview-section::before,
    .service-overview-section::after {
        animation: none !important;
    }
    
    .service-overview-section .overview-wrapper {
        transition: none !important;
    }
    
    .service-overview-section .overview-wrapper:hover {
        transform: none !important;
    }
    
    .service-overview-section .overview-wrapper::after {
        transition: none !important;
    }
    
    .service-overview-section h2::after {
        animation: none !important;
    }
    
    .service-overview-section .corner-accent {
        transition: none !important;
    }
}

/* ============================================ */
/* DARK MODE SUPPORT                           */
/* ============================================ */

@media (prefers-color-scheme: dark) {
    .service-overview-section {
        background: var(--color-navy-dark);
    }
    
    .service-overview-section .overview-wrapper {
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 255, 255, 0.06);
    }
    
    .service-overview-section .overview-wrapper:hover {
        border-color: rgba(228, 161, 27, 0.1);
    }
    
    .service-overview-section h2 {
        color: var(--color-white);
    }
    
    .service-overview-section p {
        color: rgba(255, 255, 255, 0.7);
        border-left-color: rgba(228, 161, 27, 0.1);
    }
    
    .service-overview-section .icon-badge {
        background: rgba(228, 161, 27, 0.08);
        border-color: rgba(228, 161, 27, 0.08);
    }
    
    .service-overview-section .corner-accent {
        border-color: var(--color-gold);
        opacity: 0.04;
    }
    
    .service-overview-section .overview-wrapper:hover .corner-accent {
        opacity: 0.08;
    }
    
    .service-overview-section .gold-divider-line {
        background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
        opacity: 0.1;
    }
}

/* ============================================ */
/* SCROLL ANIMATION – Fade In                  */
/* ============================================ */

.service-overview-section .overview-wrapper {
    opacity: 0;
    transform: translateY(30px);
    animation: overviewAppear 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes overviewAppear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-overview-section .overview-wrapper {
        opacity: 1;
        transform: none;
        animation: none;
    }
}
/* ============================================ */
/* SERVICE RESPONSIBILITIES SECTION             */
/* ============================================ */

.service-responsibilities-section {
    padding: 80px 0;
    background: var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

/* Decorative Background */
.service-responsibilities-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(228, 161, 27, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat 25s ease-in-out infinite;
}

.service-responsibilities-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(11, 52, 114, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat 30s ease-in-out infinite reverse;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -20px) scale(1.1);
    }
}

/* ============================================ */
/* SECTION HEADER                               */
/* ============================================ */

.service-responsibilities-section .section-header {
    margin-bottom: 50px;
    position: relative;
}

.service-responsibilities-section .section-header h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 36px;
    color: var(--color-navy);
    letter-spacing: -1px;
    margin-bottom: 0;
}

.service-responsibilities-section .section-header h2 .text-gold {
    background: linear-gradient(135deg, var(--color-gold), #F5B825, var(--color-gold-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gold Divider */
.service-responsibilities-section .section-header h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
    border-radius: var(--radius-full);
    margin: 16px auto 0;
    animation: dividerPulse 2.5s ease-in-out infinite;
}

@keyframes dividerPulse {
    0%, 100% {
        width: 70px;
        opacity: 0.5;
        box-shadow: 0 0 10px rgba(228, 161, 27, 0.1);
    }
    50% {
        width: 110px;
        opacity: 1;
        box-shadow: 0 0 30px rgba(228, 161, 27, 0.3);
    }
}

/* ============================================ */
/* CONTENT WRAPPER                              */
/* ============================================ */

.service-responsibilities-section .content-wrapper {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    padding: 50px 50px;
    box-shadow: 0 20px 60px rgba(11, 52, 114, 0.04);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

/* Glass Inner Glow */
.service-responsibilities-section .content-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at 30% 20%, rgba(228, 161, 27, 0.03), transparent 60%);
    pointer-events: none;
}

/* Gold Border on Hover */
.service-responsibilities-section .content-wrapper::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: linear-gradient(135deg, transparent, var(--color-gold), var(--color-gold-hover), transparent);
    opacity: 0;
    transition: var(--transition-medium);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.service-responsibilities-section .content-wrapper:hover::after {
    opacity: 1;
}

.service-responsibilities-section .content-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(11, 52, 114, 0.06);
}

/* ============================================ */
/* GOLD CORNER ACCENTS                          */
/* ============================================ */

.service-responsibilities-section .corner-accent {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--color-gold);
    opacity: 0.08;
    pointer-events: none;
    transition: var(--transition-medium);
}

.service-responsibilities-section .content-wrapper:hover .corner-accent {
    opacity: 0.15;
}

.service-responsibilities-section .corner-accent.tl {
    top: 12px;
    left: 12px;
    border-right: none;
    border-bottom: none;
    border-radius: var(--radius-sm) 0 0 0;
}

.service-responsibilities-section .corner-accent.tr {
    top: 12px;
    right: 12px;
    border-left: none;
    border-bottom: none;
    border-radius: 0 var(--radius-sm) 0 0;
}

.service-responsibilities-section .corner-accent.bl {
    bottom: 12px;
    left: 12px;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 var(--radius-sm);
}

.service-responsibilities-section .corner-accent.br {
    bottom: 12px;
    right: 12px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 var(--radius-sm) 0;
}

/* ============================================ */
/* RESPONSIBILITIES LIST – Left Side            */
/* ============================================ */

.responsibilities-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.responsibilities-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-body);
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-sm);
    transition: var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.responsibilities-list li:hover {
    background: rgba(228, 161, 27, 0.04);
    border-color: rgba(228, 161, 27, 0.1);
    transform: translateX(8px);
}

.responsibilities-list li i {
    font-size: 20px;
    color: var(--color-gold);
    margin-top: 2px;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.responsibilities-list li:hover i {
    transform: scale(1.2);
}

/* ============================================ */
/* IMAGE – Right Side                           */
/* ============================================ */

.responsibilities-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(11, 52, 114, 0.08);
    transition: var(--transition-medium);
    height: 100%;
    min-height: 300px;
}

.responsibilities-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

.responsibilities-image:hover img {
    transform: scale(1.05);
}

/* Image Overlay with Gold Border */
.responsibilities-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-gold);
    opacity: 0;
    transition: var(--transition-medium);
    pointer-events: none;
}

.responsibilities-image:hover::after {
    opacity: 0.2;
}

/* Image Badge */
.responsibilities-image .image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: badgeFloat 3s ease-in-out infinite;
}

.responsibilities-image .image-badge i {
    font-size: 20px;
    color: var(--color-gold);
    background: rgba(228, 161, 27, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.responsibilities-image .image-badge .badge-text {
    display: flex;
    flex-direction: column;
}

.responsibilities-image .image-badge .badge-text strong {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--color-text-heading);
}

.responsibilities-image .image-badge .badge-text small {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--color-text-light);
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* ============================================ */
/* RESPONSIVE – Tablet                         */
/* ============================================ */

@media (max-width: 991.98px) {
    .service-responsibilities-section {
        padding: 60px 0;
    }
    
    .service-responsibilities-section .section-header h2 {
        font-size: 30px;
    }
    
    .service-responsibilities-section .content-wrapper {
        padding: 35px 30px;
        border-radius: var(--radius-lg);
        margin: 0 15px;
    }
    
    .service-responsibilities-section .corner-accent {
        display: none;
    }
    
    .responsibilities-list li {
        font-size: 15px;
        padding: 10px 14px;
    }
    
    .responsibilities-image {
        min-height: 250px;
        margin-top: 30px;
    }
    
    .responsibilities-image .image-badge {
        bottom: 14px;
        left: 14px;
        right: 14px;
        padding: 10px 14px;
    }
}

/* ============================================ */
/* RESPONSIVE – Mobile                         */
/* ============================================ */

@media (max-width: 575.98px) {
    .service-responsibilities-section {
        padding: 50px 0 30px;
    }
    
    .service-responsibilities-section .section-header {
        margin-bottom: 35px;
    }
    
    .service-responsibilities-section .section-header h2 {
        font-size: 24px;
    }
    
    .service-responsibilities-section .section-header h2::after {
        width: 40px;
        height: 3px;
        animation: none;
        margin-top: 12px;
    }
    
    .service-responsibilities-section .content-wrapper {
        padding: 25px 16px 20px;
        border-radius: var(--radius-md);
        backdrop-filter: blur(15px);
        margin: 0 10px;
    }
    
    .service-responsibilities-section .content-wrapper:hover {
        transform: none;
    }
    
    .service-responsibilities-section .content-wrapper::after {
        display: none;
    }
    
    .responsibilities-list {
        gap: 10px;
    }
    
    .responsibilities-list li {
        font-size: 14px;
        padding: 10px 12px;
        gap: 12px;
        border-radius: var(--radius-sm);
    }
    
    .responsibilities-list li:hover {
        transform: translateX(4px);
    }
    
    .responsibilities-list li i {
        font-size: 17px;
    }
    
    .responsibilities-image {
        min-height: 200px;
        margin-top: 25px;
        border-radius: var(--radius-md);
    }
    
    .responsibilities-image .image-badge {
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 8px 12px;
        gap: 10px;
        animation: none;
    }
    
    .responsibilities-image .image-badge i {
        font-size: 16px;
        width: 32px;
        height: 32px;
    }
    
    .responsibilities-image .image-badge .badge-text strong {
        font-size: 12px;
    }
    
    .responsibilities-image .image-badge .badge-text small {
        font-size: 10px;
    }
}

/* ============================================ */
/* EXTRA SMALL – 400px and below               */
/* ============================================ */

@media (max-width: 399.98px) {
    .service-responsibilities-section {
        padding: 40px 0 20px;
    }
    
    .service-responsibilities-section .section-header h2 {
        font-size: 20px;
    }
    
    .service-responsibilities-section .content-wrapper {
        padding: 20px 12px 16px;
    }
    
    .responsibilities-list li {
        font-size: 13px;
        padding: 8px 10px;
        gap: 10px;
    }
    
    .responsibilities-list li i {
        font-size: 15px;
    }
    
    .responsibilities-image {
        min-height: 160px;
    }
}

/* ============================================ */
/* REDUCED MOTION PREFERENCE                   */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    .service-responsibilities-section::before,
    .service-responsibilities-section::after {
        animation: none !important;
    }
    
    .service-responsibilities-section .section-header h2::after {
        animation: none !important;
    }
    
    .service-responsibilities-section .content-wrapper {
        transition: none !important;
    }
    
    .service-responsibilities-section .content-wrapper:hover {
        transform: none !important;
    }
    
    .service-responsibilities-section .content-wrapper::after {
        transition: none !important;
    }
    
    .responsibilities-list li {
        transition: none !important;
    }
    
    .responsibilities-list li:hover {
        transform: none !important;
    }
    
    .responsibilities-image img {
        transition: none !important;
    }
    
    .responsibilities-image .image-badge {
        animation: none !important;
    }
}

/* ============================================ */
/* DARK MODE SUPPORT                           */
/* ============================================ */

@media (prefers-color-scheme: dark) {
    .service-responsibilities-section {
        background: var(--color-navy-dark);
    }
    
    .service-responsibilities-section .section-header h2 {
        color: var(--color-white);
    }
    
    .service-responsibilities-section .content-wrapper {
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 255, 255, 0.06);
    }
    
    .service-responsibilities-section .content-wrapper:hover {
        border-color: rgba(228, 161, 27, 0.1);
    }
    
    .responsibilities-list li {
        color: rgba(255, 255, 255, 0.7);
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 255, 255, 0.03);
    }
    
    .responsibilities-list li:hover {
        background: rgba(228, 161, 27, 0.04);
        border-color: rgba(228, 161, 27, 0.08);
    }
    
    .responsibilities-list li i {
        color: var(--color-gold);
    }
    
    .responsibilities-image .image-badge {
        background: rgba(8, 38, 82, 0.9);
        border-color: rgba(255, 255, 255, 0.05);
    }
    
    .responsibilities-image .image-badge .badge-text strong {
        color: var(--color-white);
    }
    
    .responsibilities-image .image-badge .badge-text small {
        color: rgba(255, 255, 255, 0.4);
    }
    
    .responsibilities-image .image-badge i {
        background: rgba(228, 161, 27, 0.1);
    }
}

/* ============================================ */
/* SCROLL ANIMATION – Fade In                  */
/* ============================================ */

.service-responsibilities-section .content-wrapper {
    opacity: 0;
    transform: translateY(30px);
    animation: contentAppear 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes contentAppear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-responsibilities-section .content-wrapper {
        opacity: 1;
        transform: none;
        animation: none;
    }
}
/* ============================================ */
/* WHY HIRE SECTION – Premium Design            */
/* ============================================ */

.service-why-hire-section {
    padding: 80px 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* Decorative Background */
.service-why-hire-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(228, 161, 27, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat 25s ease-in-out infinite;
}

.service-why-hire-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    right: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(11, 52, 114, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat 30s ease-in-out infinite reverse;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -20px) scale(1.1);
    }
}

/* ============================================ */
/* SECTION HEADER                               */
/* ============================================ */

.service-why-hire-section .section-header {
    margin-bottom: 50px;
    position: relative;
}

.service-why-hire-section .section-header h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 36px;
    color: var(--color-navy);
    letter-spacing: -1px;
    margin-bottom: 0;
}

.service-why-hire-section .section-header h2 .text-gold {
    background: linear-gradient(135deg, var(--color-gold), #F5B825, var(--color-gold-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gold Divider */
.service-why-hire-section .section-header h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
    border-radius: var(--radius-full);
    margin: 16px auto 0;
    animation: dividerPulse 2.5s ease-in-out infinite;
}

@keyframes dividerPulse {
    0%, 100% {
        width: 70px;
        opacity: 0.5;
        box-shadow: 0 0 10px rgba(228, 161, 27, 0.1);
    }
    50% {
        width: 110px;
        opacity: 1;
        box-shadow: 0 0 30px rgba(228, 161, 27, 0.3);
    }
}

/* ============================================ */
/* WHY HIRE CARDS – Premium Design              */
/* ============================================ */

.why-hire-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: 25px 28px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(11, 52, 114, 0.04);
    height: 100%;
    cursor: pointer;
}

/* Gold Border on Hover */
.why-hire-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, transparent, var(--color-gold), var(--color-gold-hover), transparent);
    opacity: 0;
    transition: var(--transition-medium);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.why-hire-card:hover::after {
    opacity: 1;
}

/* Glass Inner Glow */
.why-hire-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 0% 50%, rgba(228, 161, 27, 0.03), transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: var(--transition-slow);
}

.why-hire-card:hover::before {
    opacity: 1;
}

/* Card Hover */
.why-hire-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(228, 161, 27, 0.08);
    box-shadow: 0 20px 60px rgba(11, 52, 114, 0.08);
}

/* ============================================ */
/* ICON – Gold Checkmark                        */
/* ============================================ */

.why-hire-card i {
    font-size: 24px;
    color: var(--color-gold);
    margin-top: 2px;
    flex-shrink: 0;
    transition: var(--transition-medium);
    background: rgba(228, 161, 27, 0.08);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(228, 161, 27, 0.08);
}

.why-hire-card:hover i {
    transform: scale(1.15) rotate(-5deg);
    background: rgba(228, 161, 27, 0.15);
    border-color: rgba(228, 161, 27, 0.2);
    box-shadow: 0 8px 30px rgba(228, 161, 27, 0.1);
}

/* ============================================ */
/* TEXT                                         */
/* ============================================ */

.why-hire-card p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-body);
    margin: 0;
    flex: 1;
}

/* ============================================ */
/* CARD NUMBER – Decorative                     */
/* ============================================ */

.why-hire-card .card-index {
    position: absolute;
    bottom: 8px;
    right: 14px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 32px;
    color: rgba(11, 52, 114, 0.02);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: var(--transition-medium);
}

.why-hire-card:hover .card-index {
    color: rgba(228, 161, 27, 0.04);
    transform: scale(1.1);
}

/* ============================================ */
/* DECORATIVE GOLD DOTS                         */
/* ============================================ */

.why-hire-card .gold-dots {
    position: absolute;
    top: 12px;
    right: 14px;
    display: flex;
    gap: 4px;
    opacity: 0.03;
    pointer-events: none;
}

.why-hire-card .gold-dots span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-gold);
}

.why-hire-card:hover .gold-dots {
    opacity: 0.08;
}

/* ============================================ */
/* RESPONSIVE – Tablet                         */
/* ============================================ */

@media (max-width: 991.98px) {
    .service-why-hire-section {
        padding: 60px 0;
    }
    
    .service-why-hire-section .section-header h2 {
        font-size: 30px;
    }
    
    .why-hire-card {
        padding: 20px 22px;
        border-radius: var(--radius-md);
    }
    
    .why-hire-card i {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
    
    .why-hire-card p {
        font-size: 14px;
    }
    
    .why-hire-card .card-index {
        font-size: 26px;
    }
}

/* ============================================ */
/* RESPONSIVE – Mobile                         */
/* ============================================ */

@media (max-width: 575.98px) {
    .service-why-hire-section {
        padding: 50px 0 30px;
    }
    
    .service-why-hire-section .section-header {
        margin-bottom: 35px;
    }
    
    .service-why-hire-section .section-header h2 {
        font-size: 24px;
    }
    
    .service-why-hire-section .section-header h2::after {
        width: 40px;
        height: 3px;
        animation: none;
        margin-top: 12px;
    }
    
    .why-hire-card {
        padding: 18px 16px;
        border-radius: var(--radius-md);
        gap: 14px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(15px);
    }
    
    .why-hire-card:hover {
        transform: translateY(-4px);
    }
    
    .why-hire-card::after {
        display: none;
    }
    
    .why-hire-card i {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }
    
    .why-hire-card:hover i {
        transform: scale(1.1);
    }
    
    .why-hire-card p {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .why-hire-card .card-index {
        font-size: 22px;
        bottom: 4px;
        right: 10px;
    }
    
    .why-hire-card .gold-dots {
        display: none;
    }
    
    .row.g-4 {
        --bs-gutter-y: 1rem;
        --bs-gutter-x: 1rem;
    }
}

/* ============================================ */
/* EXTRA SMALL – 400px and below               */
/* ============================================ */

@media (max-width: 399.98px) {
    .service-why-hire-section {
        padding: 40px 0 20px;
    }
    
    .service-why-hire-section .section-header h2 {
        font-size: 20px;
    }
    
    .why-hire-card {
        padding: 14px 12px;
        gap: 12px;
    }
    
    .why-hire-card i {
        width: 28px;
        height: 28px;
        font-size: 15px;
    }
    
    .why-hire-card p {
        font-size: 13px;
    }
    
    .why-hire-card .card-index {
        font-size: 18px;
    }
}

/* ============================================ */
/* REDUCED MOTION PREFERENCE                   */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    .service-why-hire-section::before,
    .service-why-hire-section::after {
        animation: none !important;
    }
    
    .service-why-hire-section .section-header h2::after {
        animation: none !important;
    }
    
    .why-hire-card {
        transition: none !important;
    }
    
    .why-hire-card:hover {
        transform: none !important;
    }
    
    .why-hire-card::after {
        transition: none !important;
    }
    
    .why-hire-card::before {
        transition: none !important;
    }
    
    .why-hire-card i {
        transition: none !important;
    }
    
    .why-hire-card:hover i {
        transform: none !important;
    }
}

/* ============================================ */
/* SCROLL ANIMATION – Fade In                  */
/* ============================================ */

.why-hire-card {
    opacity: 0;
    transform: translateY(30px);
    animation: cardAppear 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.why-hire-card:nth-child(1) { animation-delay: 0.05s; }
.why-hire-card:nth-child(2) { animation-delay: 0.1s; }
.why-hire-card:nth-child(3) { animation-delay: 0.15s; }
.why-hire-card:nth-child(4) { animation-delay: 0.2s; }
.why-hire-card:nth-child(5) { animation-delay: 0.25s; }
.why-hire-card:nth-child(6) { animation-delay: 0.3s; }

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .why-hire-card {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* ============================================ */
/* DARK MODE SUPPORT                           */
/* ============================================ */

@media (prefers-color-scheme: dark) {
    .service-why-hire-section {
        background: var(--color-navy-dark);
    }
    
    .service-why-hire-section .section-header h2 {
        color: var(--color-white);
    }
    
    .why-hire-card {
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 255, 255, 0.06);
    }
    
    .why-hire-card:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(228, 161, 27, 0.08);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }
    
    .why-hire-card p {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .why-hire-card i {
        background: rgba(228, 161, 27, 0.08);
        border-color: rgba(228, 161, 27, 0.06);
    }
    
    .why-hire-card:hover i {
        background: rgba(228, 161, 27, 0.15);
        border-color: rgba(228, 161, 27, 0.15);
    }
    
    .why-hire-card .card-index {
        color: rgba(255, 255, 255, 0.02);
    }
    
    .why-hire-card:hover .card-index {
        color: rgba(228, 161, 27, 0.04);
    }
}
/* ============================================ */
/* HIRING PROCESS SECTION – Premium Design      */
/* ============================================ */

.service-hiring-process-section {
    padding: 80px 0;
    background: var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

/* Decorative Background */
.service-hiring-process-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(228, 161, 27, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat 25s ease-in-out infinite;
}

.service-hiring-process-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(11, 52, 114, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat 30s ease-in-out infinite reverse;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -20px) scale(1.1);
    }
}

/* ============================================ */
/* SECTION HEADER                               */
/* ============================================ */

.service-hiring-process-section .section-header {
    margin-bottom: 50px;
    position: relative;
}

.service-hiring-process-section .section-header h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 36px;
    color: var(--color-navy);
    letter-spacing: -1px;
    margin-bottom: 0;
}

.service-hiring-process-section .section-header h2 .text-gold {
    background: linear-gradient(135deg, var(--color-gold), #F5B825, var(--color-gold-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-hiring-process-section .section-header h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
    border-radius: var(--radius-full);
    margin: 16px auto 0;
    animation: dividerPulse 2.5s ease-in-out infinite;
}

@keyframes dividerPulse {
    0%, 100% {
        width: 70px;
        opacity: 0.5;
        box-shadow: 0 0 10px rgba(228, 161, 27, 0.1);
    }
    50% {
        width: 110px;
        opacity: 1;
        box-shadow: 0 0 30px rgba(228, 161, 27, 0.3);
    }
}

/* ============================================ */
/* ROW – 3 Cards Flex Layout                    */
/* ============================================ */

.hiring-steps-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    position: relative;
}

/* ============================================ */
/* CARD COLUMN – Equal Width                    */
/* ============================================ */

.hiring-step-col {
    display: flex;
    flex: 1 1 30%;
    max-width: 32%;
    margin: 0 1%;
    position: relative;
}

/* ============================================ */
/* HIRING STEP CARDS – Premium Glass            */
/* ============================================ */

.hiring-step-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: 40px 28px 35px;
    text-align: center;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 8px 40px rgba(11, 52, 114, 0.04);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Gold Border on Hover */
.hiring-step-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, transparent, var(--color-gold), var(--color-gold-hover), transparent);
    opacity: 0;
    transition: var(--transition-medium);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hiring-step-card:hover::after {
    opacity: 1;
}

.hiring-step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 50% 0%, rgba(228, 161, 27, 0.03), transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: var(--transition-slow);
}

.hiring-step-card:hover::before {
    opacity: 1;
}

.hiring-step-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(228, 161, 27, 0.08);
    box-shadow: 0 20px 60px rgba(11, 52, 114, 0.08);
}

/* ============================================ */
/* STEP NUMBER – Gold Gradient Circle           */
/* ============================================ */

.hiring-step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 30px rgba(228, 161, 27, 0.2);
    transition: var(--transition-medium);
    position: relative;
    flex-shrink: 0;
}

.hiring-step-number::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    pointer-events: none;
    transition: var(--transition-medium);
}

.hiring-step-card:hover .hiring-step-number {
    transform: scale(1.1) rotate(-6deg);
    box-shadow: 0 12px 50px rgba(228, 161, 27, 0.35);
}

.hiring-step-card:hover .hiring-step-number::after {
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

.hiring-step-card:nth-child(1) .hiring-step-number {
    animation: stepPulse 3s ease-in-out infinite;
}
.hiring-step-card:nth-child(2) .hiring-step-number {
    animation: stepPulse 3.5s ease-in-out infinite 0.3s;
}
.hiring-step-card:nth-child(3) .hiring-step-number {
    animation: stepPulse 4s ease-in-out infinite 0.6s;
}

@keyframes stepPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 30px rgba(228, 161, 27, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 50px rgba(228, 161, 27, 0.4);
    }
}

/* ============================================ */
/* STEP TEXT                                    */
/* ============================================ */

.hiring-step-card p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-body);
    margin: 0;
    flex: 1;
}

/* ============================================ */
/* DECORATIVE – Gold Sparkle Dots               */
/* ============================================ */

.hiring-step-card .gold-dots {
    position: absolute;
    bottom: 12px;
    right: 14px;
    display: flex;
    gap: 4px;
    opacity: 0.03;
    pointer-events: none;
}

.hiring-step-card .gold-dots span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-gold);
}

.hiring-step-card:hover .gold-dots {
    opacity: 0.08;
}

/* ============================================ */
/* CONNECTING LINES (Desktop) – CSS Pseudo      */
/* ============================================ */

@media (min-width: 992px) {
    .hiring-step-col:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -15%;
        transform: translateY(-50%);
        width: 18%;
        height: 3px;
        background: linear-gradient(90deg, var(--color-gold), rgba(228, 161, 27, 0.15));
        border-radius: var(--radius-full);
        pointer-events: none;
        z-index: 1;
        transition: var(--transition-medium);
    }
    
    .hiring-step-col:not(:last-child):hover::after {
        background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
        opacity: 1;
    }
    
    .hiring-step-col:not(:last-child)::before {
        content: '';
        position: absolute;
        top: 50%;
        right: calc(5% - 4px);
        transform: translateY(-50%);
        width: 8px;
        height: 8px;
        background: var(--color-gold);
        border-radius: 50%;
        pointer-events: none;
        z-index: 2;
        opacity: 0.2;
        transition: var(--transition-medium);
    }
    
    .hiring-step-col:not(:last-child):hover::before {
        opacity: 0.6;
    }
}

/* ============================================ */
/* RESPONSIVE – Tablet                         */
/* ============================================ */

@media (max-width: 991.98px) {
    .service-hiring-process-section {
        padding: 60px 0;
    }
    
    .service-hiring-process-section .section-header h2 {
        font-size: 30px;
    }
    
    .hiring-step-col {
        flex: 1 1 30%;
        max-width: 32%;
        margin: 0 1%;
    }
    
    .hiring-step-card {
        padding: 30px 20px 25px;
        border-radius: var(--radius-md);
    }
    
    .hiring-step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .hiring-step-card p {
        font-size: 14px;
    }
    
    .hiring-step-col:not(:last-child)::after,
    .hiring-step-col:not(:last-child)::before {
        display: none;
    }
}

/* ============================================ */
/* RESPONSIVE – Mobile                         */
/* ============================================ */

@media (max-width: 575.98px) {
    .service-hiring-process-section {
        padding: 50px 0 30px;
    }
    
    .service-hiring-process-section .section-header {
        margin-bottom: 35px;
    }
    
    .service-hiring-process-section .section-header h2 {
        font-size: 24px;
    }
    
    .service-hiring-process-section .section-header h2::after {
        width: 40px;
        height: 3px;
        animation: none;
        margin-top: 12px;
    }
    
    .hiring-step-col {
        flex: 1 1 100%;
        max-width: 100%;
        margin: 0 0 20px;
    }
    
    .hiring-step-col:last-child {
        margin-bottom: 0;
    }
    
    .hiring-step-card {
        padding: 25px 16px 20px;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(15px);
    }
    
    .hiring-step-card:hover {
        transform: translateY(-4px);
    }
    
    .hiring-step-card::after {
        display: none;
    }
    
    .hiring-step-number {
        width: 52px;
        height: 52px;
        font-size: 20px;
        margin-bottom: 14px;
    }
    
    .hiring-step-card:nth-child(1) .hiring-step-number,
    .hiring-step-card:nth-child(2) .hiring-step-number,
    .hiring-step-card:nth-child(3) .hiring-step-number {
        animation: none;
    }
    
    .hiring-step-card:hover .hiring-step-number {
        transform: scale(1.08);
    }
    
    .hiring-step-card p {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .hiring-step-card .gold-dots {
        display: none;
    }
}

/* ============================================ */
/* EXTRA SMALL – 400px and below               */
/* ============================================ */

@media (max-width: 399.98px) {
    .service-hiring-process-section {
        padding: 40px 0 20px;
    }
    
    .service-hiring-process-section .section-header h2 {
        font-size: 20px;
    }
    
    .hiring-step-card {
        padding: 20px 12px 16px;
    }
    
    .hiring-step-number {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .hiring-step-card p {
        font-size: 13px;
    }
}

/* ============================================ */
/* REDUCED MOTION PREFERENCE                   */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    .service-hiring-process-section::before,
    .service-hiring-process-section::after {
        animation: none !important;
    }
    
    .service-hiring-process-section .section-header h2::after {
        animation: none !important;
    }
    
    .hiring-step-card {
        transition: none !important;
    }
    
    .hiring-step-card:hover {
        transform: none !important;
    }
    
    .hiring-step-card::after {
        transition: none !important;
    }
    
    .hiring-step-card::before {
        transition: none !important;
    }
    
    .hiring-step-number {
        transition: none !important;
    }
    
    .hiring-step-card:nth-child(1) .hiring-step-number,
    .hiring-step-card:nth-child(2) .hiring-step-number,
    .hiring-step-card:nth-child(3) .hiring-step-number {
        animation: none !important;
    }
    
    .hiring-step-col:not(:last-child)::after,
    .hiring-step-col:not(:last-child)::before {
        transition: none !important;
    }
}

/* ============================================ */
/* DARK MODE SUPPORT                           */
/* ============================================ */

@media (prefers-color-scheme: dark) {
    .service-hiring-process-section {
        background: var(--color-navy-dark);
    }
    
    .service-hiring-process-section .section-header h2 {
        color: var(--color-white);
    }
    
    .hiring-step-card {
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 255, 255, 0.06);
    }
    
    .hiring-step-card:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(228, 161, 27, 0.08);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }
    
    .hiring-step-card p {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .hiring-step-number {
        background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
        color: var(--color-navy);
    }
}

/* ============================================ */
/* SCROLL ANIMATION – Fade In                  */
/* ============================================ */

.hiring-step-card {
    opacity: 0;
    transform: translateY(30px);
    animation: cardAppear 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hiring-step-col:nth-child(1) .hiring-step-card {
    animation-delay: 0.05s;
}
.hiring-step-col:nth-child(2) .hiring-step-card {
    animation-delay: 0.1s;
}
.hiring-step-col:nth-child(3) .hiring-step-card {
    animation-delay: 0.15s;
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hiring-step-card {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* ============================================ */
/* SERVICES GRID SECTION – Image-Based Cards    */
/* ============================================ */

.services-grid-section {
    padding: 80px 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* Decorative Background */
.services-grid-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(228, 161, 27, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat 25s ease-in-out infinite;
}

.services-grid-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(11, 52, 114, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat 30s ease-in-out infinite reverse;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -20px) scale(1.1);
    }
}

/* ============================================ */
/* SECTION HEADER                               */
/* ============================================ */

.services-grid-section .section-header {
    margin-bottom: 50px;
    position: relative;
}

.services-grid-section .section-header h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 38px;
    color: var(--color-navy);
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.services-grid-section .section-header h2 .text-gold {
    background: linear-gradient(135deg, var(--color-gold), #F5B825, var(--color-gold-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid-section .section-header h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
    border-radius: var(--radius-full);
    margin: 16px auto 0;
    animation: dividerPulse 2.5s ease-in-out infinite;
}

@keyframes dividerPulse {
    0%, 100% {
        width: 70px;
        opacity: 0.5;
        box-shadow: 0 0 10px rgba(228, 161, 27, 0.1);
    }
    50% {
        width: 110px;
        opacity: 1;
        box-shadow: 0 0 30px rgba(228, 161, 27, 0.3);
    }
}

.services-grid-section .section-header .section-subtitle {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================ */
/* SERVICE CARDS – Image Background             */
/* ============================================ */

.service-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 420px;
    box-shadow: 0 8px 40px rgba(11, 52, 114, 0.06);
    transition: var(--transition-slow);
    cursor: pointer;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(11, 52, 114, 0.12);
}

/* ============================================ */
/* CARD BACKGROUND IMAGE                        */
/* ============================================ */

.service-card-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: var(--transition-slow);
}

.service-card:hover .service-card-bg {
    transform: scale(1.05);
}

/* ============================================ */
/* OVERLAY – Bottom Strong, Top Fade            */
/* (Same as Home Page Hero)                     */
/* ============================================ */

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(11, 52, 114, 0.92) 0%,
        rgba(11, 52, 114, 0.80) 20%,
        rgba(11, 52, 114, 0.60) 40%,
        rgba(11, 52, 114, 0.30) 60%,
        rgba(11, 52, 114, 0.10) 80%,
        transparent 100%
    );
    z-index: 1;
    transition: var(--transition-medium);
}

/* Gold Accent Line at Bottom */
.service-card-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.3;
    transition: var(--transition-medium);
}

.service-card:hover .service-card-overlay::after {
    opacity: 1;
    height: 4px;
}

/* ============================================ */
/* CARD CONTENT                                 */
/* ============================================ */

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px 25px;
    z-index: 2;
    text-align: center;
}

/* ============================================ */
/* SERVICE ICON – Gold Circle                   */
/* ============================================ */

.service-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(228, 161, 27, 0.15);
    border: 2px solid rgba(228, 161, 27, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-gold);
    margin: 0 auto 14px;
    transition: var(--transition-medium);
    backdrop-filter: blur(5px);
}

.service-card:hover .service-card-icon {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(228, 161, 27, 0.25);
    border-color: var(--color-gold);
    box-shadow: 0 8px 30px rgba(228, 161, 27, 0.15);
}

/* ============================================ */
/* CARD TITLE                                   */
/* ============================================ */

.service-card-content h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--color-white);
    margin-bottom: 8px;
    transition: var(--transition-fast);
}

.service-card:hover .service-card-content h4 {
    color: var(--color-gold);
}

/* ============================================ */
/* CARD DESCRIPTION                             */
/* ============================================ */

.service-card-content p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================ */
/* SERVICE KEYWORDS / TAGS                      */
/* ============================================ */

.service-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 14px;
}

.service-keyword {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-size: 10px;
    padding: 2px 12px;
    border-radius: var(--radius-full);
    font-weight: 400;
    transition: var(--transition-fast);
    text-transform: lowercase;
    backdrop-filter: blur(5px);
}

.service-card:hover .service-keyword {
    background: rgba(228, 161, 27, 0.1);
    border-color: rgba(228, 161, 27, 0.1);
    color: var(--color-gold);
}

/* ============================================ */
/* CTA BUTTON                                   */
/* ============================================ */

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    color: var(--color-gold);
    text-decoration: none;
    padding: 6px 0;
    transition: var(--transition-medium);
    position: relative;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-medium);
}

.service-card:hover .btn-service {
    opacity: 1;
    transform: translateY(0);
}

.btn-service::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
    transition: var(--transition-medium);
}

.btn-service:hover {
    color: var(--color-gold-hover);
}

.btn-service:hover::after {
    width: 100%;
}

.btn-service i {
    font-size: 14px;
    transition: var(--transition-fast);
}

.btn-service:hover i {
    transform: translateX(4px);
}

/* ============================================ */
/* CARD NUMBER – Decorative                     */
/* ============================================ */

.service-card .card-index {
    position: absolute;
    top: 12px;
    right: 16px;
    z-index: 3;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: var(--transition-medium);
}

.service-card:hover .card-index {
    color: rgba(228, 161, 27, 0.06);
    transform: scale(1.1);
}

/* ============================================ */
/* DECORATIVE GOLD DOTS                         */
/* ============================================ */

.service-card .gold-dots {
    position: absolute;
    top: 14px;
    left: 16px;
    z-index: 3;
    display: flex;
    gap: 4px;
    opacity: 0.04;
    pointer-events: none;
}

.service-card .gold-dots span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-gold);
}

.service-card:hover .gold-dots {
    opacity: 0.1;
}

/* ============================================ */
/* RESPONSIVE – Tablet                         */
/* ============================================ */

@media (max-width: 991.98px) {
    .services-grid-section {
        padding: 60px 0;
    }
    
    .services-grid-section .section-header h2 {
        font-size: 32px;
    }
    
    .services-grid-section .section-header .section-subtitle {
        font-size: 16px;
    }
    
    .service-card {
        height: 350px;
        border-radius: var(--radius-md);
    }
    
    .service-card-content {
        padding: 25px 20px 20px;
    }
    
    .service-card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .service-card-content h4 {
        font-size: 18px;
    }
    
    .service-card-content p {
        font-size: 13px;
    }
    
    .btn-service {
        font-size: 12px;
    }
    
    .service-card .card-index {
        font-size: 26px;
    }
}

/* ============================================ */
/* RESPONSIVE – Mobile                         */
/* ============================================ */

@media (max-width: 575.98px) {
    .services-grid-section {
        padding: 50px 0 30px;
    }
    
    .services-grid-section .section-header {
        margin-bottom: 35px;
    }
    
    .services-grid-section .section-header h2 {
        font-size: 26px;
    }
    
    .services-grid-section .section-header h2::after {
        width: 40px;
        height: 3px;
        animation: none;
        margin-top: 12px;
    }
    
    .services-grid-section .section-header .section-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .service-card {
        height: 300px;
        border-radius: var(--radius-md);
    }
    
    .service-card:hover {
        transform: translateY(-5px);
    }
    
    .service-card-content {
        padding: 20px 16px 16px;
    }
    
    .service-card-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .service-card-content h4 {
        font-size: 17px;
        margin-bottom: 6px;
    }
    
    .service-card-content p {
        font-size: 13px;
        -webkit-line-clamp: 2;
        margin-bottom: 8px;
    }
    
    .service-keywords {
        gap: 4px;
        margin-bottom: 10px;
    }
    
    .service-keyword {
        font-size: 9px;
        padding: 2px 10px;
    }
    
    .btn-service {
        font-size: 12px;
        opacity: 1;
        transform: translateY(0);
        color: var(--color-gold);
    }
    
    .service-card .card-index {
        font-size: 20px;
        top: 8px;
        right: 12px;
    }
    
    .service-card .gold-dots {
        top: 10px;
        left: 12px;
    }
}

/* ============================================ */
/* EXTRA SMALL – 400px and below               */
/* ============================================ */

@media (max-width: 399.98px) {
    .services-grid-section {
        padding: 40px 0 20px;
    }
    
    .services-grid-section .section-header h2 {
        font-size: 22px;
    }
    
    .service-card {
        height: 260px;
    }
    
    .service-card-content {
        padding: 16px 12px 14px;
    }
    
    .service-card-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .service-card-content h4 {
        font-size: 15px;
    }
    
    .service-card-content p {
        font-size: 12px;
        -webkit-line-clamp: 2;
    }
    
    .service-keyword {
        font-size: 8px;
        padding: 1px 8px;
    }
    
    .btn-service {
        font-size: 11px;
    }
}

/* ============================================ */
/* REDUCED MOTION PREFERENCE                   */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    .services-grid-section::before,
    .services-grid-section::after {
        animation: none !important;
    }
    
    .services-grid-section .section-header h2::after {
        animation: none !important;
    }
    
    .service-card {
        transition: none !important;
    }
    
    .service-card:hover {
        transform: none !important;
    }
    
    .service-card-bg {
        transition: none !important;
    }
    
    .service-card:hover .service-card-bg {
        transform: none !important;
    }
    
    .service-card-overlay {
        transition: none !important;
    }
    
    .service-card-icon {
        transition: none !important;
    }
    
    .service-card:hover .service-card-icon {
        transform: none !important;
    }
    
    .btn-service {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .btn-service i {
        transition: none !important;
    }
}

/* ============================================ */
/* SCROLL ANIMATION – Fade In                  */
/* ============================================ */

.service-card {
    opacity: 0;
    transform: translateY(30px);
    animation: cardAppear 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.service-card:nth-child(1) { animation-delay: 0.05s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.15s; }
.service-card:nth-child(4) { animation-delay: 0.2s; }
.service-card:nth-child(5) { animation-delay: 0.25s; }
.service-card:nth-child(6) { animation-delay: 0.3s; }

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-card {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* ============================================ */
/* DARK MODE SUPPORT                           */
/* ============================================ */

@media (prefers-color-scheme: dark) {
    .services-grid-section {
        background: var(--color-navy-dark);
    }
    
    .services-grid-section .section-header h2 {
        color: var(--color-white);
    }
    
    .services-grid-section .section-header .section-subtitle {
        color: rgba(255, 255, 255, 0.6);
    }
}
/* ============================================ */
/* 4-COLUMN SUPPORT FOR HIRING PROCESS          */
/* ============================================ */

/* Override column widths for 4 columns */
.hiring-step-col {
    flex: 1 1 23%;
    max-width: 23%;
    margin: 0 1%;
    position: relative;
}

/* Responsive – Tablet (2 columns) */
@media (max-width: 991.98px) {
    .hiring-step-col {
        flex: 1 1 46%;
        max-width: 46%;
        margin: 0 2%;
    }
}

/* Responsive – Mobile (1 column) */
@media (max-width: 575.98px) {
    .hiring-step-col {
        flex: 1 1 100%;
        max-width: 100%;
        margin: 0 0 20px;
    }
    
    .hiring-step-col:last-child {
        margin-bottom: 0;
    }
}

/* Remove connecting lines for 4 columns (too many) */
@media (min-width: 992px) {
    .hiring-step-col:not(:last-child)::after,
    .hiring-step-col:not(:last-child)::before {
        display: none;
    }
}

/* Add subtle connector between steps (optional) */
.hiring-step-col:not(:last-child) .hiring-step-card::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    opacity: 0.15;
    pointer-events: none;
}

@media (max-width: 991.98px) {
    .hiring-step-col:not(:last-child) .hiring-step-card::after {
        display: none;
    }
}
/* ============================================ */
/* WHY OUR STAFF SECTION – Premium Design       */
/* ============================================ */

.why-staff-section {
    padding: 80px 0;
    background: var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

/* Decorative Background */
.why-staff-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(228, 161, 27, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat 25s ease-in-out infinite;
}

.why-staff-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(11, 52, 114, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat 30s ease-in-out infinite reverse;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -20px) scale(1.1);
    }
}

/* ============================================ */
/* SECTION HEADER                               */
/* ============================================ */

.why-staff-section .section-header {
    margin-bottom: 20px;
}

.why-staff-section .section-header h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 36px;
    color: var(--color-navy);
    letter-spacing: -1px;
    margin-bottom: 0;
}

.why-staff-section .section-header h2 .text-gold {
    background: linear-gradient(135deg, var(--color-gold), #F5B825, var(--color-gold-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gold Divider */
.why-staff-section .section-header h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover));
    border-radius: var(--radius-full);
    margin: 16px auto 0;
    animation: dividerPulse 2.5s ease-in-out infinite;
}

@keyframes dividerPulse {
    0%, 100% {
        width: 70px;
        opacity: 0.5;
        box-shadow: 0 0 10px rgba(228, 161, 27, 0.1);
    }
    50% {
        width: 110px;
        opacity: 1;
        box-shadow: 0 0 30px rgba(228, 161, 27, 0.3);
    }
}

/* ============================================ */
/* PARAGRAPH TEXT                               */
/* ============================================ */

.why-staff-section .text-center {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.9;
    color: var(--color-text-body);
    max-width: 850px;
    margin: 0 auto 30px;
}

/* ============================================ */
/* STAFF BADGES – Glassmorphism                 */
/* ============================================ */

.staff-badge {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-slow);
    box-shadow: 0 4px 20px rgba(11, 52, 114, 0.04);
    height: 100%;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-navy);
    position: relative;
    overflow: hidden;
}

/* Gold Border on Hover */
.staff-badge::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-md);
    padding: 1px;
    background: linear-gradient(135deg, transparent, var(--color-gold), var(--color-gold-hover), transparent);
    opacity: 0;
    transition: var(--transition-medium);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.staff-badge:hover::after {
    opacity: 1;
}

/* Glass Inner Glow */
.staff-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    background: radial-gradient(circle at 0% 50%, rgba(228, 161, 27, 0.03), transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: var(--transition-slow);
}

.staff-badge:hover::before {
    opacity: 1;
}

.staff-badge:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(228, 161, 27, 0.08);
    box-shadow: 0 12px 40px rgba(11, 52, 114, 0.08);
}

/* ============================================ */
/* BADGE ICON – Gold Checkmark                  */
/* ============================================ */

.staff-badge i {
    font-size: 20px;
    color: var(--color-gold);
    flex-shrink: 0;
    transition: var(--transition-medium);
    background: rgba(228, 161, 27, 0.08);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(228, 161, 27, 0.08);
}

.staff-badge:hover i {
    transform: scale(1.15) rotate(-5deg);
    background: rgba(228, 161, 27, 0.15);
    border-color: rgba(228, 161, 27, 0.2);
    box-shadow: 0 4px 20px rgba(228, 161, 27, 0.1);
}

/* ============================================ */
/* RESPONSIVE – Tablet                         */
/* ============================================ */

@media (max-width: 991.98px) {
    .why-staff-section {
        padding: 60px 0;
    }
    
    .why-staff-section .section-header h2 {
        font-size: 30px;
    }
    
    .staff-badge {
        padding: 14px 16px;
        font-size: 13px;
    }
    
    .staff-badge i {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
}

/* ============================================ */
/* RESPONSIVE – Mobile                         */
/* ============================================ */

@media (max-width: 575.98px) {
    .why-staff-section {
        padding: 50px 0 30px;
    }
    
    .why-staff-section .section-header h2 {
        font-size: 26px;
    }
    
    .why-staff-section .section-header h2::after {
        width: 40px;
        height: 3px;
        animation: none;
        margin-top: 12px;
    }
    
    .why-staff-section .text-center {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .staff-badge {
        padding: 12px 14px;
        font-size: 13px;
        border-radius: var(--radius-sm);
        backdrop-filter: blur(15px);
        background: rgba(255, 255, 255, 0.9);
    }
    
    .staff-badge:hover {
        transform: translateY(-3px);
    }
    
    .staff-badge::after {
        display: none;
    }
    
    .staff-badge i {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
    
    .staff-badge:hover i {
        transform: scale(1.08);
    }
    
    .row.g-3 {
        --bs-gutter-y: 0.75rem;
        --bs-gutter-x: 0.75rem;
    }
}

/* ============================================ */
/* EXTRA SMALL – 400px and below               */
/* ============================================ */

@media (max-width: 399.98px) {
    .why-staff-section {
        padding: 40px 0 20px;
    }
    
    .why-staff-section .section-header h2 {
        font-size: 22px;
    }
    
    .why-staff-section .text-center {
        font-size: 14px;
    }
    
    .staff-badge {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .staff-badge i {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }
}

/* ============================================ */
/* REDUCED MOTION PREFERENCE                   */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    .why-staff-section::before,
    .why-staff-section::after {
        animation: none !important;
    }
    
    .why-staff-section .section-header h2::after {
        animation: none !important;
    }
    
    .staff-badge {
        transition: none !important;
    }
    
    .staff-badge:hover {
        transform: none !important;
    }
    
    .staff-badge::after {
        transition: none !important;
    }
    
    .staff-badge::before {
        transition: none !important;
    }
    
    .staff-badge i {
        transition: none !important;
    }
    
    .staff-badge:hover i {
        transform: none !important;
    }
}

/* ============================================ */
/* SCROLL ANIMATION – Fade In                  */
/* ============================================ */

.staff-badge {
    opacity: 0;
    transform: translateY(20px);
    animation: badgeAppear 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.staff-badge:nth-child(1) { animation-delay: 0.05s; }
.staff-badge:nth-child(2) { animation-delay: 0.1s; }
.staff-badge:nth-child(3) { animation-delay: 0.15s; }
.staff-badge:nth-child(4) { animation-delay: 0.2s; }

@keyframes badgeAppear {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .staff-badge {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* ============================================ */
/* DARK MODE SUPPORT                           */
/* ============================================ */

@media (prefers-color-scheme: dark) {
    .why-staff-section {
        background: var(--color-navy-dark);
    }
    
    .why-staff-section .section-header h2 {
        color: var(--color-white);
    }
    
    .why-staff-section .text-center {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .staff-badge {
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 255, 255, 0.06);
        color: var(--color-white);
    }
    
    .staff-badge:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(228, 161, 27, 0.08);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    }
    
    .staff-badge i {
        background: rgba(228, 161, 27, 0.08);
        border-color: rgba(228, 161, 27, 0.06);
    }
    
    .staff-badge:hover i {
        background: rgba(228, 161, 27, 0.15);
        border-color: rgba(228, 161, 27, 0.15);
    }
}
/* ============================================ */
/* NAV LINKS – BIGGER & BOLDER                  */
/* ============================================ */

.nav-link {
    font-family: var(--font-heading);
    font-weight: 700 !important; /* Bold */
    font-size: 16px !important; /* Bigger size */
    color: var(--color-text-body) !important;
    padding: 10px 20px !important;
    border-radius: var(--radius-full);
    transition: var(--transition-medium);
    position: relative;
    letter-spacing: 0.3px;
}

/* Mobile View */
@media (max-width: 991.98px) {
    .nav-link {
        font-size: 18px !important;
        padding: 12px 20px !important;
    }
}

/* Active Link */
.nav-link.active {
    font-weight: 700 !important;
}

/* Dropdown Items */
.dropdown-item {
    font-family: var(--font-heading);
    font-weight: 600 !important;
    font-size: 15px !important;
}
/* ============================================ */
/* FONTS – Poppins & Inter                      */
/* ============================================ */

/* ============================================ */
/* GOOGLE FONTS IMPORT                          */
/* ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================ */
/* CSS VARIABLES                                */
/* ============================================ */

:root {
    /* Headings - Poppins */
    --font-heading: 'Poppins', sans-serif;
    
    /* Body Text - Inter */
    --font-body: 'Inter', sans-serif;
}

/* ============================================ */
/* BASE FONT SETUP                              */
/* ============================================ */

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-text-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================ */
/* HEADINGS – Poppins                           */
/* ============================================ */

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-heading);
}

/* Heading Sizes with Poppins */
h1 {
    font-weight: 800;
}
h2 {
    font-weight: 700;
}
h3 {
    font-weight: 600;
}
h4 {
    font-weight: 600;
}
h5 {
    font-weight: 600;
}
h6 {
    font-weight: 500;
}

/* ============================================ */
/* BODY TEXT – Inter                           */
/* ============================================ */

p,
span,
div,
li,
a,
small,
label,
input,
textarea,
select,
button,
table,
td,
th {
    font-family: var(--font-body);
}

/* Paragraph */
p {
    font-weight: 400;
    line-height: 1.8;
}

/* Links */
a {
    font-family: var(--font-body);
    font-weight: 500;
    text-decoration: none;
}

/* ============================================ */
/* NAVIGATION – Poppins (Bold)                  */
/* ============================================ */

.nav-link,
.navbar-brand,
.brand-text,
.nav-item,
.dropdown-item {
    font-family: var(--font-heading);
}

.nav-link {
    font-weight: 600;
}

.dropdown-item {
    font-weight: 500;
}

.navbar-brand .brand-text {
    font-weight: 700;
}

/* ============================================ */
/* BUTTONS – Poppins                            */
/* ============================================ */

.btn,
.btn-primary,
.btn-secondary,
.btn-success,
.btn-outline-primary,
.btn-hire,
.btn-about,
.btn-whatsapp,
.btn-navy,
.btn-white {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* ============================================ */
/* SECTION HEADERS – Poppins                    */
/* ============================================ */

.section-header h2,
.section-title,
.section-heading {
    font-family: var(--font-heading);
    font-weight: 700;
}

.section-subtitle,
.section-description {
    font-family: var(--font-body);
    font-weight: 400;
}

/* ============================================ */
/* CARDS – Poppins Headings, Inter Body         */
/* ============================================ */

.card-title,
.card h4,
.card h5,
.trust-card h4,
.step-card h4,
.service-card h4,
.testimonial-card .testimonial-author,
.why-card h5,
.why-about-card h5 {
    font-family: var(--font-heading);
    font-weight: 600;
}

.card-text,
.card p,
.trust-card p,
.step-card p,
.service-card p,
.testimonial-card p,
.why-card p,
.why-about-card p {
    font-family: var(--font-body);
    font-weight: 400;
}

/* ============================================ */
/* FOOTER                                       */
/* ============================================ */

footer,
.footer-company h4,
.footer-links h5,
.footer-links a,
.footer-copyright p,
.footer-contact-info span {
    font-family: var(--font-body);
}

footer h4,
footer h5,
.footer-company h4,
.footer-links h5 {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* ============================================ */
/* FORMS                                        */
/* ============================================ */

input,
textarea,
select,
.form-control,
.form-label {
    font-family: var(--font-body);
}

/* ============================================ */
/* BLOG & GALLERY                               */
/* ============================================ */

.blog-card h4,
.blog-card-content h4,
.blog-title {
    font-family: var(--font-heading);
    font-weight: 600;
}

.blog-content,
.blog-meta,
.blog-card p,
.blog-card-content p {
    font-family: var(--font-body);
}

/* ============================================ */
/* HERO SECTION                                 */
/* ============================================ */

.hero-title,
.hero-section h1,
.page-hero-section h1,
.service-hero-section h1 {
    font-family: var(--font-heading);
    font-weight: 800;
}

.hero-subtitle,
.hero-section p,
.page-hero-section p,
.service-hero-section p {
    font-family: var(--font-body);
    font-weight: 400;
}

/* ============================================ */
/* STATS & NUMBERS                              */
/* ============================================ */

.hero-stat-number,
.stat-number,
.number {
    font-family: var(--font-heading);
    font-weight: 800;
}

.hero-stat-label,
.stat-label,
.label {
    font-family: var(--font-body);
    font-weight: 400;
}

/* ============================================ */
/* BADGES & TAGS                                */
/* ============================================ */

.badge,
.tag,
.keyword-badge,
.service-keyword,
.blog-category {
    font-family: var(--font-body);
    font-weight: 500;
}

/* ============================================ */
/* RESPONSIVE                                   */
/* ============================================ */

@media (max-width: 575.98px) {
    h1 {
        font-size: 28px;
        font-weight: 800;
    }
    h2 {
        font-size: 24px;
        font-weight: 700;
    }
    h3 {
        font-size: 20px;
        font-weight: 600;
    }
    h4 {
        font-size: 18px;
        font-weight: 600;
    }
    h5 {
        font-size: 16px;
        font-weight: 600;
    }
    h6 {
        font-size: 14px;
        font-weight: 500;
    }
    
    body {
        font-size: 15px;
    }
    
    p {
        font-size: 15px;
    }
}
/* ============================================ */
/* SITE SIZING & CENTERING – All Pages         */
/* ============================================ */

/* ============================================ */
/* GLOBAL RESET & BASE                          */
/* ============================================ */

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ============================================ */
/* CONTAINER – Desktop View (Fixed Width)       */
/* ============================================ */

.container {
    width: 100%;
    max-width: 1200px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ============================================ */
/* CONTAINER – Tablet View                      */
/* ============================================ */

@media (max-width: 991.98px) {
    .container {
        max-width: 100% !important;
        padding-left: 25px !important;
        padding-right: 25px !important;
    }
}

/* ============================================ */
/* CONTAINER – Mobile View (Center Aligned)     */
/* ============================================ */

@media (max-width: 575.98px) {
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Force all content to center */
    body {
        text-align: center;
    }
    
    /* But keep text left-aligned where needed */
    .text-left,
    .text-start {
        text-align: left !important;
    }
    
    /* Keep paragraphs and lists left-aligned */
    p, li, .description, .content-text {
        text-align: left !important;
    }
}

/* ============================================ */
/* EXTRA SMALL – 400px and below               */
/* ============================================ */

@media (max-width: 399.98px) {
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

/* ============================================ */
/* FIXED WIDTH FOR DESKTOP (Optional)           */
/* ============================================ */

@media (min-width: 1400px) {
    .container {
        max-width: 1280px !important;
    }
}

/* ============================================ */
/* SECTION SIZING – Consistent Padding          */
/* ============================================ */

section {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

section .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

@media (max-width: 575.98px) {
    section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* ============================================ */
/* ROW FIX – Prevent Horizontal Scroll          */
/* ============================================ */

.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.row > [class*="col-"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

@media (max-width: 575.98px) {
    .row > [class*="col-"] {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

/* ============================================ */
/* CENTER ALL COLUMNS ON MOBILE                 */
/* ============================================ */

@media (max-width: 575.98px) {
    .row {
        justify-content: center !important;
    }
    
    .col-*,
    .col-sm-*,
    .col-md-*,
    .col-lg-* {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        text-align: center !important;
    }
    
    /* Exceptions – Keep specific columns left-aligned */
    .col-lg-8 .text-left,
    .col-lg-7 .text-left,
    .col-lg-6 .text-left,
    .text-start-mobile {
        text-align: left !important;
    }
}

/* ============================================ */
/* FORCE BOX-SIZING                             */
/* ============================================ */

*, *::before, *::after {
    box-sizing: border-box !important;
}

/* ============================================ */
/* IMAGES – Responsive                          */
/* ============================================ */

img {
    max-width: 100%;
    height: auto;
}

/* ============================================ */
/* CARDS – Full Width on Mobile                 */
/* ============================================ */

@media (max-width: 575.98px) {
    .card,
    .trust-card,
    .step-card,
    .why-card,
    .service-card,
    .testimonial-card,
    .blog-card,
    .gallery-item,
    .contact-card,
    .details-card {
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 100% !important;
    }
}

/* ============================================ */
/* HERO SECTION – Mobile Center                 */
/* ============================================ */

@media (max-width: 575.98px) {
    .hero-content,
    .page-hero-content,
    .service-hero-content {
        text-align: center !important;
        padding: 0 10px;
    }
    
    .hero-content h1,
    .page-hero-content h1,
    .service-hero-content h1 {
        text-align: center !important;
    }
    
    .hero-content p,
    .page-hero-content p,
    .service-hero-content p {
        text-align: center !important;
    }
    
    .hero-stats {
        justify-content: center !important;
    }
}

/* ============================================ */
/* FOOTER – Mobile Center                       */
/* ============================================ */

@media (max-width: 575.98px) {
    .footer-company {
        text-align: center !important;
        align-items: center !important;
    }
    
    .footer-links {
        text-align: center !important;
    }
    
    .footer-links h5::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    .footer-social {
        justify-content: center !important;
    }
    
    .footer-bottom .container {
        text-align: center !important;
    }
}

/* ============================================ */
/* NAVIGATION – Mobile Center                   */
/* ============================================ */

@media (max-width: 575.98px) {
    .navbar-nav {
        align-items: center !important;
        text-align: center !important;
    }
    
    .nav-item {
        text-align: center !important;
    }
    
    .nav-link {
        justify-content: center !important;
    }
}

/* ============================================ */
/* ACCESSIBILITY – High Contrast                */
/* ============================================ */

@media (prefers-contrast: high) {
    .container {
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
}

/* ============================================ */
/* REDUCED MOTION                              */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
/* ============================================ */
/* DROPDOWN – Fixed Hover Behavior              */
/* ============================================ */

/* Desktop */
@media (min-width: 992px) {
    .dropdown {
        position: relative;
    }
    
    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px) scale(0.98);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
        pointer-events: none;
        margin-top: 0 !important;
        padding-top: 12px !important;
        min-width: 230px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(30px) saturate(180%);
        -webkit-backdrop-filter: blur(30px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: var(--radius-md);
        box-shadow: 0 20px 60px rgba(11, 52, 114, 0.08);
        padding: 8px;
    }
    
    /* Invisible bridge between link and dropdown */
    .dropdown::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        right: 0;
        height: 12px;
        background: transparent;
        pointer-events: auto;
        z-index: 1;
    }
    
    /* Show dropdown on hover */
    .dropdown:hover .dropdown-menu,
    .dropdown-menu:hover {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }
    
    /* Fix for dropdown toggle arrow */
    .dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}
/* ============================================ */
/* BRAND TEXT – Bigger on Mobile                */
/* ============================================ */

/* Desktop Default */
.brand-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-navy);
    letter-spacing: -0.5px;
    transition: var(--transition-fast);
}

/* Mobile View – Bigger Title */
@media (max-width: 575.98px) {
    .brand-text {
        font-size: 22px !important;
        font-weight: 800 !important;
    }
}

/* Extra Small – Even Bigger */
@media (max-width: 399.98px) {
    .brand-text {
        font-size: 18px !important;
    }
}