:root {
    --navy: #040816; 
    --gold: #dcb35f;
    --gold-light: #fbe599;
    --gold-dark: #b58d1e;
    --white: #ffffff;
    --text-muted: #9ba3b8;
    --border-color: rgba(220, 179, 95, 0.25);
    --border-light: rgba(255,255,255,0.08);
    --bg-surface: #0a0f25;
}

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

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--navy);
    color: var(--white);
    line-height: 1.6;
    /* Simulate the starry/dust background from image */
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(220, 179, 95, 0.05), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(220, 179, 95, 0.05), transparent 30%);
    background-attachment: fixed;
}

/* Page Specific Backgrounds */
body.bg-stardust {
    background-image: url('bg-stardust.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body.bg-worldmap {
    background-image: url('bg-worldmap.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body.bg-curves {
    background-image: url('bg-curves.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Utilities */
.text-gold { color: var(--gold); }
.text-gold-light { color: var(--gold-light); }
.text-gold-darker { color: #a48234; }
.text-muted { color: var(--text-muted); }
.text-red { color: #e74c3c; }
.text-blue { color: #1a56db; }
.text-blue-light { color: #0077b5; }
.text-grad { background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent;}
.fw-bold { font-weight: 700; }
.fw-light { font-weight: 300; }
.text-center { text-align: center; }
.mb-sm { margin-bottom: 15px; }
.mb-md { margin-bottom: 25px; }
.mt-sm { margin-top: 15px; }
.mt-md { margin-top: 30px; }
.mt-lg { margin-top: 45px; }
.pt-md { margin-top: 25px; } /* Reusing mt for spacing in design block */
.ml-sm { margin-left: 15px; }
.ml-xs { margin-left: 5px; }
.dim { color: rgba(255,255,255,0.5); }
.gold-dot { color: var(--gold); margin-right: 8px; font-size: 1.2rem; line-height: 0; position: relative; top: 2px;}
.gold-dot.sm { font-size: 0.8rem; margin-right: 12px; }
.icon-gold { color: var(--gold); }
.italic-title { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.6rem; color: var(--gold-light); }
.link-hover:hover { color: var(--white); cursor: pointer; }

/* Global Section Borders */
.section-border {
    border-bottom: 1px solid var(--border-color);
    padding: 30px 8%;
    background: rgba(4, 9, 22, 0.4);
    box-shadow: inset 0 20px 40px -20px rgba(220,179,95,0.03);
}

/* Headings */
.section-heading-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
}
.section-heading-center h2 {
    font-size: 2rem;
    font-style: italic;
    color: var(--gold-light);
}
.line-gold-arrow {
    height: 1px;
    width: 150px;
}
.line-gold-arrow.text-right {
    background: linear-gradient(90deg, transparent, var(--gold));
    position: relative;
}
.line-gold-arrow.text-right::after {
    content: '>';
    position: absolute;
    right: -12px;
    top: -8px;
    color: var(--gold);
    font-size: 14px;
}
.line-gold-arrow.text-left {
    background: linear-gradient(90deg, var(--gold), transparent);
    position: relative;
}
.line-gold-arrow.text-left::before {
    content: '<';
    position: absolute;
    left: -12px;
    top: -8px;
    color: var(--gold);
    font-size: 14px;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
}
.section-heading h2 {
    font-size: 2rem;
    font-style: italic;
    color: var(--gold-light);
}
.line-gold {
    height: 1px;
    width: 150px;
    background: linear-gradient(90deg, transparent, var(--gold));
}
.line-gold:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.section-heading-sm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
}
.section-heading-sm.left-align {
    justify-content: flex-start;
}
.line-gold-sm {
    height: 1px;
    width: 40px;
    background: var(--gold);
}


/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 15px;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
}
.btn-gold {
    background: linear-gradient(180deg, #fbe599 0%, #D4AF37 50%, #b58d1e 100%);
    color: #111;
    border: 1px solid #fbe599;
}
.btn-gold:hover {
    background: linear-gradient(180deg, #fff2c8 0%, #e0bc4b 50%, #c49924 100%);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--white);
}
.btn-outline:hover {
    background: rgba(220,179,95,0.1);
}
.btn-sm {
    padding: 6px 18px;
    font-size: 13px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 600;
}
.btn-block {
    display: block;
    width: 100%;
    padding: 12px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    height: 81px;
    border-bottom: 1px solid var(--border-color);
    background: rgba(2, 5, 19, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 330px;
}
.logo-icon {
    width: 34px;
    height: 34px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
}
.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--white);
}
.logo-text-small {
    font-family: 'Lato', sans-serif;
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--gold);
    margin-left: 5px;
}
.nav-links {
    display: flex;
    align-items: center;
}
.nav-links li {
    padding: 0 16px;
}
.nav-links li a {
    font-size: 14px;
    color: var(--white);
}
.nav-links li a:hover, .nav-links li a.active {
    color: var(--gold);
}
.nav-sep { color: rgba(255,255,255,0.2) !important; padding: 0 !important; }
.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.nav-sep-text { color: rgba(255,255,255,0.2); }
.nav-user {
    color: var(--gold);
    font-size: 20px;
    margin-left: 10px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 8%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--navy);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(2,5,19,0.4) 0%, rgba(2,5,19,0.7) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at center, transparent 30%, var(--navy) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}
.hero h1 {
    font-size: 3.5rem;
    background: linear-gradient(180deg, #fff 0%, #fbe599 60%, #ebc761 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    line-height: 1.1;
}
.hero-subtitle {
    font-size: 1.3rem;
    font-style: italic;
    color: #ccc;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}
.hero-subtitle span {
    margin: 0 10px;
}
.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.sparkles {
    position: absolute; inset: 0; pointer-events: none; z-index: 1;
}
.sparkle {
    position: absolute; width: 2px; height: 2px; background: var(--white);
    box-shadow: 0 0 4px 1px var(--gold);
    animation: twinkle 3s infinite alternate;
}
@keyframes twinkle {
    0% { opacity: 0.2; } 100% { opacity: 1; transform: scale(1.5); }
}

/* Why Choose Us Strip */
.why-choose-us {
    padding: 25px 8%;
}
.wcu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.wcu-item {
    display: flex;
    align-items: center;
    gap: 20px;
}
.wcu-item i {
    font-size: 36px;
    flex-shrink: 0;
}
.wcu-text h4 {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-bottom: 2px;
}
.wcu-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Our Expertise */
.our-expertise {
    padding-top: 40px;
    padding-bottom: 50px;
}
.expertise-grid {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}
.ex-card {
    flex: 1;
    min-width: 160px;
    border: 1px solid var(--border-color);
    background: linear-gradient(180deg, rgba(16, 23, 48, 0.4) 0%, rgba(5, 9, 21, 0.8) 100%);
    text-align: center;
    padding: 30px 15px;
    transition: 0.3s;
}
.ex-card:hover {
    border-color: var(--gold-light);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(220,179,95,0.05);
}
.ex-card i {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 15px;
}
.ex-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.3;
}

/* Mid CTA */
.mid-cta {
    padding: 40px 8%;
}

/* Split Section */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 50px 8%;
    align-items: flex-start;
}
.left-block {
    margin-bottom: 20px;
}
.border-top-left-block {
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
}
.stories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.story-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.story-item .icon-gold {
    font-size: 24px;
    margin-top: 5px;
}
.story-item h4 {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 2px;
}
.story-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.insights-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}
.insights-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.logos-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 0%, transparent 10%, transparent 90%, rgba(255,255,255,0.05) 100%);
}
.logo-item {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Contact Box */
.contact-box {
    border: 1px solid var(--gold);
    padding: 40px 30px;
    background: rgba(10, 15, 30, 0.6);
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    position: relative;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    background: rgba(5, 10, 20, 0.8);
    border: 1px solid var(--border-light);
    color: var(--white);
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    border-radius: 2px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.contact-form textarea {
    resize: vertical;
}

/* Map Section */
.footer-map-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    padding: 30px 8%;
    align-items: center;
}
.map-left {
    position: relative;
}
.map-container {
    position: relative;
    border: 1px solid var(--border-light);
    overflow: hidden;
    height: 180px;
}
.map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) sepia(0.5) hue-rotate(180deg) saturate(2);
}
.map-pin {
    position: absolute;
    font-size: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.map-socials {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    font-size: 22px;
}

.contact-ul {
    border-left: 1px solid var(--border-light);
    padding-left: 20px;
}
.contact-ul li {
    font-size: 0.85rem;
    color: var(--white);
    margin-bottom: 12px;
}

/* Footer Bottom */
.footer-bottom {
    background: #02040b;
    padding: 40px 8% 20px;
}
.footer-links-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.4fr;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.fl-col h5 {
    color: var(--gold-light);
    font-size: 1rem;
    margin-bottom: 15px;
}
.fl-col ul {
    padding-left: 0;
    margin: 0;
}
.fl-col ul li {
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.fl-col ul li a:hover {
    color: var(--white);
}
.footer-social-sm {
    display: flex;
    gap: 12px;
    font-size: 20px;
}
.footer-copyright {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 20px;
    position: relative;
}
.watermark {
    position: absolute;
    left: 45%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: rgba(0,0,0,0.4);
    font-weight: bold;
    letter-spacing: 2px;
}
.footer-copyright p {
    font-size: 0.8rem;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 1024px) {
    .split-section, .footer-map-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .wcu-grid {
        grid-template-columns: 1fr;
    }
    .expertise-grid {
        justify-content: center;
    }
    .ex-card { max-width: calc(50% - 15px); }
    .insights-list { grid-template-columns: 1fr; }
    .stories-grid { grid-template-columns: 1fr; }
    .logos-strip { flex-wrap: wrap; gap: 15px; justify-content: center; }
}

@media (max-width: 768px) {
    /* Navbar Hamburger Setup */
    .mobile-menu-toggle {
        display: block;
        font-size: 24px;
        color: var(--gold);
        cursor: pointer;
        z-index: 1001;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 81px;
        left: 0;
        width: 100%;
        background: rgba(2, 5, 19, 0.98);
        padding: 20px 0;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        padding: 15px 0;
    }
    .nav-sep {
        display: none !important;
    }

    .split-left, .split-right {
        width: 100%;
        padding: 0;
    }
    .footer-map-section {
        display: flex;
        flex-direction: column;
    }
    .map-left, .address-right {
        width: 100%;
    }
    .footer-links-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    
    .hero { padding: 60px 5%; min-height: 300px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; margin-bottom: 10px; }
    
    /* Hide left tabs on mobile to prevent overlapping */
    .left-floating-tabs {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .logo-text { font-size: 18px; }
    .logo { width: 250px; }
    .hero h1 { font-size: 1.8rem; }
    .ex-card { max-width: 100%; }
    .footer-links-grid { grid-template-columns: 1fr; }
    .trusted-logos { gap: 30px; }
    
    /* Left tabs are hidden from 768px, no need to scale here */
}

/* Hide mobile toggle on desktop */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Trusted Leaders Logos */
.trusted-logos-section {
    padding: 60px 20px;
    background: rgba(2, 5, 19, 0.4);
    text-align: center;
}
.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 40px auto 0;
    flex-wrap: wrap;
}
.logo-brand {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--white-nav);
    opacity: 0.6;
    transition: opacity 0.3s, color 0.3s;
    text-transform: uppercase;
}
.logo-brand:hover {
    opacity: 1;
    color: var(--gold);
}
@media (max-width: 768px) {
    .logo-brand { font-size: 1.1rem; }
}

/* Custom Why Choose Us Section matched to mockup */
.why-choose-us-section {
    position: relative;
    padding: 30px 5%;
    border-top: 1px solid rgba(212, 175, 55, 0.4);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    margin: 50px 0;
    background: var(--navy);
}

.wcu-top-label {
    position: absolute;
    top: -18px;
    left: 8%;
    background: var(--navy);
    padding: 0 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--gold-light);
    font-weight: 600;
}

