:root {
    --primary-red: #e52a21;
    --dark-red: hsl(0,0,0);
    
    --white: #ffffff;
    --color-background: #ece3eb;
  --color-text: #070717;
  --color-text-light: #444454;
  --color-primary: #cf40b0;
  --color-secondary: #4394f2;
  --color-accent: #f1ad15;
  --color-gray: #908f9d;
  --color-light-gray: #bab5bd;
  --color-black: #000;
  --color-white: #ffffff;
  --font-primary: 'Figtree', sans-serif;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 80px;
  --transition: all 0.3s ease;
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;500&display=swap');


        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #f0f0f0;
            
            overflow-x: hidden;
        }
/* SIMPLIFIED CSS FOR SCROLL ANIMATION */

/* Site header - ensure proper positioning */
.site-header {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #000;
    overflow: hidden;
}

/* Logo container - CRITICAL: Remove any conflicting transforms */
.logo-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 60;
    will-change: transform, opacity;
    text-align: center;
    width: 90%;
    /* IMPORTANT: Let GSAP handle all transforms */
}

/* Animated heading */
#animated-heading {
    color: #ffffff;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: normal;
    white-space: nowrap;
    text-align: center;
    margin: 0;
    pointer-events: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.3;
    opacity: 1;
    /* IMPORTANT: No transforms here - let GSAP handle it */
}

/* Grid container */
.grid-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 15px;
    padding: 15px;
    background: #000;
    z-index: 1;
}

.grid-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    opacity: 1;
}

/* FSM Menu button */
.fsm-menu-button {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 70; /* Higher than logo during animation */
    background: black;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Menu overlay */
.fsm-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: linear-gradient(135deg, #4169E1 0%, #1E90FF 100%);
    transform: translateY(100%);
    transition: transform 0.7s ease-in-out;
}

.fsm-menu-overlay.fsm-open {
    transform: translateY(0);
}

/* Overlay tint */
.overlay-tint {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, #1d1d1dff 0%, #000000ff 100%);
    opacity: 0.7;
    z-index: 5;
}



/* Ensure smooth scrolling */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


        /* Menu Button */
.fsm-menu-button {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 50;
    background: black;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.fsm-menu-button:hover {
    background: #333;
}

.fsm-hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 20px;
    height: 20px;
    justify-content: center;
}

.fsm-hamburger-line {
    width: 20px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.fsm-close-icon {
    display: none;
    width: 20px;
    height: 20px;
}

/* Menu Overlay */
.fsm-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: linear-gradient(135deg, #ffffff, #ffffff 100%);
    transform: translateY(100%);
    transition: transform 0.7s ease-in-out;
}

.fsm-menu-overlay.fsm-open {
    transform: translateY(0);
}

/* Header */
.fsm-menu-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 32px;
}

.fsm-logo {
    color: rgb(0, 0, 0);
    transform: translateX(-100%);
    opacity: 0;
    transition: all 0.7s ease;
}

.fsm-logo.fsm-animate {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.2s;
}

.fsm-logo-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fsm-logo-inner {
    width: 32px;
    height: 32px;
    background: rgb(0, 0, 0);
    border-radius: 4px;
}

/* safest override – keeps the text visible and forces it white */
.fsm-nav-item:hover .fsm-nav-item-title-static {
  color: #fff !important;
  opacity: 1 !important;   /* undo the “opacity: 0” that’s hiding it */
}

/* optional: smooth colour change without fading out */
.fsm-nav-item-title-static {
  transition: color 0.3s ease;  /* leave opacity alone */
}


.fsm-search-button {
    background: white;
    color: black;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateX(100%);
    opacity: 0;
}

.fsm-search-button.fsm-animate {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.3s;
}

.fsm-search-button:hover {
    background: #f0f0f0;
}

/* Main Content */
.fsm-menu-content {
    display: flex;
    justify-content: space-between;
    padding: 24px 32px;
}

/* Navigation */
.fsm-navigation {
    display: flex;
    flex-direction: column;
}

.fsm-nav-item {
    position: relative;
    margin-bottom: 4px;
    cursor: pointer;
    transform: translateX(-100%);
    opacity: 0;
    transition: all 0.7s ease;
}

.fsm-nav-item.fsm-animate {
    transform: translateX(0);
    opacity: 1;
}

.fsm-nav-item-bg {
    position: relative;
    overflow: hidden;
    background: transparent;
    width: 0%;
    min-width: 0px;
    transition: all 0.5s ease-out;
}

.fsm-nav-item:hover .fsm-nav-item-bg {
    background: rgb(0, 0, 0);
    width: 100%;
    min-width: 600px;
    color: white;
}

.fsm-nav-item-content {
    display: flex;
    align-items: center;
    padding: 16px 24px;
}

.fsm-nav-item-title {
    font-size: 5.2rem;
    font-weight: 300;
    color: rgb(0, 0, 0);
    transition: color 0.3s ease;
}

.fsm-nav-item-icon {
    margin-left: 32px;
    opacity: 0;
    transform: rotate(0deg);
    transition: all 0.3s ease;
}

.fsm-nav-item:hover .fsm-nav-item-icon {
    opacity: 1;
    transform: rotate(12deg);
    animation: fsm-pulse 2s infinite;
}

.fsm-nav-item-title-static {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 5.2rem;
    font-weight: 300;
    color: rgb(0, 0, 0);
    padding: 16px 0;
    transition: opacity 0.3s ease;
}

div#services-nav-item {
    height: 130px;
}

.fsm-nav-item:hover .fsm-nav-item-title-static:hover {
    opacity: 0;
    color: white;
}

.fsm-nav-item-title-static:hover {
  color: #ffffff !important;
}

.fsm-navigation a {
  text-decoration: none !important;
}

/* optional: also kill it on hover/focus */
.fsm-navigation a:hover,
.fsm-navigation a:focus {
  text-decoration: none !important;
}


/* Subscribe Section */
.fsm-subscribe-section {
    color: white;
    max-width: 400px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.7s ease;
    margin-left: auto;
}

.fsm-subscribe-section.fsm-animate {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.5s;
}

.fsm-subscribe-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 24px;
    color: rgb(0, 0, 0);
}

.fsm-subscribe-text {
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.9;
    color: rgb(0, 0, 0);
}

.fsm-email-form {
    display: flex;
    margin-bottom: 48px;
    transform: translateY(32px);
    opacity: 0;
    transition: all 0.7s ease;
}

.fsm-email-form.fsm-animate {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.7s;
}

.fsm-email-icon {
    background: black;
    padding: 16px;
    border-radius: 6px 0 0 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fsm-email-input {
    flex: 1;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.9);
    color: black;
    
    border-radius: 0 6px 6px 0;
    font-size: 1rem;
}

.fsm-email-input::placeholder {
    color: #666;
}

.fsm-email-input:focus {
    outline: none;
    background: white;
}

/* Social Links */
.fsm-social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.fsm-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    transition: all 0.7s ease;
    transform: translateY(32px);
    opacity: 0;
}

.fsm-social-link.fsm-animate {
    transform: translateY(0);
    opacity: 1;
}

.fsm-social-link:hover {
    color: #000000;
}

