/* =========================================
   SEA STARS MANAGED IT - GLOBAL MNC THEME
   ========================================= */

:root {
    /* MNC Color Palette (Deep Corporate Blue & Gold/Orange Accent) */
    --primary: #003366;
    --primary-light: #004d99;
    --primary-dark: #001a33;
    --accent: #f59e0b;
    /* Professional Gold/Amber */
    --accent-light: rgba(245, 158, 11, 0.15);
    --accent-glow: rgba(245, 158, 11, 0.4);

    --success: #10b981;
    --danger: #ef4444;

    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #f8fafc;

    --bg-main: #ffffff;
    --bg-light: #f4f7fa;
    --bg-gradient: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --bg-dark: #0f172a;
    --bg-corporate-dark: #020617;

    --border-color: #e2e8f0;
    --border-white-10: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows - MNC Premium */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(0, 51, 102, 0.15);
    --shadow-glow-lg: 0 0 30px rgba(0, 51, 102, 0.25);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-main);
    overflow-x: hidden;
}

/* Base Typo & Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-main);
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.8rem;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 7rem 0;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.z-10 {
    z-index: 10;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-white {
    color: white !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-accent {
    color: var(--accent) !important;
}

.text-success {
    color: var(--success) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.bg-corporate-dark {
    background-color: var(--bg-corporate-dark);
}

.bg-primary-light {
    background-color: rgba(0, 51, 102, 0.1);
}

.bg-accent-light {
    background-color: var(--accent-light);
}

.flex {
    display: flex;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.items-start {
    align-items: flex-start;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.m-0 {
    margin: 0;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 2rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-5 {
    margin-bottom: 2rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.p-4 {
    padding: 1rem;
}

.pt-3 {
    padding-top: 1rem;
}

.py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-4 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.w-full {
    width: 100%;
}

.max-w-700 {
    max-width: 700px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.shadow-2xl {
    box-shadow: var(--shadow-2xl);
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 1rem;
}

.overflow-hidden {
    overflow: hidden;
}

.opacity-60 {
    opacity: 0.6;
}

.opacity-70 {
    opacity: 0.7;
}

.opacity-80 {
    opacity: 0.8;
}

.text-sm {
    font-size: 0.875rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.font-bold {
    font-weight: 700;
}

.block {
    display: block;
}

.border-t {
    border-top: 1px solid var(--border-color);
}

.border-l-4 {
    border-left: 4px solid;
}

.border-primary {
    border-color: var(--primary);
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary), #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-alt {
    background: linear-gradient(90deg, #fff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-tag {
    display: inline-block;
    padding: 0.35rem 1.2rem;
    background: rgba(0, 51, 102, 0.08);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 51, 102, 0.1);
}

.glass-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent);
    color: white;
}

.btn-outline-dark {
    border-color: var(--text-main);
    color: var(--text-main);
}

.btn-outline-dark:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-outline-light {
    border-color: white;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
}

.btn-lg {
    padding: 1.1rem 2.2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* Hovers & Animations Element */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-2xl);
}

.hover-lift-slow {
    transition: var(--transition-slow);
}

.hover-lift-slow:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.hover-glow:hover {
    box-shadow: 0 0 20px var(--accent-glow);
}

.hover-translate-x {
    transition: transform 0.3s ease;
}

.hover-translate-x:hover {
    transform: translateX(8px);
}

.hover-scale {
    transition: transform 0.5s ease;
}

.hover-scale:hover {
    transform: scale(1.03);
}

.hover-opacity-100:hover {
    opacity: 1;
}

.hover-accent:hover {
    color: var(--accent) !important;
}

.scale-105 {
    transform: scale(1.05);
}

/* Floating CTAs (WhatsApp & Phone) */
.floating-ctas {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    z-index: 9999;
}

.floating-ctas a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s;
}

.floating-ctas a:hover {
    transform: scale(1.1) translateY(-5px);
}

.cta-whatsapp {
    background: #25D366;
}

.cta-whatsapp:hover {
    background: #128C7E;
}

.cta-phone {
    background: var(--primary);
}

.cta-phone:hover {
    background: var(--accent);
}

.cta-email {
    background: var(--accent);
    color: #000 !important;
}

.cta-email:hover {
    background: #d97706;
    color: #000 !important;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact span {
    margin-right: 1.5rem;
}

.top-contact i {
    color: var(--accent);
    margin-right: 0.4rem;
}

.top-links a {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 1.2rem;
    transition: color 0.2s;
}

.top-links a:hover {
    color: var(--accent);
}

.top-links i {
    margin-right: 0.3rem;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: 0.2rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
    transition: height 0.3s;
}