.wcu-top-label::before {
    content: "—";
    margin-right: 15px;
    color: rgba(212, 175, 55, 0.5);
    font-family: Arial, sans-serif;
    position: relative;
    top: -2px;
}
.wcu-top-label::after {
    content: "—";
    margin-left: 15px;
    color: rgba(212, 175, 55, 0.5);
    font-family: Arial, sans-serif;
    position: relative;
    top: -2px;
}

/* Unified Footer Styles */
.unified-footer {
    background: var(--navy); /* Keep background related to theme */
    padding: 40px 8% 20px;
}

.footer-brand-col {
    max-width: 320px;
}

.footer-logo img {
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-social-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-social-grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social-grid a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.contact-info-col ul li i {
    font-size: 16px;
    margin-top: 4px;
    width: 20px;
}

.contact-info-col ul li div, .contact-info-col ul li a {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-info-col ul li a:hover {
    color: var(--gold);
}

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

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.1);
    color: white;
}

.float-wa {
    background-color: #25D366; /* WhatsApp Green */
}

.float-phone {
    background-color: var(--gold); /* Theme Gold */
}

.wcu-grid-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wcu-item-custom {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    padding: 0 20px;
    position: relative;
}

.wcu-item-custom:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 5%;
    height: 90%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.wcu-item-custom i {
    font-size: 40px;
    color: #ceaa50;
    filter: drop-shadow(1px 2px 2px rgba(0,0,0,0.6));
}