.fsm-social-link-text {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

/* Footer */
.fsm-menu-footer {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: rgb(0, 0, 0);
    transform: translateY(32px);
    opacity: 0;
    transition: all 0.7s ease;
}

.fsm-menu-footer.fsm-animate {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 1s;
}

.fsm-footer-addresses {
    display: flex;
    gap: 64px;
}

.fsm-footer-address {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.fsm-footer-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.fsm-footer-email {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.fsm-login-button {
    background: black;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.fsm-login-button:hover {
    background: #333;
}

@keyframes fsm-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* SVG Icons */
.fsm-icon {
    width: 48px;
    height: 48px;
    stroke: white;
    fill: none;
    stroke-width: 1.5;
}

.fsm-small-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* pull the nav out of the flow and pin it top-right */
.fsm-nav-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
  margin: 0;
  padding: 0;
}

/* --- Submenu Styles (Desktop) --- */
.fsm-nav-item--has-submenu {
    position: relative;
}

.fsm-submenu {
    position: absolute;
    top: 1rem;
    left: 100%;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(10px);
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
    pointer-events: none;
}

.fsm-nav-item--has-submenu.fsm-open .fsm-submenu {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

.fsm-submenu-item {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgb(0, 0, 0);
    padding: 8px 16px;
    cursor: pointer;
    background: transparent;
    border-radius: 999px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.fsm-submenu-item:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #1E90FF;
}

.fsm-submenu-indicator {
    display: inline-block;
    margin-left: 16px;
    font-size: 4rem;
    transition: transform 0.3s ease;
}

.fsm-nav-item--has-submenu.fsm-open .fsm-submenu-indicator {
    transform: rotate(135deg);
}

.fsm-nav-item--has-submenu:hover .fsm-nav-item-bg,
.fsm-nav-item--has-submenu .fsm-nav-item-title:hover ~ .fsm-nav-item-bg,
.fsm-nav-item--has-submenu .fsm-nav-item-title-static:hover ~ .fsm-nav-item-bg {
    min-width: 600px;
}


/*
============================================
--- MOBILE OPTIMIZATION STYLES ---
============================================
*/

/* Hide mobile-only buttons on desktop */
.fsm-mobile-bottom-bar {
    display: none;
}

@media (max-width: 992px) {
   .fsm-menu-overlay.fsm-open ~ .fsm-menu-button {
    display: none;
}
}

/* Using 992px as a breakpoint for tablets and phones */
@media (max-width: 992px) {

    /* --- General Overlay Adjustments --- */
    .fsm-menu-overlay {
        background: #ffffff; /* Solid blue to match image */
        overflow-y: auto;    /* Allow scrolling on small screens */
        padding-bottom: 120px; /* Space for the fixed bottom bar */
    }

    /* Move the menu button to the top right */
    .fsm-menu-button {
         top: 1rem;
         right: 1rem;
         left: auto; /* Override desktop style */
    }
    
    .fsm-nav-container {
        top: 0;
        right: 0;
    }

    /* --- Mobile Header --- */
    .fsm-menu-header {
        padding: 1rem;
        justify-content: flex-start; /* Align logo to the left */
    }
    
    /* Hide the search button on mobile per your request */
    .fsm-search-button {
        display: none;
    }

    /* --- Mobile Content Layout --- */
    .fsm-menu-content {
        flex-direction: column; /* Stack nav and other content vertically */
        padding: 1rem;
        gap: 40px;
    }

    /* --- Mobile Navigation Links --- */
    .fsm-navigation {
        width: 100%;
    }
    
    .fsm-nav-item {
        margin-bottom: 0;
        height: auto !important; /* Override specific height on #services-nav-item */
    }

    /* Hide the complex desktop hover effect */
    .fsm-nav-item-bg {
        display: none;
    }
    
    /* Use the static title as the main visible link */
    .fsm-nav-item-title-static {
        position: static; /* Remove absolute positioning */
        padding: 8px 0;
        opacity: 1; /* Make it always visible */
        color: #000000;
        font-family: "Serif", "Times New Roman", Times, serif; /* Serif font like image */
        font-size: clamp(2.5rem, 10vw, 3.5rem); /* Responsive font size */
        font-weight: 400;
        line-height: 1.2;
    }
    
    /* Hide desktop-only title and icon */
    .fsm-nav-item-title,
    
    .fsm-nav-item:hover .fsm-nav-item-title-static {
  color: #fff !important;
  opacity: 1 !important;   /* undo the “opacity: 0” that’s hiding it */
}
   
    
    /* --- Mobile Secondary Links (using your social links) --- */
    .fsm-subscribe-section {
        max-width: 100%;
        transform: none !important; /* Disable desktop animations */
        opacity: 1 !important;
    }

    /* Hide the desktop subscribe form elements */
    .fsm-subscribe-title,
    .fsm-subscribe-text,
    .fsm-email-form {
        display: none;
    }
    
    .fsm-social-links {
        gap: 16px 24px; /* Row and column gap */
        margin-bottom: 40px;
    }

    .fsm-social-link {
        transform: none !important; /* Disable desktop animations */
        opacity: 1 !important;
        gap: 12px;
    }
    
    .fsm-social-link-text {
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        font-family: "monospace", "Courier New", Courier; /* Blocky font like image */
        text-transform: uppercase;
    }
    
    .fsm-small-icon { /* The arrow icon */
        width: 12px;
        height: 12px;
        stroke-width: 2.5;
    }

    /* --- Mobile Footer --- */
    .fsm-menu-footer {
        position: static; /* Let it flow in the document */
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 1rem;
        transform: none !important; /* Disable desktop animations */
        opacity: 1 !important;
        padding-top: 5rem;
    }

    .fsm-footer-addresses {
        flex-direction: column;
        gap: 16px;
    }
    
    .fsm-footer-address, .fsm-footer-email {
        font-family: "monospace", "Courier New", Courier;
    }

    /* Hide the desktop login button */
    .fsm-login-button {
        display: none;
    }
    
    /* --- Mobile Bottom Bar (SUBSCRIBE & CLOSE) --- */
    .fsm-mobile-bottom-bar {
        display: flex; /* Show the bar on mobile */
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 60;
        padding: 12px;
        background-color: #ffffff; /* Match background */
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .fsm-mobile-subscribe-btn,
    .fsm-mobile-close-btn {
        flex: 1;
        padding: 16px;
        font-size: 0.875rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: background-color 0.2s ease;
    }

    .fsm-mobile-subscribe-btn {
        background-color: #FFFFFF;
        color: #000000;
        margin-right: 6px;
    }
    
    .fsm-mobile-close-btn {
        background-color: #000000;
        color: #FFFFFF;
        margin-left: 6px;
    }
    /*
  On mobile, the parent .fsm-nav-item needs to act as the
  positioning container for the hover effect.
*/
.fsm-nav-item {
    position: relative;
    overflow: hidden; /* Prevents content from spilling out */
}

/* 1. On hover, hide the static title (this rule already exists, but now it will work correctly) */
.fsm-nav-item:hover .fsm-nav-item-title-static {
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* 2. Re-enable and style the hover container (.fsm-nav-item-bg) */
.fsm-nav-item:hover .fsm-nav-item-bg {
    display: block; /* Make it visible again */
    position: absolute; /* Overlay it on top of the static text's space */
    inset: 0; /* Same as top:0, left:0, bottom:0, right:0 */
    width: 100%;
    min-width: auto; /* Reset desktop style */
    background: black;
}

/* 3. Style the content inside the black hover box */
.fsm-nav-item:hover .fsm-nav-item-content {
    display: flex;
    justify-content: space-between; /* Pushes title left, icon right */
    align-items: center;
    padding: 0; /* Reset desktop padding */
    height: 100%;
}

/* 4. Show the title that lives inside the hover box and match its style */
.fsm-nav-item:hover .fsm-nav-item-title {
    display: block; /* Make it visible */
    padding: 8px 0;
    font-size: clamp(2.5rem, 10vw, 3.5rem); /* Match the static title font */
    font-weight: 400;
}

/* 5. Show the icon again and position it */
.fsm-nav-item:hover .fsm-nav-item-icon {
    display: block; /* Make it visible */
    opacity: 1; /* Ensure it's not transparent */
    margin-left: 1rem;
    animation: none; /* Disable the desktop pulse animation if not desired */
}
.fsm-nav-item--has-submenu .fsm-nav-item-title-static {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Style the '+' indicator */
.fsm-submenu-indicator {
    display: inline-block; /* Make sure it's visible */
    font-size: clamp(2.5rem, 10vw, 3.5rem); /* Match title font size */
    font-weight: 300;
    transition: transform 0.3s ease;
}

/* Rotate the '+' to an 'x' when the submenu is open */
.fsm-nav-item--has-submenu.fsm-open .fsm-submenu-indicator {
    transform: rotate(45deg);
}

/* Style the submenu container itself */
.fsm-submenu {
    display: block; /* Ensure it's not hidden */
    overflow: hidden; /* Crucial for the slide animation */
    max-height: 0; /* Hidden by default */
    padding-left: 1rem; /* Indent the submenu items */
    transition: max-height 0.4s ease-out; /* Animate the opening/closing */
}

/* When open, give it a max-height to reveal the content */
.fsm-nav-item--has-submenu.fsm-open .fsm-submenu {
    max-height: 200px; /* Adjust if you have more/taller items */
}

/* Style the individual submenu links */
.fsm-submenu-item {
    display: block; /* Ensure it's visible */
    padding: 8px 0;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.85); /* Slightly transparent for hierarchy */
    cursor: pointer;
    transition: color 0.2s ease;
}

.fsm-submenu-item:hover {
    color: #afafaf; /* Brighten on hover */
}
/* IMPORTANT: Allow content to be visible outside the nav item's bounds */
.fsm-nav-item {
    overflow: visible; /* This was 'hidden', now it's 'visible' */
}

/* --- Style the "Services" item when it's open --- */

/* 1. When open, hide the original white "Services +" text */
.fsm-nav-item--has-submenu.fsm-open .fsm-nav-item-title-static {
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* 2. When open, show the black bar background */
.fsm-nav-item--has-submenu.fsm-open .fsm-nav-item-bg {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    min-width: auto;
    background: black;
}

/* 3. When open, show the "Services" text that lives inside the black bar */
.fsm-nav-item--has-submenu.fsm-open .fsm-nav-item-title {
    display: block;
    padding: 8px 0;
    font-size: clamp(2.5rem, 10vw, 3.5rem);
    font-weight: 400;
}

/* 4. When open, show and position the submenu on the right */
.fsm-submenu {
    position: absolute;
    top: 8px; /* Align with the parent item's padding */
    right: 1rem; /* A little space from the screen edge */
    
    /* Animation */
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}
.fsm-nav-item--has-submenu.fsm-open .fsm-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

/* 5. Style the individual submenu items */
.fsm-submenu-item {
    display: block;
    text-align: right; /* Align text to the right */
    padding: 2px 0;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}
.fsm-submenu-item:hover {
    color: rgb(141, 141, 141);
}
}
.fsm-nav-item-icon {
            margin-left: 32px;
            opacity: 0;
            transform: rotate(0deg);
            transition: all 0.3s ease;
        }

        .fsm-nav-item:hover .fsm-nav-item-icon {
            opacity: 1;
            transform: rotate(12deg);
            animation: fsm-pulse 2s infinite;
        }


        @media (max-width: 992px) {
    /* Fix the submenu positioning for mobile */
    .fsm-submenu {
        position: static; /* Change from absolute to static */
        top: auto;
        right: auto;
        left: auto;
        
        /* Remove the absolute positioning transforms */
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        
        /* Style as a dropdown list */
        padding-left: 1rem;
        margin-top: 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }
    
    /* When open, show the submenu */
    .fsm-nav-item--has-submenu.fsm-open .fsm-submenu {
        max-height: 200px; /* Adjust based on your content */
    }
    
    /* Style the submenu items for mobile */
    .fsm-submenu-item {
        display: block;
        text-align: left; /* Align to left instead of right */
        padding: 8px 0;
        font-size: 1.1rem;
        font-weight: 400;
        color: rgba(0, 0, 0, 0.9);
        cursor: pointer;
        border-left: 2px solid rgba(255, 255, 255, 0.3); /* Optional: add a visual indicator */
        padding-left: 1rem;
    }
    
    .fsm-submenu-item:hover {
        color: rgb(0, 0, 0);
        border-left-color: white;
    }
    
    /* Ensure the parent nav item allows overflow */
    .fsm-nav-item--has-submenu {
        overflow: visible !important;
    }
    
    /* Fix the Services item styling when open */
    .fsm-nav-item--has-submenu.fsm-open .fsm-nav-item-bg {
        position: relative; /* Change from absolute */
        background: black;
        padding: 8px 0;
        border-radius: 4px;
    }
}

.fsm-nav-link {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Times New Roman", serif;
    overflow-x: hidden;
    background-color: hsl(0, 0%, 100%);
}

.site-header {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: hsl(0, 0%, 9%);
    overflow: hidden;
}

.main-nav {
    position: fixed;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    z-index: 100;
}

.nav-left {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-left li {
    display: inline-block;
}

.nav-left li a, .nav-right a {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
}

.nav-left li.active {
    font-style: italic;
}


.grid-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

/* White overlay for wipe effect - UPDATE THE EXISTING ONE */
.white-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #ffffff 0%, transparent 100%);
    z-index: 4;
    transform: translateY(100%);
}

/* Content section updates */
.content-section {
    position: relative;
    min-height: 100vh;
    padding: 6rem 2rem 2rem;
    background: linear-gradient(to bottom, #000000 0%, #080808 100%);
    /* Add these z-index properties */
    z-index: 2;
}

.logo-slider-section {
            position: relative;
            padding: 80px 20px 60px;
            overflow: hidden;
            background: hsl(0, 0%, 100%);
        }

        .slider-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .slider-tagline {
            font-size: clamp(24px, 4vw, 37px);
            font-weight: 300;
            color: hsl(0, 0%, 0%);
            letter-spacing: -0.02em;
            line-height: 1.3;
            margin-bottom: 1rem;
            position: relative;
        }

        .slider-tagline::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 1px;
            background: #000000;
        }

        .section-subtitle {
            font-size: clamp(14px, 2.5vw, 16px);
            color: hsl(0, 0%, 40%);
            line-height: 1.5;
            margin-top: 2rem;
        }

        /* Slider Container */
        .slider-container {
            width: 100%;
            overflow: hidden;
            margin-bottom: 40px;
            height: 120px;
        }

        .slider-container:last-child {
            margin-bottom: 0;
        }

        /* Slider Track */
        .slider-track {
            display: flex;
            width: calc(200%);
            height: 100%;
        }

        /* Row 1 - Slides Left */
        .slider-container:nth-child(2) .slider-track {
            animation: slideLeft 30s linear infinite;
        }

        /* Row 2 - Slides Right */
        .slider-container:nth-child(3) .slider-track {
            animation: slideRight 35s linear infinite;
        }

        /* Row 3 - Slides Left */
        .slider-container:nth-child(4) .slider-track {
            animation: slideLeft 40s linear infinite;
        }

        .slider-row {
            display: flex;
            align-items: center;
            justify-content: space-evenly;
            width: 50%;
            height: 100%;
            gap: 20px;
            padding: 0 20px;
        }

        .logo-item {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 80px;
            width: 140px;
            border-radius: 16px;
            background: hsla(0, 0%, 100%, 0.9);
            border: 1px solid hsla(220, 15%, 85%, 0.6);
            box-shadow: 0 4px 15px hsla(220, 15%, 0%, 0.08);
            transition: transform 0.3s ease;
        }

        .logo-item img {
            max-height: 40px;
            max-width: 100px;
            object-fit: contain;
            filter: grayscale(100%) brightness(0.6);
            transition: filter 0.3s ease;
        }

        /* Hover effects for desktop */
        @media (hover: hover) and (pointer: fine) {
            .logo-item:hover {
                transform: translateY(-4px);
            }

            .logo-item:hover img {
                filter: grayscale(0%) brightness(0.8);
            }

            .slider-track:hover {
                animation-play-state: paused;
            }
        }

        /* Animations */
        @keyframes slideLeft {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes slideRight {
            0% {
                transform: translateX(-50%);
            }
            100% {
                transform: translateX(0);
            }
        }

        /* Mobile Optimizations */
        @media (max-width: 768px) {
            .logo-slider-section {
                padding: 60px 15px 40px;
            }

            .slider-header {
                margin-bottom: 40px;
            }

            .slider-container {
                margin-bottom: 30px;
                height: 100px;
            }

            .logo-item {
                width: 120px;
                height: 70px;
                border-radius: 12px;
            }

            .logo-item img {
                max-height: 35px;
                max-width: 85px;
            }

            .slider-row {
                gap: 15px;
                padding: 0 15px;
            }

            /* Slower animations on mobile for better performance */
            .slider-container:nth-child(2) .slider-track {
                animation-duration: 40s;
            }

            .slider-container:nth-child(3) .slider-track {
                animation-duration: 45s;
            }

            .slider-container:nth-child(4) .slider-track {
                animation-duration: 50s;
            }
        }

        @media (max-width: 480px) {
            .logo-slider-section {
                padding: 40px 10px 30px;
            }

            .slider-container {
                height: 90px;
                margin-bottom: 25px;
            }

            .logo-item {
                width: 100px;
                height: 60px;
                margin: 0 5px;
            }

            .logo-item img {
                max-height: 30px;
                max-width: 75px;
            }

            .slider-row {
                gap: 10px;
                padding: 0 10px;
            }
        }

        /* Reduced motion support */
        @media (prefers-reduced-motion: reduce) {
            .slider-track {
                animation: none !important;
            }
        }



/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    writing-mode: vertical-lr;
    font-size: 0.9rem;
    color: #888;
    z-index: 10;
    opacity: 0.7;
}

/* Overlay for gradient transition */
.overlay-tint {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, var(--dark-red) 0%, var(--light-red) 100%);
    opacity: 0.7;
}





.tagline {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.01em;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
    max-width: 900px;
}

.brand-intro {
    font-size: clamp(0.65rem, 1vw, 0.75rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.25rem;
    text-align: center;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #ffffff;
    line-height: 1.2;
    text-align: center;
}

.content-section {
    position: relative;
    min-height: 100vh;
    padding: 4rem 2rem 2rem;
    background: linear-gradient(to bottom, #000000 0%, #080808 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tagline-container {
    max-width: 900px;
    margin: 0 auto;
    opacity: 1;
}





 .spacer {
            height: 100vh;
            background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            opacity: 0.5;
        }

        /* Content section updates */
        .content-section {
            position: relative;
            min-height: 100vh;
            padding: 4rem 2rem 2rem;
            background: linear-gradient(to bottom, #000000 0%, #080808 100%);
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .tagline-container {
            max-width: 900px;
            margin: 0 auto;
            opacity: 1; /* Changed from 0 since we'll animate individual words */
        }

        .tagline {
            font-size: clamp(1rem, 1.8vw, 1.25rem);
            font-weight: 400;
            line-height: 1.6;
            letter-spacing: 0.01em;
            margin-bottom: 2rem;
            color: #ffffff;
            text-align: center;
            max-width: 900px;
        }

        /* Animation-specific styles for words */
        .tagline-word {
            display: inline-block;
            transform: translateX(-200px);
            opacity: 0;
            margin-right: 0.3em;
            margin-bottom: 0.2em;
        }

        .brand-intro {
            font-size: clamp(0.75rem, 1.2vw, 0.875rem);
            font-weight: 300;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.6);
            margin-bottom: 0.5rem;
            text-align: center;
        }

        .brand-intro-word {
            display: inline-block;
            transform: translateX(-150px);
            opacity: 0;
            margin-right: 0.3em;
        }

        .brand {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.25rem, 5vw, 3.5rem);
            font-weight: 500;
            letter-spacing: 0.02em;
            color: #ffffff;
            line-height: 1.2;
            text-align: center;
        }

        .brand-word {
            display: inline-block;
            transform: translateX(-300px);
            opacity: 0;
            margin-right: 0.1em;
        }

        /* White overlay for wipe effect */
        .white-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, #ffffff 0%, transparent 100%);
            z-index: 4;
            transform: translateY(100%);
        }

        /* Progress indicator */
        .content-progress {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 4px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 2px;
            z-index: 100;
        }

        .content-progress-fill {
            height: 100%;
            background: #ffffff;
            border-radius: 2px;
            width: 0%;
            transition: width 0.1s ease;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .content-section {
                padding: 3rem 1rem 2rem;
            }
            
            .tagline {
                font-size: 0.95rem;
                line-height: 1.5;
                margin-bottom: 1.5rem;
            }

            .brand {
                font-size: 1.5rem;
            }

            .brand-intro {
                font-size: 0.6rem;
            }
        }



rect {
    background: #2a2a2a;
}

/* === RESPONSIVE PARALLAX SCENE STYLES ===================== */
/* The section itself - this will be pinned */
#parallax-scene {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px; /* Minimum height for very small screens */
    background: #2a2a2a;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    overflow: hidden;
}

/* This container holds the SVG and will stay pinned */
#parallax-scene .parallax-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    z-index: 1;
}

/* Remove the scroll distance div - no longer needed */
#parallax-scene .parallax-scroll-dist {
    display: none;
}

/* SVG styles */
#parallax-scene svg {
    width: 100%;
    height: 100%;
    display: block; /* Prevents inline spacing issues */
}

#parallax-scene text {
    text-anchor: middle;
    dominant-baseline: middle;
}

/* RESPONSIVE TEXT SIZING - This is the key improvement */
#parallax-scene .headline {
    font-size: clamp(2.5rem, 8vw, 6.2rem); /* Responsive between 40px and 99px */
    font-weight: 900;
    letter-spacing: -0.02em; /* Tighter spacing for large text */
    line-height: 1.1; /* Better line height for mobile */
}

#parallax-scene .subline {
    font-size: clamp(1rem, 2.5vw, 1.75rem); /* Responsive between 16px and 28px */
    letter-spacing: 0.05em; /* Slightly looser than before for readability */
}