.navbar.scrolled .nav-container {
    height: 75px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), #2563eb);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    font-size: 1.4rem;
    box-shadow: var(--shadow-sm);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--primary-dark);
    line-height: 1.1;
}

.logo-text span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .nav-btn {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
}

/* Swiper Hero Slider */
.hero-slider-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    width: 100%;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Slide Backgrounds */
.slide-1 {
    background: url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&q=80&w=2000') center/cover;
}

.slide-2 {
    background: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?auto=format&fit=crop&q=80&w=2000') center/cover;
}

.slide-3 {
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&q=80&w=2000') center/cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 26, 51, 0.9) 0%, rgba(0, 51, 102, 0.6) 50%, rgba(0, 26, 51, 0.9) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.slide-content.text-left  { align-items: center; text-align: center; }
.slide-content.text-center { align-items: center; text-align: center; }
.slide-content.text-right  { align-items: center; text-align: center; }

.slide-content h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    max-width: 900px;
}

.slide-content .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-bottom: 2.5rem;
}

.glass-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: white;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--success);
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.5rem;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary);
}

.swiper-pagination-bullet {
    background: white !important;
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent) !important;
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }

    .hero-slider-section {
        height: 75vh;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

/* Audit Form Section (Overlapping Hero) */
.quick-audit-section {
    margin-top: -100px;
    padding-bottom: 4rem;
    position: relative;
    z-index: 20;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid white;
    border-radius: 20px;
    padding: 3rem;
}

.audit-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.audit-text h3 {
    font-size: 2rem;
    color: var(--primary-dark);
}

.audit-benefits {
    margin-top: 1.5rem;
    list-style: none;
}

.audit-benefits li {
    margin-bottom: 0.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.horizontal-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.input-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

@media (max-width: 992px) {
    .quick-audit-section {
        margin-top: 2rem;
    }

    .audit-grid {
        grid-template-columns: 1fr;
    }
}

/* Infinite Logo Marquee */
.logo-marquee-section {
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.marquee-title {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light), transparent);
}

.marquee-track {
    display: inline-block;
    animation: marquee 35s linear infinite;
}

.random-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    color: #94a3b8;
    margin: 0 4rem;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.random-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    color: var(--primary-dark);
    transform: scale(1.1);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-visuals {
    position: relative;
}

.rounded-image {
    border-radius: 20px;
}

.image-small {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border: 10px solid white;
    z-index: 2;
}

.experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 1.5rem;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.2;
    z-index: 3;
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 800;
}

.experience-badge .text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.hover-glass:hover {
    background: var(--bg-light);
    border-color: var(--primary);
}

.f-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-item {
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: var(--transition);
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .image-small {
        right: 0;
    }
}

/* Super Premium Services Grid */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-premium-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-slow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-content-wrapper {
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.card-bg-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to top, var(--primary), var(--primary-light));
    z-index: 0;
    transition: height 0.5s ease;
    opacity: 0.95;
}

.service-premium-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: transparent;
}

.service-premium-card:hover .card-bg-animation {
    height: 100%;
}

.service-premium-card:hover .card-content-wrapper h3,
.service-premium-card:hover .card-content-wrapper p,
.service-premium-card:hover .arrow-link-animated {
    color: white;
}

.card-icon-3d {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition-slow);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.05), -10px -10px 20px #ffffff;
}

.service-premium-card:hover .card-icon-3d {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    box-shadow: none;
    transform: scale(1.1) rotate(5deg);
}