.wcu-text h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #ebd188;
    margin-bottom: 2px;
    font-weight: 600;
}

.wcu-text p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

@media (max-width: 1024px) {
    .wcu-grid-custom { flex-direction: column; gap: 30px; }
    .wcu-item-custom:not(:last-child)::after { display: none; }
    .wcu-item-custom { width: 100%; justify-content: flex-start; }
}

/* Floating Contact Buttons */
.floating-contact-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: bounceIn 0.5s ease-out forwards;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    color: white;
}

.floating-btn.whatsapp {
    background-color: #25D366;
}
.floating-btn.whatsapp:hover {
    background-color: #128C7E;
}

.floating-btn.call {
    background-color: #d4af37;
}
.floating-btn.call:hover {
    background-color: #b5952f;
}

@keyframes bounceIn {
    0% { transform: scale(0); opacity: 0; }
    80% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .floating-contact-container {
        bottom: 20px;
        right: 20px;
    }
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* Left Floating Tabs */
.left-floating-tabs {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 10000;
}

.left-tab {
    background: rgba(2, 5, 19, 0.95); /* Theme Dark Background */
    color: #d4af37; /* Theme Gold Text */
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 13px; /* Smaller font */
    padding: 15px 6px; /* Smaller padding */
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 4px 4px 0;
    transition: padding-left 0.3s ease, background 0.3s ease, color 0.3s ease;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    letter-spacing: 1px;
    border: 1px solid #d4af37; /* Gold border */
    border-left: none;
}

.left-tab:hover {
    padding-left: 15px; /* slide out effect */
    background: #d4af37; /* Solid gold on hover */
    color: #111; /* Dark text on hover */
}