#parallax-scene .arrow {
    fill: #fff;
    cursor: pointer;
    transition: transform 0.3s ease; /* Smooth transitions */
}

/* TABLET SPECIFIC ADJUSTMENTS */
@media (max-width: 1024px) and (min-width: 769px) {
    #parallax-scene .headline {
        font-size: clamp(3rem, 7vw, 5rem);
    }
    
    #parallax-scene .subline {
        font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    }
}

/* MOBILE SPECIFIC ADJUSTMENTS */
@media (max-width: 768px) {
    #parallax-scene {
        height: 100vh;
        min-height: 500px; /* Reduced min-height for mobile */
    }
    
    #parallax-scene .parallax-container {
        height: 100vh;
        min-height: 500px;
    }
    
    /* Adjust text positioning and sizing for mobile */
    #parallax-scene .headline {
        font-size: clamp(2rem, 10vw, 4rem);
        line-height: 1.1;
        letter-spacing: -0.01em;
    }
    
    #parallax-scene .subline {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
        letter-spacing: 0.03em;
    }
    
    /* Make arrow slightly larger on mobile for better touch targets */
    #parallax-scene .arrow {
        transform: scale(1.2);
    }
}

/* SMALL MOBILE ADJUSTMENTS */
@media (max-width: 480px) {
    #parallax-scene {
        min-height: 450px; /* Even smaller min-height for tiny screens */
    }
    
    #parallax-scene .parallax-container {
        min-height: 450px;
    }
    
    #parallax-scene .headline {
        font-size: clamp(1.8rem, 12vw, 3rem);
        line-height: 1.05;
    }
    
    #parallax-scene .subline {
        font-size: clamp(0.8rem, 5vw, 1rem);
    }
    
    /* Larger arrow for small screens */
    #parallax-scene .arrow {
        transform: scale(1.4);
    }
}

/* LANDSCAPE MOBILE ADJUSTMENTS */
@media (max-height: 500px) and (orientation: landscape) {
    #parallax-scene {
        min-height: 400px;
    }
    
    #parallax-scene .parallax-container {
        min-height: 400px;
    }
    
    #parallax-scene .headline {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
    }
    
    #parallax-scene .subline {
        font-size: clamp(0.7rem, 3vw, 0.9rem);
    }
}

/* PREVENT HORIZONTAL SCROLLING - Very important for mobile */
body {
    overflow-x: hidden;
}

/* PERFORMANCE OPTIMIZATIONS */
#parallax-scene * {
    will-change: transform; /* Hint to browser for hardware acceleration */
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    #parallax-scene * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        will-change: auto !important;
    }
}

/* HIGH DPI DISPLAY ADJUSTMENTS */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    #parallax-scene .headline {
        letter-spacing: -0.03em; /* Tighter spacing on high-DPI screens */
    }
}

/* DARK MODE SUPPORT (if your site supports it) */
@media (prefers-color-scheme: dark) {
    #parallax-scene {
        background: #0a0f1a; /* Slightly darker background */
    }
}

/* TypeIt CSS customizations */
.ti-cursor {
    display: inline-block;
    color: white;
}

/*pricing*/
   .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 20px;
    }
    
    .hero-section {
        text-align: center;
        margin-bottom: 80px;
    }
    
    .hero-title {
        font-size: 56px;
        font-weight: 600;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 48px;
        font-weight: 300;
        font-style: italic;
    }
    
    .subscription-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 120px;
        margin-bottom: 60px;
        align-items: center;
    }
    
    .card-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: white;
        padding: 60px 40px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    
    .black-card {
        width: 380px;
        height: 240px;
        background: #2a2a2a;
        border-radius: 16px;
        position: relative;
        box-shadow: 0 15px 35px rgba(0,0,0,0.3);
        margin-bottom: 40px;
        transform: rotate(-5deg);
        transition: transform 0.3s ease;
    }
    
    .black-card:hover {
        transform: rotate(-3deg);
    }
    
    .card-chip {
        position: absolute;
        left: 30px;
        top: 40px;
        width: 50px;
        height: 40px;
        background: linear-gradient(135deg, #ffd700, #ffed4b);
        border-radius: 6px;
    }
    
    .card-number {
        position: absolute;
        left: 30px;
        bottom: 80px;
        color: #fff;
        font-size: 24px;
        letter-spacing: 3px;
        font-family: 'Courier New', monospace;
    }
    
    .card-details {
        position: absolute;
        left: 30px;
        bottom: 30px;
        color: #aaa;
        font-size: 14px;
    }
    
    .card-logo {
        position: absolute;
        right: 30px;
        bottom: 30px;
        width: 60px;
        height: 40px;
        background: #fff;
        border-radius: 6px;
        opacity: 0.9;
    }
    
    .world-map {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.1;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600'%3E%3Cpath d='M100,300 Q200,200 300,300 T500,300 Q600,200 700,300 T900,300' stroke='white' fill='none' stroke-width='2'/%3E%3C/svg%3E");
        background-size: cover;
        border-radius: 16px;
    }
    
    .start-button {
        background: #ffd93d;
        color: #1a1a1a;
        padding: 14px 28px;
        border-radius: 25px;
        font-size: 16px;
        font-weight: 600;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        margin-bottom: 30px;
    }
    
    .start-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 217, 61, 0.4);
    }
    
    .join-text {
        font-size: 48px;
        font-weight: 600;
        line-height: 1.1;
    }
    
    .pricing-section {
    background: linear-gradient(145deg, #2c2c2c 0%, #1a1a1a 50%, #000000 100%);
    padding: 40px 35px;
    border-radius: 24px;
    color: white;
    width: 450px;
    position: relative;
    
    /* 3D Shadow Effect */
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),        /* Large dark shadow */
        0 15px 30px rgba(0, 0, 0, 0.3),        /* Medium shadow */
        0 5px 15px rgba(0, 0, 0, 0.2),         /* Small shadow */
        0 0 0 1px rgba(255, 255, 255, 0.05) inset, /* Inner light border */
        0 1px 0 rgba(255, 255, 255, 0.1) inset;    /* Top highlight */
    
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-section:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.5),
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 1px 0 rgba(255, 255, 255, 0.15) inset;
}