.arrow-link-animated {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    margin-top: 1.5rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.arrow-link-animated i {
    transition: transform 0.3s;
}

.service-premium-card:hover .arrow-link-animated i {
    transform: translateX(10px);
}

/* Card specific colors (optional accents on hover) */
.card-red:hover .card-bg-animation {
    background: linear-gradient(to top, #991b1b, #ef4444);
}

.card-cyan:hover .card-bg-animation {
    background: linear-gradient(to top, #0891b2, #06b6d4);
}

.card-purple:hover .card-bg-animation {
    background: linear-gradient(to top, #581c87, #a855f7);
}

.card-orange:hover .card-bg-animation {
    background: linear-gradient(to top, #c2410c, #f97316);
}

.card-emerald:hover .card-bg-animation {
    background: linear-gradient(to top, #065f46, #10b981);
}

@media (max-width: 1024px) {
    .premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .premium-grid {
        grid-template-columns: 1fr;
    }
}

/* Global Network Section */
.network {
    padding: 8rem 0;
    overflow: hidden;
}

.world-map-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg') center/cover no-repeat;
    opacity: 0.05;
    z-index: 1;
    filter: invert(1);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.loc-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem 2rem;
}

.loc-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.loc-card h4 {
    color: white;
    font-size: 1.5rem;
}

.loc-card p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

/* Industries Enhanced */
.industry-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: stretch;
}

.fancy-ind-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ind-item {
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.ind-icon-box {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.ind-item.active {
    background: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateX(15px);
}

.ind-item.active .ind-icon-box {
    background: var(--primary);
    color: white;
}

.ind-img-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.ind-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.ind-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.ind-card-content {
    padding: 3rem;
}

@media (max-width: 992px) {
    .industry-layout {
        grid-template-columns: 1fr;
    }

    .ind-item.active {
        transform: translateX(0);
    }
}

/* Parallax Stats */
.parallax-bg {
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&q=80&w=2000') center/cover fixed;
    padding: 8rem 0;
    color: white;
    position: relative;
}

.stats-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 26, 51, 0.85);
    backdrop-filter: blur(3px);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.glass-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 1rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.glass-stat .counter {
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.glass-stat .symbol {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

.glass-stat p {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}

/* Pricing Plans */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
    margin-top: 4rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 4rem 3rem;
    border: 1px solid var(--border-color);
    position: relative;
}

.shadow-hover:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.featured {
    border: 2px solid var(--primary);
    z-index: 2;
    background: #ffffff;
}

.pulse-bg {
    background: var(--primary);
    animation: pulse-shadow 2s infinite;
}

@keyframes pulse-shadow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 51, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 51, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 51, 102, 0);
    }
}

.featured-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 0.6rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.p-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.p-features ul {
    margin-bottom: 3rem;
}

.p-features li {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-main);
    font-weight: 500;
}

.p-features i {
    color: var(--success);
    margin-top: 5px;
    font-size: 1.1rem;
}

.p-features li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

.p-features li.disabled i {
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .scale-105 {
        transform: scale(1);
    }
}

/* Enhanced FAQ layout */
.sticky-side {
    position: sticky;
    top: 120px;
}

.faq-accordion {
    background: white;
    border: 1px solid var(--border-color);
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.8rem;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
    background: var(--bg-light);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary);
    font-size: 1.2rem;
}

.faq-item.active .faq-question {
    color: var(--primary);
    background: var(--bg-light);
}

.faq-item.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--bg-light);
}

.faq-answer p {
    padding: 0 1.8rem 1.8rem 1.8rem;
    margin: 0;
    color: var(--text-muted);
}

/* Mega Corporate Footer */
.footer-noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
}

.footer h3 {
    color: white;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    margin-bottom: 2rem;
}

.footer p {
    color: #cbd5e1;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    color: #cbd5e1;
    font-weight: 500;
}

.footer-links a:hover {
    color: orange;
    transform: translateX(5px);
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    margin-right: 0.5rem;
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.corporate-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #cbd5e1;
}

.corporate-contact i {
    font-size: 1.2rem;
    margin-top: 4px;
}

.filter-light {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.bg-gradient-brand {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .border-responsive {
        border-left: none;
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}



/* =============================================
   POPUP STYLES
   ============================================= */
#ss-popup-overlay {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#ss-popup-overlay.ss-popup-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.ss-popup-box {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    max-width: 460px;
    width: 90%;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-top: 4px solid var(--accent);
    animation: ss-popupIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes ss-popupIn {
    from { transform: scale(0.85); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

.ss-popup-close {
    position: absolute;
    top: 15px; right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #94a3b8;
    line-height: 1;
    transition: color 0.2s;
}
.ss-popup-close:hover { color: var(--primary); }

.ss-popup-header { text-align: center; margin-bottom: 2rem; }

.ss-popup-logo {
    width: 55px; height: 55px;
    background: linear-gradient(135deg, var(--primary), #2563eb);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: white;
}

.ss-popup-header h3 {
    color: var(--primary-dark);
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
}

.ss-popup-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.ss-popup-input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    margin-bottom: 1rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #f8fafc;
    display: block;
}

.ss-popup-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
    background: white;
}

.ss-popup-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.3s, transform 0.2s;
    margin-top: 0.5rem;
}

.ss-popup-btn:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-2px);
}

.ss-popup-note {
    text-align: center;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 1rem;
    margin-bottom: 0;
}

.ss-popup-logo {
    background: transparent !important;
}

.ss-popup-logo {
    background: transparent !important;
    width: 140px !important;
    height: 100px !important;
}



/* =============================================
   MOBILE ONLY — Desktop untouched (about us page -image)
   ============================================= */
@media (max-width: 768px) {

    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* Slider text fix */
    .slide-content h1 {
        font-size: 1.8rem;
        max-width: 100%;
        word-break: break-word;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    /* Slider buttons stack vertically */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Slide padding */
    .slide-content {
        padding: 0 1.2rem;
    }

    /* Swiper arrows hide */
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    /* Audit form section */
    .quick-audit-section {
        margin-top: 1rem;
    }

    .glass-panel {
        padding: 1.5rem;
    }

    .audit-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

}



@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr !important;
    }

    .image-box {
        display: block !important;
        width: 100% !important;
    }

    .animated-img-box {
        width: 100% !important;
        min-height: 250px !important;
    }

    .animated-img-box img {
        width: 100% !important;
        height: 300px !important;
        object-fit: cover !important;
        display: block !important;
    }

    .img-overlay-card {
        display: none !important;
    }
}







/* =========================================
   THANK YOU PAGE STYLES
   — Paste this at the very END of style.css
   ========================================= */

.ty-body {
    background-color: #020617;
    color: white;
    min-height: 100vh;
}

/* Navbar dark override */
.ty-body .navbar {
    background-color: rgba(2, 6, 23, 0.85) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ty-logo-text { color: white !important; }
.ty-logo-text span { color: rgba(255, 255, 255, 0.6) !important; }
.ty-nav-link { color: rgba(255, 255, 255, 0.85) !important; }
.ty-nav-link:hover { color: var(--accent) !important; }
.ty-nav-btn {
    background: var(--accent) !important;
    color: #000 !important;
    border: none !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
}
.ty-hamburger { color: white !important; }

/* Animated background */
.ty-bg-animated {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 51, 102, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(0, 77, 153, 0.2) 0%, transparent 60%),
        #020617;
}

/* Particles */
.ty-particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.ty-particle {
    position: absolute;
    border-radius: 50%;
    animation: ty-floatParticle linear infinite;
    opacity: 0;
}

@keyframes ty-floatParticle {
    0%   { transform: translateY(100vh) scale(0); opacity: 0; }
    10%  { opacity: 0.6; }
    90%  { opacity: 0.3; }
    100% { transform: translateY(-10vh) scale(1.2); opacity: 0; }
}

/* Main section */
.ty-section {
    position: relative;
    z-index: 10;
    min-height: calc(100vh - 130px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
}

/* Card */
.ty-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 5rem 4rem;
    text-align: center;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.ty-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* Icon */
.ty-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
}

.ty-icon-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: ty-glowPulse 2.5s ease-in-out infinite;
}

@keyframes ty-glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
}

.ty-check-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 15px rgba(16, 185, 129, 0.1), 0 0 0 30px rgba(16, 185, 129, 0.05);
    animation: ty-popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes ty-popIn {
    0%   { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Badge */
.ty-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: ty-fadeUp 0.6s 0.3s ease both;
}

.ty-pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: ty-pulseGreen 1.5s infinite;
}

@keyframes ty-pulseGreen {
    0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70%  { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Heading */
.ty-heading {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    animation: ty-fadeUp 0.6s 0.4s ease both;
}

.ty-gold-text {
    background: linear-gradient(90deg, var(--accent), #fcd34d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtitle */
.ty-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 3rem;
    animation: ty-fadeUp 0.6s 0.5s ease both;
}

.ty-subtitle strong { color: white; }

@keyframes ty-fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Info boxes */
.ty-info-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: ty-fadeUp 0.6s 0.6s ease both;
}

.ty-info-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.ty-info-box:hover {
    background: rgba(245, 158, 11, 0.05);
    border-color: rgba(245, 158, 11, 0.2);
    transform: translateY(-3px);
}

.ty-info-box i {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
    display: block;
}

.ty-info-box strong {
    display: block;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.ty-info-box p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

/* Divider */
.ty-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 2.5rem 0;
}

/* CTA Buttons */
.ty-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: ty-fadeUp 0.6s 0.7s ease both;
}

.ty-btn-gold {
    background: linear-gradient(135deg, var(--accent), #d97706);
    color: #000;
    padding: 1rem 2.2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.ty-btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.45);
    color: #000;
}

.ty-btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2.2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.ty-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    color: white;
}

/* Redirect notice */
.ty-redirect-notice {
    margin-top: 2.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    animation: ty-fadeUp 0.6s 0.8s ease both;
}

.ty-redirect-notice span {
    color: var(--accent);
    font-weight: 700;
}

/* Contact strip */
.ty-contact-strip {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: ty-fadeUp 0.6s 0.9s ease both;
}

.ty-contact-strip a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.ty-contact-strip a:hover { color: var(--accent); }
.ty-contact-strip i { color: var(--accent); }

/* Footer strip */
.ty-footer-strip {
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .ty-card { padding: 3rem 1.5rem; }
    .ty-heading { font-size: 2.2rem; }
    .ty-info-boxes { grid-template-columns: 1fr; }
    .ty-cta-buttons { flex-direction: column; }
    .ty-btn-gold, .ty-btn-outline { width: 100%; justify-content: center; }
}