/* Glossy overlay effect */
.pricing-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, 
        rgba(255,255,255,0.08) 0%, 
        rgba(255,255,255,0.02) 50%, 
        transparent 100%);
    border-radius: 24px 24px 0 0;
    pointer-events: none;
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 600;
}

.pricing-header small {
    background: linear-gradient(135deg, #ff6b35, #ff4757);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    
    box-shadow: 
        0 4px 8px rgba(255, 107, 53, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.2);
}

.price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.1);
}

.join-button {
    width: 100%;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: white;
    border: none;
    padding: 18px 24px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    
    /* 3D Button Effect */
    box-shadow: 
        0 8px 16px rgba(255, 107, 53, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    
    transition: all 0.3s ease;
}

.join-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 24px rgba(255, 107, 53, 0.5),
        0 6px 12px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
    margin-bottom: 35px;
}

/* card section */

.card-section {
      position:relative;
      width:520px;
      padding:70px 50px;
      border-radius:32px;
      text-align:center;
      background:linear-gradient(145deg,#fff 0%,#f8f9fb 50%,#f0f2f5 100%);
      box-shadow:
        0 30px 60px rgba(0,0,0,0.12),
        0 20px 40px rgba(0,0,0,0.08),
        0 10px 20px rgba(0,0,0,0.04),
        inset 0 0 0 1px rgba(255,255,255,0.8),
        inset 0 1px 0 rgba(255,255,255,0.9);
      transition:transform .4s cubic-bezier(.175,.885,.32,1.275),
                 box-shadow .4s cubic-bezier(.175,.885,.32,1.275);
    }
    .card-section:hover {
      transform:translateY(-5px);
      box-shadow:
        0 40px 80px rgba(0,0,0,0.15),
        0 25px 50px rgba(0,0,0,0.1),
        0 15px 30px rgba(0,0,0,0.06),
        inset 0 0 0 1px rgba(255,255,255,0.9),
        inset 0 1px 0 rgba(255,255,255,1);
    }
    .card-section::before {
      content:'';
      position:absolute;top:0;left:0;right:0;
      height:60%;
      background:linear-gradient(180deg,rgba(255,255,255,0.4) 0%,rgba(255,255,255,0.1) 50%,transparent 100%);
      border-radius:32px 32px 0 0;
      pointer-events:none;
      z-index:1;
    }

    /* 1) perspective */
    .card-container {
      width:300px; height:190px;
      margin:0 auto 50px;
      perspective:1000px;
      position:relative; z-index:2;
    }

    /* 2) static tilt */
    .tilt-wrapper {
      width:100%; height:100%;
      transform-style:preserve-3d;
      transform-origin:center center;
      transform:rotateZ(-8deg) rotateX(5deg);
    }

    /* 3) only Y flips */
    .flip-wrapper {
      width:100%; height:100%;
      transform-style:preserve-3d;
      transform-origin:center center;
      transform:rotateY(0deg);
      transition:transform .8s cubic-bezier(.175,.885,.32,1.275);
      cursor:pointer;
    }
    .card-container:hover .flip-wrapper,
    .card-container.is-flipped .flip-wrapper {
      transform:rotateY(180deg);
    }

    .card-face {
      position:absolute; top:0; left:0;
      width:100%; height:100%;
      border-radius:16px;
      backface-visibility:hidden;
      background:linear-gradient(145deg,#2a2a2a 0%,#1a1a1a 50%,#000 100%);
      color:#fff;
      box-shadow:
        0 15px 30px rgba(0,0,0,0.4),
        0 8px 16px rgba(0,0,0,0.3),
        0 4px 8px rgba(0,0,0,0.2),
        inset 0 0 0 1px rgba(255,255,255,0.1);
      overflow:hidden;
    }
    .card-front {
      padding:20px;
      position:relative;
    }
    .world-map {
      position:absolute; top:0; right:0;
      width:100%; height:100%;
      background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 60"><path d="M20,20 Q30,15 40,20 T60,25 L65,30 Q70,35 75,30 L80,25" stroke="rgba(255,255,255,0.03)" stroke-width="0.5" fill="none"/><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="45" cy="30" r="1.5" fill="rgba(255,255,255,0.03)"/><circle cx="65" cy="20" r="1" fill="rgba(255,255,255,0.04)"/></svg>') no-repeat;
      background-size:cover;
      opacity:0.6;
    }
    .card-chip {
      width:35px; height:25px;
      background:linear-gradient(145deg,#ffd93d 0%,#ffcd02 100%);
      border-radius:4px;
      margin-bottom:25px;
      box-shadow:
        0 2px 4px rgba(0,0,0,0.3),
        inset 0 0 0 1px rgba(255,255,255,0.1);
    }
    .card-number {
      font-family:'Courier New',monospace;
      font-size:18px;
      font-weight:500;
      letter-spacing:3px;
      margin-bottom:20px;
    }
    .card-details {
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      font-size:10px;
      text-transform:uppercase;
      opacity:0.8;
    }
    .card-logo {
      position:absolute; bottom:20px; right:20px;
      width:40px; height:25px;
      background:#fff;
      border-radius:4px;
      box-shadow:0 2px 4px rgba(0,0,0,0.2);
    }

    .card-back {
      transform:rotateY(180deg);
      display:flex;
      flex-direction:column;
      justify-content:center;
      align-items:center;
      padding:20px;
    }
    .cvv-strip {
      width:100%; height:40px;
      background:#333;
      margin:20px 0;
      border-radius:4px;
      position:relative;
    }
    .cvv-box {
      position:absolute; top:50%; right:20px;
      transform:translateY(-50%);
      background:#fff;
      color:#333;
      padding:5px 10px;
      border-radius:3px;
      font-size:12px;
      font-weight:bold;
    }
    .signature-strip {
      width:80%; height:25px;
      background:rgba(255,255,255,0.9);
      margin:10px auto;
      border-radius:3px;
      position:relative;
    }
    .signature-strip::after {
      content:'JOHN DOE';
      position:absolute; left:10px; top:50%;
      transform:translateY(-50%);
      color:#333;
      font-size:10px;
      font-style:italic;
    }
    .card-info {
      font-size:10px;
      opacity:0.7;
      margin-top:20px;
      text-align:center;
    }

    .start-button {
      background:linear-gradient(135deg,#ffd93d 0%,#ffcd02 100%);
      color:#333;
      border:none;
      padding:16px 32px;
      border-radius:50px;
      font-size:16px;
      font-weight:600;
      cursor:pointer;
      margin:0 auto 30px;
      display:flex;
      align-items:center;
      gap:10px;
      justify-content:center;
      box-shadow:
        0 8px 16px rgba(255,217,61,0.4),
        0 4px 8px rgba(0,0,0,0.1),
        inset 0 0 0 1px rgba(255,255,255,0.2);
      transition:all .3s ease;
      margin-top: 6rem;
    }
    .start-button:hover {
      transform:translateY(-3px);
      box-shadow:
        0 12px 24px rgba(255,217,61,0.5),
        0 6px 12px rgba(0,0,0,0.15),
        inset 0 0 0 1px rgba(255,255,255,0.3);
    }
    .start-button::before {
      content:'';
      width:12px; height:12px;
      background:#ffcd02;
      border-radius:50%;
      box-shadow:0 2px 4px rgba(0,0,0,0.2);
    }

    .join-text {
      font-size:24px;
      font-weight:700;
      color:#333;
      line-height:1.2;
      z-index:2;
      text-shadow:0 1px 2px rgba(0,0,0,0.1);
    }

    .hover-instruction {
      position:absolute; top:20px; left:50%;
      transform:translateX(-50%);
      background:rgba(0,0,0,0.8);
      color:#fff;
      padding:8px 16px;
      border-radius:20px;
      font-size:12px;
      z-index:10;
    }

.feature {
    font-size: 14px;
    color: #e0e0e0;
    position: relative;
    padding-left: 16px;
}

.feature::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}
    
    
    
    .benefits-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }
    
    .benefit {
        background: white;
        padding: 40px;
        border-radius: 16px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }
    
    .benefit h3 {
        font-size: 24px;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .benefit p {
        color: #666;
        font-size: 16px;
    }
    
    
    
        .booking-card {
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff4081 100%);
            padding: 50px 40px;
            border-radius: 20px;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            height: fit-content;
            width: 400px;
            
            /* Strong 3D shadow effect */
            box-shadow: 
                0 25px 50px rgba(255, 107, 53, 0.3),
                0 15px 30px rgba(0, 0, 0, 0.2),
                0 5px 15px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
            
            transition: all 0.3s ease;
        }

        .booking-card:hover {
            transform: translateY(-8px);
            box-shadow: 
                0 35px 70px rgba(255, 107, 53, 0.4),
                0 20px 40px rgba(0, 0, 0, 0.25),
                0 10px 20px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
        }

        .booking-avatar {
            width: 80px;
            height: 80px;
            background: #ffffff;
            border-radius: 50%;
            margin: 0 auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            
            /* Enhanced shadow for avatar */
            box-shadow: 
                0 10px 20px rgba(0, 0, 0, 0.15),
                0 5px 10px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
        }

        

        .booking-title {
            font-size: 36px;
            font-weight: 600;
            margin-bottom: 30px;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .book-button {
            background: white;
            color: #1a1a1a;
            padding: 18px 40px;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            width: 100%;
            margin-bottom: 20px;
            
            /* Enhanced button shadow */
            box-shadow: 
                0 8px 16px rgba(0, 0, 0, 0.1),
                0 4px 8px rgba(0, 0, 0, 0.06),
                0 0 0 1px rgba(0, 0, 0, 0.04) inset;
            
            transition: all 0.3s ease;
        }

        .book-button:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 12px 24px rgba(0, 0, 0, 0.15),
                0 6px 12px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(0, 0, 0, 0.04) inset;
        }

        .book-button:active {
            transform: translateY(-1px);
            box-shadow: 
                0 6px 12px rgba(0, 0, 0, 0.1),
                0 3px 6px rgba(0, 0, 0, 0.06);
        }
    
    .book-button {
        background: white;
        color: #1a1a1a;
        padding: 18px 40px;
        border-radius: 12px;
        font-size: 18px;
        font-weight: 600;
        border: none;
        cursor: pointer;
        width: 100%;
        transition: all 0.3s ease;
        margin-bottom: 20px;
    }
    
    .book-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    
    .email-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: white;
        text-decoration: none;
        font-size: 14px;
        opacity: 0.9;
    }
    
    .email-link:hover {
        opacity: 1;
    }

    /* Mobile Media Queries for Pricing Section */

@media (max-width: 768px) {
    #pricing-container-unique {
        padding: 30px 15px;
        max-width: 100%;
    }
    
    #hero-section-unique {
        margin-bottom: 40px;
    }
    
    #hero-title-unique {
        font-size: 2.5rem;
        margin-bottom: 8px;
    }
    
    #hero-subtitle-unique {
        font-size: 2rem;
    }
    
    /* Stack the grid vertically on mobile */
    #subscription-grid-unique {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    /* Card section adjustments */
    #card-section-unique {
        width: 100%;
        max-width: 350px;
        padding: 40px 25px;
        margin: 0 auto;
    }
    
    #card-container-unique {
        width: 280px;
        height: 170px;
        margin-bottom: 30px;
    }
    
    #card-number-unique {
        font-size: 16px;
        letter-spacing: 2px;
    }
    
    #card-details-unique {
        font-size: 9px;
    }
    
    #start-button-unique {
        padding: 14px 28px;
        font-size: 15px;
        margin-top: 3rem;
        margin-bottom: 20px;
    }
    
    #join-text-unique {
        font-size: 18px;
        line-height: 1.3;
    }
    
    /* Pricing section adjustments */
    #pricing-section-unique {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        padding: 30px 25px;
    }
    
    /* Urgency badge positioning */
    #urgency-badge-unique {
        top: -12px;
        right: -12px;
        padding: 8px 16px;
        font-size: 10px;
        min-width: 100px;
    }
    
    #pricing-header-unique {
        font-size: 18px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    /* Price container - stack on mobile */
    #price-container-unique {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 25px;
    }
    
    #price-unique {
        font-size: 36px;
        margin-bottom: 0;
    }
    
    #urgency-text-unique {
        margin-left: 0;
        font-size: 9px;
        padding: 4px 8px;
    }
    
    /* Features grid - single column on mobile */
    #features-unique {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .feature-unique {
        font-size: 13px;
        text-align: left;
    }
    
    #join-button-unique {
        padding: 16px 20px;
        font-size: 15px;
    }
}

/* Small mobile screens */
@media (max-width: 480px) {
    #pricing-container-unique {
        padding: 20px 10px;
    }
    
    #hero-title-unique {
        font-size: 2rem;
    }
    
    #hero-subtitle-unique {
        font-size: 1.7rem;
    }
    
    #card-section-unique {
        padding: 30px 20px;
        max-width: 100%;
    }
    
    #card-container-unique {
        width: 260px;
        height: 160px;
    }
    
    #card-number-unique {
        font-size: 15px;
        letter-spacing: 1.5px;
    }
    
    #start-button-unique {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    #join-text-unique {
        font-size: 16px;
    }
    
    #pricing-section-unique {
        padding: 25px 20px;
        max-width: 100%;
    }
    
    #urgency-badge-unique {
        top: -10px;
        right: -10px;
        padding: 6px 12px;
        font-size: 9px;
        min-width: 80px;
    }
    
    #pricing-header-unique {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    #price-unique {
        font-size: 32px;
    }
    
    #urgency-text-unique {
        font-size: 8px;
        padding: 3px 6px;
    }
    
    .feature-unique {
        font-size: 12px;
        padding-left: 14px;
    }
    
    #join-button-unique {
        padding: 14px 18px;
        font-size: 14px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    #pricing-container-unique {
        padding: 15px 8px;
    }
    
    #hero-title-unique {
        font-size: 1.8rem;
    }
    
    #hero-subtitle-unique {
        font-size: 1.5rem;
    }
    
    #card-section-unique {
        padding: 25px 15px;
    }
    
    #card-container-unique {
        width: 240px;
        height: 150px;
    }
    
    #pricing-section-unique {
        padding: 20px 15px;
    }
    
    #urgency-badge-unique {
        display: none; /* Hide on very small screens to prevent overlap */
    }
    
    #price-unique {
        font-size: 28px;
    }
    
    .feature-unique {
        font-size: 11px;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    #pricing-container-unique {
        padding: 20px 15px;
    }
    
    #hero-section-unique {
        margin-bottom: 30px;
    }
    
    #hero-title-unique {
        font-size: 2.2rem;
    }
    
    #hero-subtitle-unique {
        font-size: 1.8rem;
    }
    
    #subscription-grid-unique {
        gap: 25px;
        margin-bottom: 30px;
    }
    
    #card-section-unique {
        padding: 30px 20px;
    }
    
    #pricing-section-unique {
        padding: 25px 20px;
    }
}

/* Benefits section mobile adjustments */
@media (max-width: 768px) {
    #benefits-section-unique {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .benefit-unique {
        padding: 30px 25px;
    }
    
    .benefit-unique h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .benefit-unique p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .benefit-unique {
        padding: 25px 20px;
    }
    
    .benefit-unique h3 {
        font-size: 18px;
    }
    
    .benefit-unique p {
        font-size: 14px;
    }
}

/* Disable 3D effects on mobile for better performance */
@media (max-width: 768px) {
    #card-container-unique {
        perspective: none;
    }
    
    #tilt-wrapper-unique {
        transform: none;
    }
    
    #flip-wrapper-unique {
        transform: none;
        transition: none;
    }
    
    #card-container-unique:hover #flip-wrapper-unique,
    #card-container-unique.is-flipped #flip-wrapper-unique {
        transform: rotateY(180deg);
    }
}

/* Fix for mobile cutoff issues */

/* Ensure no horizontal overflow */
@media (max-width: 768px) {
    * {
        box-sizing: border-box;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .container {
        width: 100%;
        max-width: 100vw;
        padding: 30px 15px;
        margin: 0;
        overflow-x: hidden;
    }
    
    /* Fix benefits section cutoff */
    .benefits-section {
        width: 100%;
        max-width: 100%;
        margin: 0 0 40px 0;
        padding: 0;
        box-sizing: border-box;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 20px 15px;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .benefit h3 {
        font-size: 18px;
        line-height: 1.3;
        word-wrap: break-word;
        margin-bottom: 10px;
    }
    
    .benefit p {
        font-size: 14px;
        line-height: 1.5;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    /* Fix subscription grid cutoff */
    .subscription-grid {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 0 0 40px 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    /* Fix card section */
    .card-section {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 30px 15px;
        box-sizing: border-box;
    }
    
    /* Fix pricing section */
    .pricing-section {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 25px 15px;
        box-sizing: border-box;
    }
    
    .pricing-header {
        font-size: 16px;
        line-height: 1.3;
        text-align: center;
        word-wrap: break-word;
        margin-bottom: 15px;
    }
    
    .pricing-header small {
        display: block;
        margin-top: 5px;
        font-size: 10px;
    }
    
    /* Fix features grid */
    .features {
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
        margin-bottom: 25px;
    }
    
    .feature {
        font-size: 13px;
        line-height: 1.4;
        word-wrap: break-word;
        padding-left: 20px;
        position: relative;
    }
    
    /* Fix FAQ section cutoff */
    .faq-booking-section {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 20px 15px;
        margin: 0;
        box-sizing: border-box;
    }
    
    .faq-section {
        width: 100%;
        max-width: 100%;
    }
    
    .faq-section h2 {
        font-size: 24px;
        line-height: 1.2;
        text-align: center;
        word-wrap: break-word;
        margin-bottom: 20px;
    }
    
    .faq-card {
        width: 100%;
        max-width: 100%;
        padding: 15px;
        box-sizing: border-box;
    }
    
    .faq-item {
        width: 100%;
        padding: 15px 0;
        box-sizing: border-box;
    }
    
    .faq-item summary {
        font-size: 15px;
        line-height: 1.4;
        word-wrap: break-word;
        padding-right: 25px;
        position: relative;
        width: 100%;
        box-sizing: border-box;
    }
    
    .faq-arrow {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .faq-item p {
        font-size: 13px;
        line-height: 1.5;
        word-wrap: break-word;
        hyphens: auto;
        margin-top: 10px;
        padding-right: 0;
    }
    
    /* Fix payment section */
    .payment-container {
        width: 100%;
        max-width: 100%;
        padding: 15px;
        margin: 15px 0;
        box-sizing: border-box;
    }
    
    .payment-methods {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .tkMethodCard,
    .tkMethodCrypto {
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .tkMethodDetails {
        flex: 1;
        word-wrap: break-word;
    }
    
    .tkCardIcons,
    .tkCryptoTypes {
        font-size: 11px;
        word-wrap: break-word;
        line-height: 1.3;
    }
    
    .security-badges {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-top: 15px;
        width: 100%;
    }
    
    .tkSecBadge {
        flex: 0 1 auto;
        min-width: 0;
        padding: 6px 10px;
        font-size: 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Fix WhatsApp button */
    .whatsapp-button {
        width: 100%;
        max-width: 100%;
        padding: 12px 15px;
        box-sizing: border-box;
        text-align: center;
        word-wrap: break-word;
        line-height: 1.3;
        font-size: 13px;
    }
    
    .supported-currencies {
        width: 100%;
        font-size: 11px;
        text-align: center;
        word-wrap: break-word;
        line-height: 1.4;
        padding: 0 5px;
        margin-top: 10px;
        box-sizing: border-box;
    }
    
    /* Fix booking card */
    .booking-card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 30px 15px;
        box-sizing: border-box;
    }
    
    .booking-title {
        font-size: 20px;
        line-height: 1.3;
        word-wrap: break-word;
        text-align: center;
    }
    
    .email-link span:last-child {
        word-wrap: break-word;
        line-height: 1.3;
    }
}

/* Extra small screens - even more restrictive */
@media (max-width: 480px) {
    .container {
        padding: 20px 10px;
    }
    
    .benefit {
        padding: 15px 10px;
    }
    
    .card-section,
    .pricing-section {
        padding: 20px 10px;
    }
    
    .faq-booking-section {
        padding: 15px 10px;
    }
    
    .faq-card {
        padding: 12px;
    }
    
    .payment-container {
        padding: 12px;
    }
    
    .booking-card {
        padding: 25px 12px;
    }
    
    .pricing-header {
        font-size: 14px;
    }
    
    .pricing-header small {
        font-size: 9px;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .container {
        padding: 15px 8px;
    }
    
    .benefit,
    .card-section,
    .pricing-section,
    .booking-card {
        padding: 15px 8px;
    }
    
    .faq-booking-section {
        padding: 12px 8px;
    }
    
    .faq-card {
        padding: 10px;
    }
    
    .payment-container {
        padding: 10px;
    }
    
    .tkMethodCard,
    .tkMethodCrypto {
        padding: 12px;
    }
    
    .security-badges {
        gap: 6px;
    }
    
    .tkSecBadge {
        padding: 5px 8px;
        font-size: 9px;
    }
    
    .supported-currencies {
        font-size: 10px;
        padding: 0 3px;
    }
}
    
/* FAQ */

.faq-booking-section {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 60px;
            margin-top: 80px;
        }
        
        .faq-section h2 {
            font-size: 56px;
            font-weight: 300;
            margin-bottom: 40px;
            font-style: italic;
        }
        
        .faq-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        
        .faq-item {
            border-bottom: 1px solid #f0f0f0;
        }
        
        .faq-item:last-child {
            border-bottom: none;
        }
        
        .faq-item summary {
            padding: 28px 32px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            font-size: 18px;
            font-weight: 500;
            list-style: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            user-select: none;
        }
        
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        
        .faq-item summary:hover {
            background: #f8f8f8;
        }
        
        .faq-arrow {
            font-size: 24px;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }
        
        .faq-item[open] .faq-arrow {
            transform: rotate(180deg);
        }
        
        .faq-item p {
            padding: 0 32px 28px 32px;
            color: #666;
            font-size: 16px;
            line-height: 1.6;
            animation: slideDown 0.3s ease-out;
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

         @media (max-width: 768px) {
            .subscription-grid,
            .faq-booking-section {
                grid-template-columns: 1fr;
            }
            
            .hero-title {
                font-size: 36px;
            }
            
            .hero-subtitle {
                font-size: 32px;
            }
        }


/* booking avatar image */
.booking-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

.section {
    height: 110vh;
    overflow: hidden;
}

.hero {
    display: flex;
    height: 100%;
}



.panel {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: flex 0.45s ease, filter 0.45s ease;
    cursor: pointer;
    overflow: hidden;
}

.panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    transition: background 0.45s ease;
    z-index: 1;
}

.panel:hover {
    flex: 3;
    filter: brightness(1.15);
}

.panel:hover::before {
    background: rgba(0, 0, 0, 0.25);
}

.panel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
}

.panel-title a {
  color: #ffffff;
  text-decoration: none;
}

.panel-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bullets {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    list-style: none;
    font-size: 1.1rem;
    line-height: 1.8;
}

.panel:hover .bullets {
    opacity: 1;
    transform: translateY(0);
}

.bullets li {
    margin-bottom: 0.5rem;
}

/* Paid Advertising Panel */
.panel-ads {
    background: linear-gradient(225deg, #0a0a0a, #0f0f0f, #16213e);
    position: relative;
    overflow: hidden;
}

.eyes-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.eye-pair {
    position: absolute;
    display: flex;
    gap: 8px;
}

.eye {
    width: 45px;
    height: 35px;
    background: white;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.1s ease;
    position: relative;
    overflow: hidden;
}

.eye::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.15s ease;
    z-index: 3;
}

.eye.blinking::before {
    transform: scaleY(1);
}

.iris {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pupil {
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    transition: all 0.1s ease;
    position: relative;
}

.pupil::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
}

/* Different iris colors */
.iris.blue { background: radial-gradient(circle, #4f46e5, #3730a3); }
.iris.green { background: radial-gradient(circle, #059669, #047857); }
.iris.brown { background: radial-gradient(circle, #92400e, #78350f); }
.iris.hazel { background: radial-gradient(circle, #d97706, #92400e); }
.iris.gray { background: radial-gradient(circle, #6b7280, #4b5563); }
.iris.amber { background: radial-gradient(circle, #f59e0b, #d97706); }

/* Position eye pairs across the panel */
.eye-pair:nth-child(1) { top: 15%; left: 8%; }
.eye-pair:nth-child(2) { top: 25%; left: 35%; }
.eye-pair:nth-child(3) { top: 10%; left: 65%; }
.eye-pair:nth-child(4) { top: 40%; left: 15%; }
.eye-pair:nth-child(5) { top: 35%; left: 50%; }
.eye-pair:nth-child(6) { top: 30%; left: 80%; }
.eye-pair:nth-child(7) { top: 60%; left: 25%; }
.eye-pair:nth-child(8) { top: 55%; left: 70%; }
.eye-pair:nth-child(9) { top: 75%; left: 10%; }
.eye-pair:nth-child(10) { top: 80%; left: 45%; }
.eye-pair:nth-child(11) { top: 70%; left: 85%; }

/* SEO Panel */
.panel-seo {
    background: white;
    position: relative;
    overflow: hidden;
}

.seo-arrows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, #e5e7eb 1px, transparent 1px),
        linear-gradient(0deg, #e5e7eb 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.arrow-up {
    position: absolute;
    font-size: 32px;
    font-weight: bold;
    animation: floatArrow 3s ease-in-out infinite;
}

.arrow-blue {
    color: #3b82f6;
}

.arrow-purple {
    color: #8b5cf6;
}

.arrow-up:nth-child(1) { 
    top: 60%; 
    left: 15%; 
    animation-delay: 0s; 
}

.arrow-up:nth-child(2) { 
    top: 40%; 
    left: 35%; 
    animation-delay: 0.5s; 
}

.arrow-up:nth-child(3) { 
    top: 70%; 
    left: 55%; 
    animation-delay: 1s; 
}

.arrow-up:nth-child(4) { 
    top: 30%; 
    left: 75%; 
    animation-delay: 1.5s; 
}

.arrow-up:nth-child(5) { 
    top: 80%; 
    left: 25%; 
    animation-delay: 2s; 
}

.arrow-up:nth-child(6) { 
    top: 20%; 
    left: 65%; 
    animation-delay: 2.5s; 
}

@keyframes floatArrow {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
        opacity: 0.7; 
    }
    50% { 
        transform: translateY(-15px) rotate(-5deg); 
        opacity: 1; 
    }
}

/* Web Development Panel */
.panel-dev {
    background: linear-gradient(225deg, #0a0a0a, #0f0f0f, #16213e);
    position: relative;
    overflow: hidden;
}

.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.matrix-char {
    position: absolute;
    color: #00ff41;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 18px;
    animation: fall linear infinite;
    text-shadow: 0 0 5px #00ff41;
    opacity: 0.8;
}

@keyframes fall {
    0% {
        transform: translateY(-100px);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

@keyframes float {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    100% {
        transform: translateX(-50px) translateY(-50px) rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }
    
    .panel {
        flex: 1;
        min-height: 33.33vh;
    }
    
    .panel:hover {
        flex: 2;
    }
    
    .panel-title {
        font-size: 2rem;
    }
    
    .bullets {
        font-size: 1rem;
    }
}

  .section-subtitle {
            line-height: 1.4;
            text-align: center;
            margin: 2rem auto 3rem;
            font-size: clamp(16px, 2.5vw, 22px);
            font-weight: 400;
            color: hsl(0, 0%, 0%);
            letter-spacing: 0.02em;
            max-width: 800px;
            position: relative;
            padding: 0 2rem;
            
        
            /* Subtle text shadow for depth */
            text-shadow: 0 1px 2px hsla(220, 15%, 0%, 0.05);
            
            /* Smooth transitions */
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        /* Subtle hover effect for interactive sections */
        .section-subtitle:hover {
            transform: translateY(-2px);
            text-shadow: 0 2px 8px hsla(220, 30%, 50%, 0.1);
        }


/* Clients Section */
.clients {
    padding: 5rem 0;
    background: rgba(87, 48, 194, 0.05);
}

.clients-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.7;
}

.client-logos img {
    height: 40px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.client-logos img:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: brightness(1) invert(0);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.testimonials h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 2rem;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #e2de80;
}

.testimonial p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    color: #999999;
    font-size: 0.9rem;
}

.growth-stat {
    font-size: 3rem;
    font-weight: 900;
    color: #5730c2;
    margin-top: 1rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-nav button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-nav button:hover {
    background: #5730c2;
    border-color: #5730c2;
}

/* Blog Section */
.blog {
    padding: 6rem 0;
}

.blog h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #000000;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-tags {
    margin-bottom: 1rem;
}

.tag {
    background: #1d1d1d;
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.blog-card h3 a {
  text-decoration: none;
  color: #131313; /* or black if preferred */
  cursor: pointer;
}


.blog-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #000000;
}

.blog-card p {
    color: #313131;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.blog-meta {
    font-size: 0.85rem;
    color: #2b2b2b;
}

.blog-meta span {
    margin-right: 1rem;
}

.blog-cta {
    text-align: center;
}

.read-more-btn {
    display: inline-block;
    border: 2px solid #000000;
    color: #000000;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}




/* Typing Ticker Section */
.ticker-section {
    background-color: hsl(0, 0%, 100%);
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.ticker-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(31, 31, 31, 0.5), transparent);
    animation: scan 8s linear infinite;
}

@keyframes scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Bottom border scan (new) */
.ticker-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(31, 31, 31, 0.5), transparent);
    animation: scan 8s linear infinite;
}

/* Scan animation */
@keyframes scan {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.ticker-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Courier New', monospace;
    font-size: 24px;
    color: #000000;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticker-text {
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.cursor {
    display: inline-block;
    animation: blink 1s infinite;
    margin-left: 3px;
    font-weight: 300;
    color: #fff;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@media (max-width: 768px) {
    .ticker-container {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .ticker-container {
        font-size: 16px;
    }
}

 

/* Footer Styles */
footer {
    background-color: hsl(0, 0%, 100%);;
    color: #000000;
    padding: 50px 0 20px;
    font-size: 15px;
    backdrop-filter: blur(10px);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

/* Company Info Section */
.company-info h2 {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.company-info p {
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: 14px;
}

.company-info a {
    color: #000000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.company-info a:hover {
    opacity: 0.8;
}

/* Navigation Section */
.footer-nav {
    text-align: center;
}

.footer-nav ul {
    list-style: none;
    padding-top: 10px;
}

.footer-nav li {
    margin-bottom: 15px;
}

.footer-nav a {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-style: italic;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: underline;
  text-decoration-thickness: 1px; 
  text-underline-offset: 2px;     
}

.footer-nav a:hover {
    opacity: 0.8;
}

/* Newsletter Section */
.newsletter {
    text-align: right;
}

.newsletter h3 {
    font-size: 24px;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.email-input {
    padding: 12px 0;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    color: #000000;
    font-size: 14px;
    font-style: italic;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-bottom: 1px solid rgba(5, 5, 5, 0.8);
}

.email-input::placeholder {
    color: rgba(5, 5, 5, 0.6);
    font-style: italic;
}


.privacy-section {
    background-color: hsl(0, 0%, 100%);
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.privacy-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.privacy-link {
    color: #000000;
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.privacy-link:hover {
    opacity: 0.8;
}

.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 10px;
}

.privacy-checkbox input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.privacy-checkbox label {
    font-size: 12px;
    font-style: italic;
    line-height: 1.4;
    cursor: pointer;
}

.flag-icon {
            width: 20px;
            height: 15px;
        }

.submit-button {
    padding: 12px 40px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #000000;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-end;
}

.submit-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.9);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 24px;
    height: 24px;
    fill: #000000;
    transition: all 0.3s ease;
}

.social-icon:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-links a {
    color: #000000;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}


h2.section-title

 {
    font-family: 'Inter', sans-serif !important;
            font-size: 2.75rem !important;
            font-weight: 500 !important;
            color: #000000 !important;
            margin-bottom: 80px !important;
            text-align: center !important;
            letter-spacing: -0.025em !important;
            position: relative !important;
            line-height: 1.3 !important;
            margin-top: 3rem;
}

h2.section-title::after {
    content: '' !important;
    position: absolute !important;
    bottom: -20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 40px !important;
    height: 1px !important;
    background: #000000 !important;
}

.title-word, .subtitle-word {
    display: inline-block;
    transform: translateX(-300px);
    opacity: 0;
    margin-right: 0.2em;
}

.services-h2 {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* testimonial links */

    .testimonials-section-title {
            font-family: 'Inter', sans-serif !important;
            font-size: 2.75rem !important;
            font-weight: 500 !important;
            color: #000000 !important;
            margin-bottom: 80px !important;
            text-align: center !important;
            letter-spacing: -0.025em !important;
            position: relative !important;
            line-height: 1.3 !important;
            margin-top: 3rem;
        }

        .testimonials-section-title::after {
            content: '' !important;
            position: absolute !important;
            bottom: -20px !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            width: 40px !important;
            height: 1px !important;
            background: #000000 !important;
        }

        .testimonials-gallery-wrapper {
            position: relative;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            overflow: hidden;
        }

        .testimonials-scroll-gallery {
            display: flex;
            gap: 20px;
            padding: 20px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            cursor: grab;
            user-select: none;
        }

        .testimonials-scroll-gallery::-webkit-scrollbar {
            display: none;
        }

        .testimonials-scroll-gallery.dragging {
            cursor: grabbing;
            scroll-behavior: auto;
        }

        .testimonial-review-card {
            flex: 0 0 350px;
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            position: relative;
            transition: transform 0.3s ease;
        }

        .testimonial-review-card:hover {
            transform: translateY(-5px);
        }

        .testimonial-card-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .testimonial-reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 18px;
            margin-right: 15px;
        }

        .testimonial-reviewer-info h4 {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 4px;
        }

        .testimonial-reviewer-info .testimonial-job-title {
            font-size: 14px;
            color: #666;
        }

        .testimonial-rating-stars {
            display: flex;
            margin-bottom: 15px;
        }

        .testimonial-star {
            color: #ffd700;
            font-size: 16px;
            margin-right: 2px;
        }

        .testimonial-review-text {
            font-size: 15px;
            line-height: 1.6;
            color: #555;
            margin-bottom: 15px;
        }

        .testimonial-review-date {
            font-size: 13px;
            color: #999;
        }

        .testimonials-drag-indicator {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 12px 24px;
            border-radius: 30px;
            font-weight: 600;
            letter-spacing: 2px;
            font-size: 14px;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            backdrop-filter: blur(10px);
            z-index: 10;
        }

        .testimonials-gallery-wrapper:hover .testimonials-drag-indicator {
            opacity: 1;
        }

        .testimonials-drag-indicator::before {
            content: "←";
            margin-right: 8px;
            font-size: 16px;
        }

        .testimonials-drag-indicator::after {
            content: "→";
            margin-left: 8px;
            font-size: 16px;
        }

        @media (max-width: 768px) {
            .testimonial-review-card {
                flex: 0 0 280px;
                padding: 20px;
            }
            
            .testimonials-section-title {
                font-size: 1.5rem !important;
            }
        }
    

.footer-links span {
    color: rgba(255, 255, 255, 0.5);
}

.footer-links a:hover {
    opacity: 0.8;
}

/* Center and style copyright */
.copyright {
  text-align: center;
  color: #000000;
  font-size: 14px;
  margin: 40px 0;
  text-decoration: none;
  
}

/* Remove link styles and match rest of text */
.footer-link {
  color: inherit;
  text-decoration: none;
  font-style: inherit;
  font-weight: inherit;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .newsletter {
        grid-column: 1 / -1;
        text-align: center;
        max-width: 500px;
        margin: 0 auto;
    }

    .submit-button {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .company-info h2 {
        font-size: 18px;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links span {
        display: none;
    }
}

/* GSAP Section 2 */
/* Circle Reveal Section - Isolated Styles */
.unique-circle-reveal-wrapper {
    position: relative;
    width: 100%;
    height: 400vh;
    background: #000;
    z-index: 1;
}

.unique-circle-reveal-viewport {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.unique-circle-reveal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.unique-circle-reveal-bg.is-active {
    opacity: 1;
}

.unique-circle-reveal-bg-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.unique-circle-reveal-bg-2 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.unique-circle-reveal-bg-3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.unique-circle-reveal-bg-4 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.unique-circle-reveal-bg-5 { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }

.unique-circle-reveal-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10;
    clip-path: circle(5% at 50% 50%);
}

.unique-circle-reveal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 15;
    color: white;
    width: 90%;
    max-width: 800px;
}

.unique-circle-reveal-text {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.unique-circle-reveal-text.is-active {
    opacity: 1;
}

.unique-circle-reveal-main-text {
    font-family: 'Arial Black', Arial, sans-serif !important;
    font-size: clamp(2rem, 6vw, 4.5rem) !important;
    font-weight: 900 !important;
    line-height: 0.9 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 2rem !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3) !important;
    text-transform: uppercase !important;
    color: white !important;
}

.unique-circle-reveal-sub-text {
    font-size: clamp(0.9rem, 2vw, 1.2rem) !important;
    font-weight: 300 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    opacity: 0.8 !important;
    color: white !important;
}

.unique-circle-reveal-progress {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    z-index: 20;
    overflow: hidden;
}

.unique-circle-reveal-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
    border-radius: 2px;
    transition: width 0.1s ease;
}

@media (max-width: 768px) {
    .unique-circle-reveal-main-text {
        font-size: clamp(1.5rem, 8vw, 3rem) !important;
    }
    
    .unique-circle-reveal-progress {
        width: 150px;
    }
}

h2.slider-tagline {
    text-align: center;
}

/*Menu */

 
        /* new gsap stuff Styles */

    




.person-container {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

        .person-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            transition: all 0.5s ease;
            opacity: 1;
        }


      

        .premium-hero-main-section {
            text-align: center;
            max-width: 1200px;
            width: 100%;
            position: relative;
            padding: 80px 60px;
            
            position: relative;
            overflow: hidden;
        }

        

        .premium-hero-badges-container {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 50px;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }

        .premium-hero-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 
                0 15px 35px rgba(0, 0, 0, 0.2),
                0 5px 15px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .premium-hero-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.5s ease;
        }

        .premium-hero-badge:hover::before {
            left: 100%;
        }

        .premium-hero-badge:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.3),
                0 10px 20px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
        }

        .premium-hero-limited-time-badge {
            background: linear-gradient(145deg, #dc2626, #b91c1c);
            color: white;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        .premium-hero-first-serve-badge {
            background: linear-gradient(145deg, #222222, #8a8a8a);
            color: white;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        .premium-hero-main-title {
            font-size: clamp(2.8rem, 5.5vw, 4.5rem);
            font-weight: 800;
            margin-bottom: 35px;
            color: #000000;
            line-height: 1.1;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 2;
        }

        .premium-hero-summer-text {
            letter-spacing: 0.08em;
            margin-left: 0.2em;
            position: relative;
        }

        .premium-hero-summer-text::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #000000, #b4b4b4);
            border-radius: 2px;
            opacity: 0.3;
        }

        .premium-hero-main-subtitle {
            font-size: clamp(1.3rem, 2.8vw, 2rem);
            color: #000000;
            margin-bottom: 50px;
            font-weight: 500;
            line-height: 1.5;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
            position: relative;
            z-index: 2;
        }

        .premium-hero-digital-clock {
            background: linear-gradient(145deg, #f8f9fa, #e9ecef);
            border-radius: 25px;
            padding: 40px;
            margin: 50px auto;
            max-width: 650px;
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.15),
                0 10px 30px rgba(0, 0, 0, 0.1),
                inset 0 2px 0 rgba(255, 255, 255, 0.9),
                inset 0 -2px 0 rgba(0, 0, 0, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.4);
            position: relative;
            overflow: hidden;
        }

        .premium-hero-digital-clock::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.02));
            border-radius: 25px;
            pointer-events: none;
        }

        .premium-hero-digital-clock::after {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(0, 0, 0, 0.02));
            border-radius: 20px;
            pointer-events: none;
        }

        .premium-hero-clock-label {
            color: #000000;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-align: center;
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
            position: relative;
            z-index: 3;
        }

        .premium-hero-countdown-display {
            font-family: 'Courier New', monospace;
            font-size: clamp(2.2rem, 4.5vw, 3.8rem);
            color: #000000;
            text-align: center;
            font-weight: 800;
            background: linear-gradient(145deg, #ffffff, #f1f5f9);
            padding: 25px;
            border-radius: 18px;
            border: 2px solid rgba(255, 255, 255, 0.7);
            letter-spacing: 3px;
            box-shadow: 
                inset 0 4px 8px rgba(0, 0, 0, 0.1),
                inset 0 -4px 8px rgba(255, 255, 255, 0.9),
                0 2px 4px rgba(0, 0, 0, 0.05);
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
            position: relative;
            z-index: 3;
        }

        .premium-hero-countdown-units {
            display: flex;
            justify-content: center;
            gap: 35px;
            margin-top: 25px;
            flex-wrap: wrap;
            position: relative;
            z-index: 3;
        }

        .premium-hero-time-unit {
            text-align: center;
            color: #374151;
            font-family: 'Courier New', monospace;
            background: linear-gradient(145deg, #ffffff, #f1f5f9);
            padding: 20px;
            border-radius: 15px;
            box-shadow: 
                0 8px 16px rgba(0, 0, 0, 0.1),
                inset 0 2px 0 rgba(255, 255, 255, 0.9),
                inset 0 -2px 0 rgba(0, 0, 0, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.5);
            transition: all 0.3s ease;
        }

        .premium-hero-time-unit:hover {
            transform: translateY(-2px);
            box-shadow: 
                0 12px 24px rgba(0, 0, 0, 0.15),
                inset 0 2px 0 rgba(255, 255, 255, 1),
                inset 0 -2px 0 rgba(0, 0, 0, 0.1);
        }

        .premium-hero-time-number {
            font-size: clamp(1.6rem, 3.2vw, 2.8rem);
            font-weight: 800;
            display: block;
            color: #000000;
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
        }

        .premium-hero-time-label {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            opacity: 0.8;
            margin-top: 8px;
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
            font-weight: 600;
        }

        .premium-hero-exclusive-text {
            font-size: 20px;
            color: #dc2626;
            font-weight: 700;
            margin-top: 40px;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 2;
        }

        /* SVG Icons */
        .premium-hero-icon {
            width: 18px;
            height: 18px;
            fill: currentColor;
            filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
        }

        /* Responsive Design - Mobile First Approach */
        
        /* Extra Small Devices (phones, 480px and down) */
        @media (max-width: 480px) {
            .premium-hero-wrapper {
                padding: 10px;
            }
            
            .premium-hero-main-section {
                padding: 40px 20px;
                border-radius: 20px;
                margin: 10px;
            }
            
            .premium-hero-badges-container {
                flex-direction: column;
                align-items: center;
                gap: 15px;
                margin-bottom: 35px;
            }
            
            .premium-hero-badge {
                padding: 12px 24px;
                font-size: 11px;
                letter-spacing: 0.5px;
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }
            
            .premium-hero-main-title {
                font-size: 2.2rem;
                margin-bottom: 25px;
                line-height: 1.2;
            }
            
            .premium-hero-main-subtitle {
                font-size: 1.1rem;
                margin-bottom: 35px;
                line-height: 1.4;
            }
            
            .premium-hero-digital-clock {
                padding: 25px 15px;
                margin: 35px auto;
                border-radius: 20px;
            }
            
            .premium-hero-clock-label {
                font-size: 14px;
                margin-bottom: 20px;
                letter-spacing: 1px;
            }
            
            .premium-hero-countdown-display {
                font-size: 1.8rem;
                padding: 20px 15px;
                letter-spacing: 2px;
                border-radius: 15px;
            }
            
            .premium-hero-countdown-units {
                gap: 15px;
                margin-top: 20px;
            }
            
            .premium-hero-time-unit {
                padding: 12px 8px;
                border-radius: 12px;
                min-width: 65px;
            }
            
            .premium-hero-time-number {
                font-size: 1.4rem;
            }
            
            .premium-hero-time-label {
                font-size: 10px;
                margin-top: 6px;
            }
            
            .premium-hero-exclusive-text {
                font-size: 16px;
                margin-top: 30px;
                letter-spacing: 1px;
            }
        }
        
        /* Small Devices (landscape phones, 481px to 768px) */
        @media (min-width: 481px) and (max-width: 768px) {
            .premium-hero-wrapper {
                padding: 15px;
            }
            
            .premium-hero-main-section {
                padding: 50px 35px;
                border-radius: 25px;
            }
            
            .premium-hero-badges-container {
                gap: 25px;
                margin-bottom: 40px;
            }
            
            .premium-hero-badge {
                padding: 14px 28px;
                font-size: 12px;
            }
            
            .premium-hero-main-title {
                font-size: 2.8rem;
                margin-bottom: 30px;
            }
            
            .premium-hero-main-subtitle {
                font-size: 1.3rem;
                margin-bottom: 40px;
            }
            
            .premium-hero-digital-clock {
                padding: 30px 25px;
                margin: 40px auto;
            }
            
            .premium-hero-clock-label {
                font-size: 16px;
                margin-bottom: 22px;
            }
            
            .premium-hero-countdown-display {
                font-size: 2.2rem;
                padding: 22px 18px;
                letter-spacing: 2.5px;
            }
            
            .premium-hero-countdown-units {
                gap: 20px;
                margin-top: 22px;
            }
            
            .premium-hero-time-unit {
                padding: 15px 12px;
                min-width: 75px;
            }
            
            .premium-hero-time-number {
                font-size: 1.6rem;
            }
            
            .premium-hero-time-label {
                font-size: 11px;
                margin-top: 7px;
            }
            
            .premium-hero-exclusive-text {
                font-size: 17px;
                margin-top: 35px;
            }
        }
        
        /* Medium Devices (tablets, 769px to 1024px) */
        @media (min-width: 769px) and (max-width: 1024px) {
            .premium-hero-wrapper {
                padding: 20px;
            }
            
            .premium-hero-main-section {
                padding: 65px 45px;
                max-width: 900px;
            }
            
            .premium-hero-badges-container {
                gap: 30px;
                margin-bottom: 45px;
            }
            
            .premium-hero-badge {
                padding: 15px 30px;
                font-size: 13px;
            }
            
            .premium-hero-main-title {
                font-size: 3.2rem;
                margin-bottom: 32px;
            }
            
            .premium-hero-main-subtitle {
                font-size: 1.5rem;
                margin-bottom: 45px;
            }
            
            .premium-hero-digital-clock {
                padding: 35px 30px;
                margin: 45px auto;
                max-width: 580px;
            }
            
            .premium-hero-clock-label {
                font-size: 17px;
                margin-bottom: 23px;
            }
            
            .premium-hero-countdown-display {
                font-size: 2.8rem;
                padding: 23px 20px;
            }
            
            .premium-hero-countdown-units {
                gap: 28px;
                margin-top: 23px;
            }
            
            .premium-hero-time-unit {
                padding: 18px 15px;
            }
            
            .premium-hero-time-number {
                font-size: 2rem;
            }
            
            .premium-hero-time-label {
                font-size: 12px;
            }
            
            .premium-hero-exclusive-text {
                font-size: 18px;
                margin-top: 38px;
            }
        }
        
        /* Large Devices (desktops, 1025px to 1440px) */
        @media (min-width: 1025px) and (max-width: 1440px) {
            .premium-hero-main-section {
                padding: 70px 50px;
                max-width: 1100px;
            }
            
            .premium-hero-badges-container {
                gap: 35px;
            }
            
            .premium-hero-digital-clock {
                max-width: 620px;
            }
            
            .premium-hero-countdown-units {
                gap: 30px;
            }
        }
        
        /* Extra Large Devices (large desktops, 1441px and up) */
        @media (min-width: 1441px) {
            .premium-hero-main-section {
                padding: 80px 60px;
                max-width: 1200px;
            }
            
            .premium-hero-badges-container {
                gap: 40px;
            }
            
            .premium-hero-digital-clock {
                max-width: 650px;
            }
            
            .premium-hero-countdown-units {
                gap: 35px;
            }
        }
        
        /* Touch Device Optimizations */
        @media (hover: none) and (pointer: coarse) {
            .premium-hero-badge {
                padding: 16px 32px;
                font-size: 14px;
            }
            
            .premium-hero-time-unit {
                padding: 20px 16px;
                min-width: 80px;
            }
            
            .premium-hero-badge:hover {
                transform: none;
            }
            
            .premium-hero-time-unit:hover {
                transform: none;
            }
            
            .premium-hero-digital-clock:hover {
                transform: none;
            }
        }
        
        /* Landscape Orientation for Small Devices */
        @media (max-width: 768px) and (orientation: landscape) {
            .premium-hero-wrapper {
                padding: 15px;
            }
            
            .premium-hero-main-section {
                padding: 30px 40px;
            }
            
            .premium-hero-badges-container {
                flex-direction: row;
                gap: 20px;
                margin-bottom: 30px;
            }
            
            .premium-hero-main-title {
                font-size: 2.4rem;
                margin-bottom: 20px;
            }
            
            .premium-hero-main-subtitle {
                font-size: 1.2rem;
                margin-bottom: 30px;
            }
            
            .premium-hero-digital-clock {
                padding: 25px 20px;
                margin: 30px auto;
            }
            
            .premium-hero-countdown-units {
                gap: 20px;
                margin-top: 18px;
            }
            
            .premium-hero-exclusive-text {
                font-size: 16px;
                margin-top: 25px;
            }
        }
        
        /* High DPI Displays */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .premium-hero-main-title {
                text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
            }
            
            .premium-hero-badge {
                box-shadow: 
                    0 8px 20px rgba(0, 0, 0, 0.15),
                    0 3px 10px rgba(0, 0, 0, 0.1),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
            }
        }

        /* Premium animations */
        @keyframes premium-hero-shimmer {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }

        .premium-hero-main-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.1),
                transparent
            );
            animation: premium-hero-shimmer 3s infinite;
            pointer-events: none;
        }

        /* Luxury glow effects */
        .premium-hero-digital-clock:hover {
            box-shadow: 
                0 30px 60px rgba(0, 0, 0, 0.2),
                0 15px 40px rgba(0, 0, 0, 0.15),
                inset 0 2px 0 rgba(255, 255, 255, 1),
                inset 0 -2px 0 rgba(0, 0, 0, 0.1),
                0 0 30px rgba(248, 113, 113, 0.1);
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }

        .premium-hero-main-title::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                45deg,
                transparent 30%,
                rgba(255, 255, 255, 0.1) 50%,
                transparent 70%
            );
            animation: premium-hero-title-shimmer 4s infinite;
            pointer-events: none;
        }

        @keyframes premium-hero-title-shimmer {
            0%, 100% {
                transform: translateX(-100%);
                opacity: 0;
            }
            50% {
                transform: translateX(100%);
                opacity: 1;
            }
        }


        /* Base styles (mobile-first) */
   #tkPaymentOptions.payment-container {
    max-width: 100%;
    padding: 20px 15px;
   
    box-sizing: border-box;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  }

  #tkPaymentHeader.payment-header {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #000000;
    text-align: center;
    letter-spacing: 0.5px;
  }

  .tkCheckIcon {
    flex-shrink: 0;
    margin-right: 12px;
    margin-top: 2px;
  }

  .tkMethodCard, .tkMethodCrypto {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .tkMethodDetails {
    flex: 1;
  }

  .tkMethodName {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    font-size: 0.95rem;
    color: #000000;
  }

  .tkCardIcons, .tkCryptoTypes {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
    letter-spacing: 0.3px;
  }

  #tkSecurityBadges.security-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
  }

  .tkSecBadge {
    background: #f0f0ff;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
  }

  .tkBadgeIcon {
    flex-shrink: 0;
  }

  /* Tablet & Desktop Styles */
  @media (min-width: 768px) {
    #tkPaymentHeader.payment-header {
      font-size: 1.3rem;
      text-align: left;
    }
    
    .tkMethodName {
      font-size: 1rem;
    }
    
    #tkSecurityBadges.security-badges {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .tkSecBadge {
      flex: 1;
      min-width: 150px;
      justify-content: flex-start;
    }
  }

  /* Large Desktop */
  @media (min-width: 1024px) {
    #tkPaymentOptions.payment-container {
      max-width: 550px;
      padding: 25px;
    }
    
    #tkSecurityBadges.security-badges {
      justify-content: space-between;
    }
    
    .tkSecBadge {
      flex: none;
      width: auto;
      padding: 10px 20px;
    }
  }

  /* Animation for interactivity */
  .tkSecBadge:hover {
    background: #e6e6ff;
    transform: translateY(-2px);
    transition: all 0.2s ease;
  }


  .crypto-payment-container {
            max-width: 500px;
            margin: 0 auto;
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            text-align: center;
        }
        
        .crypto-banner {
            background: linear-gradient(135deg, #e8e8e8 0%, #f4f4f4 100%);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            border: 2px solid #ddd;
        }
        
        .crypto-title {
            font-size: 32px;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
            letter-spacing: 2px;
        }
        
        .crypto-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }
        
        .crypto-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 18px;
        }
        
        .crypto-icon svg {
            width: 28px;
            height: 28px;
            fill: white;
        }
        
        .bitcoin { background-color: #f7931a; }
        .ethereum { background-color: #627eea; }
        .litecoin { background-color: #345d9d; }
        .bitcoin-cash { background-color: #00d962; }
        
        .accepted-text {
            font-size: 18px;
            color: #666;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .payment-info {
            margin: 25px 0;
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 8px;
        }
        
        .contact-title {
            font-size: 18px;
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .contact-info {
            font-size: 16px;
            color: #666;
            margin-bottom: 20px;
        }
        
        .whatsapp-button {
            display: inline-flex;
            align-items: center;
            background-color: #25d366;
            color: white;
            padding: 15px 24px;
            border-radius: 15px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            margin-top: 2rem;
        }
        
        .whatsapp-button:hover {
            background-color: #20b456;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
        }
        
        .whatsapp-button svg {
            margin-right: 8px;
        }
        
        .supported-currencies {
            margin-top: 20px;
            font-size: 14px;
            color: #888;
        }
        
        @media (max-width: 480px) {
            .crypto-payment-container {
                margin: 10px;
                padding: 20px;
            }
            
            .crypto-title {
                font-size: 24px;
            }
            
            .crypto-icons {
                gap: 15px;
            }
            
            .crypto-icon {
                width: 45px;
                height: 45px;
                font-size: 16px;
            }
            
            .crypto-icon svg {
                width: 25px;
                height: 25px;
            }
        }


/* Add this CSS to fix the mobile card scroll issue */
@media (max-width: 768px) {
    /* Fix the main card section */
    .card-section {
        /* Remove all transforms and 3D effects */
        transform: none !important;
        will-change: auto !important;
        backface-visibility: visible !important;
        perspective: none !important;
        
        /* Ensure normal layout flow */
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 30px 15px !important;
        box-sizing: border-box !important;
        
        /* Disable hover effects */
        transition: none !important;
    }
    
    /* Fix the card container */
    .card-container {
        /* Disable 3D transforms completely */
        perspective: none !important;
        transform-style: flat !important;
        transform: none !important;
        will-change: auto !important;
        
        /* Ensure it doesn't interfere with scrolling */
        position: relative !important;
        width: 280px !important;
        height: 170px !important;
        margin: 0 auto 30px !important;
    }
    
    /* Fix all wrapper elements */
    .tilt-wrapper {
        transform: none !important;
        transform-style: flat !important;
        transition: none !important;
        will-change: auto !important;
        perspective: none !important;
    }
    
    .flip-wrapper {
        transform: none !important;
        transform-style: flat !important;
        transition: none !important;
        will-change: auto !important;
        perspective: none !important;
        backface-visibility: visible !important;
    }
    
    /* Fix card faces */
    .card-face {
        transform: none !important;
        backface-visibility: visible !important;
        will-change: auto !important;
        transition: none !important;
    }
    
    /* Hide the back of the card on mobile */
    .card-back {
        display: none !important;
    }
    
    /* Disable all hover effects on mobile */
    .card-container:hover .flip-wrapper,
    .card-container.is-flipped .flip-wrapper,
    .card-container:hover .tilt-wrapper,
    .card-section:hover {
        transform: none !important;
        transition: none !important;
    }
    
    /* Ensure touch scrolling works properly */
    .subscription-grid,
    .card-section,
    .card-container,
    .tilt-wrapper,
    .flip-wrapper {
        touch-action: pan-y !important;
        -webkit-overflow-scrolling: touch !important;
        overscroll-behavior: contain !important;
    }
    
    /* Remove any GPU compositing hints that might cause issues */
    .card-section *,
    .card-container *,
    .tilt-wrapper *,
    .flip-wrapper * {
        will-change: auto !important;
        transform: none !important;
        backface-visibility: visible !important;
        perspective: none !important;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .card-section {
        padding: 20px 10px !important;
    }
    
    .card-container {
        width: 260px !important;
        height: 160px !important;
    }
}

/* Ensure no horizontal overflow */
@media (max-width: 768px) {
    body {
        overflow-x: hidden !important;
    }
    
    * {
        box-sizing: border-box !important;
    }
    
    /* Fix any container that might cause horizontal scroll */
    .subscription-grid {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}