@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amarante&display=swap');

:root {
    --header-height: 90px;
}

html,
body {
    background-color: transparent;
    overscroll-behavior: auto;
    touch-action: auto;
    overflow-y: auto !important;
    min-height: 100%;
    height: auto !important;
}

body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    min-height: 100%;
    background: #0b0b10;
}

/* Subtle red/black background (replaces video) */
#dylan-bg {
    position: fixed;
    inset: 0;
    background: radial-gradient(900px 520px at 12% 12%, rgba(255, 60, 60, 0.18), transparent 60%),
        radial-gradient(900px 520px at 88% 18%, rgba(255, 80, 80, 0.12), transparent 58%),
        linear-gradient(160deg, rgba(18, 18, 24, 0.98) 0%, rgba(10, 10, 14, 0.98) 45%, rgba(14, 14, 20, 0.98) 100%);
    z-index: -2;
}

#dylan-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 60, 60, 0.08), transparent 60%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.15));
    opacity: 0.9;
    pointer-events: none;
}

header {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    position: fixed;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    top: 0;
    left: 0;
    z-index: 20;
}

/* Scrolling Services Banner */
.services-banner {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    overflow-x: hidden;
    overflow-y: visible;
    z-index: 10;
    padding: 12px 0;
    display: flex;
    align-items: center;
    animation: bannerFade 0.6s ease both;
}

.services-banner-inner {
    width: 100%;
    overflow: visible;
    padding: 8px 0 10px;
}

.services-banner-track {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
    animation-delay: -10s;
    will-change: transform;
    align-items: center;
}


.banner-item {
    color: white;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.1;
}

.banner-item svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
    flex-shrink: 0;
}

.banner-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.banner-item:hover svg {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes bannerFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}






header a {
  display: flex;
  height: 100%;
  align-items: center;

}

header img{
  height: calc(100% + 15px);
  width: auto;
  cursor: pointer;
}

header img:hover{
    filter:drop-shadow(0 0 10px rgba(255, 255, 255, 0.212));
}


header nav ul li a {
    color: white;
    font-size: 18px;
    display: flex;
    justify-content: center;
    font-family: Poppins;
    position: relative;
    padding: 8px 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--hover);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header nav ul li a:hover {
    color: var(--hover);
}

header nav ul li a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.active {
    color: var(--hover);
    position: relative;
}

.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: var(--hover);
}

header nav ul {
    display: flex;
    gap: 35px;
}

/* Hamburger Menu - Hidden on Desktop */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 21;
    position: relative;
    padding: 10px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.3, 1, 0.3, 1);
    pointer-events: none;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(12px, 12px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu - Hidden by Default */
.mobileMenu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    width: min(360px, 100%);
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    min-height: calc(100vh - var(--header-height));
    background: linear-gradient(180deg, #140000 0%, #050000 100%);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding: 24px 0 30px;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.3, 1, 0.3, 1);
    overflow-y: hidden;
    pointer-events: none;
}

.mobileMenu.open {
    transform: translateX(0);
    pointer-events: auto;
}

body.menu-open .services-banner {
    display: none !important;
}

.mobileMenu.open ~ .services-banner {
    display: none !important;
}

body.menu-open,
html.menu-open {
    overflow: hidden !important;
    height: 100% !important;
}

body.menu-open {
    touch-action: none;
}

@supports selector(body:has(.mobileMenu.open)) {
    body:has(.mobileMenu.open) .services-banner {
        display: none;
    }
}


.mobileMenu ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 18px 0;
}

.mobileMenu ul li {
    list-style: none;
}

.mobileMenu ul li a {
    display: block;
    padding: 16px 18px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    font-family: Poppins;
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mobileMenu ul li a:hover,
.mobileMenu ul li a.active {
    background: rgba(255, 87, 87, 0.15);
    color: var(--hover);
    border-color: rgba(255, 87, 87, 0.45);
}

/* Mobile Menu Overlay - Click to Close */
.menuOverlay {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    min-height: calc(100vh - var(--header-height));
    background: rgba(0, 0, 0, 0);
    z-index: 1990;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.menuOverlay.open {
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
    pointer-events: auto;
}

/* main */

main {

    padding: 40px;
    margin: 40px;
    border-radius: 10px;

    /* background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);

    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-top: 2px solid rgba(255, 255, 255, 0.1); */
}

/* ============================================
   MINIMAL CLEAN HOMEPAGE
   ============================================ */

/* Hero Section */
main#home .heroSection {
    margin-bottom: 120px;
    padding: 40px 20px 0;
}

main#home .heroContent {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

main#home .heroProfile {
    margin-bottom: 35px;
}

main#home .heroProfile .avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

main#home .heroProfile .avatar:hover {
    transform: scale(1.05);
    border-color: rgba(255, 87, 87, 0.3);
}

main#home .heroText h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    letter-spacing: -0.5px;
}

main#home .heroText .bioBox {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 16px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

@supports not (backdrop-filter: blur(30px)) {
    main#home .heroText .bioBox {
        background: rgba(20, 20, 20, 0.85) !important;
        border: 1px solid rgba(255, 255, 255, 0.25) !important;
    }
}

main#home .heroText .bioBox:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.4);
}

main#home .heroText .bio {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    font-weight: 400;
    max-width: 550px;
    margin: 0 auto;
}

main#home .heroText .stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 45px 0 40px;
    padding: 0;
    border: none;
}

main#home .heroText .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
}

main#home .heroText .stat::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--accent);
    opacity: 0.4;
    animation: fadeInLine 0.6s ease-out forwards;
}

@keyframes fadeInLine {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 30px;
        opacity: 0.4;
    }
}

main#home .heroText .stat:nth-child(1)::after {
    animation-delay: 1.5s;
}

main#home .heroText .stat:nth-child(2)::after {
    animation-delay: 1.6s;
}

main#home .heroText .stat:nth-child(3)::after {
    animation-delay: 1.7s;
}

main#home .heroText .stat strong {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1;
}

main#home .heroText .stat span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    text-transform: lowercase;
    letter-spacing: 0.3px;
}

main#home .heroCTA {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
}

/* Buttons */
main#home .btn-primary {
    padding: 14px 32px;
    background: linear-gradient(135deg, rgba(255, 87, 87, 0.95), rgba(160, 0, 0, 0.95));
    color: #fff;
    border: 1px solid rgba(255, 87, 87, 0.5);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(255, 87, 87, 0.25);
}

main#home .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

main#home .btn-primary:hover::before {
    left: 100%;
}

main#home .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(255, 87, 87, 0.35);
    background: linear-gradient(135deg, rgba(255, 108, 108, 0.98), rgba(168, 0, 0, 0.98));
}

main#home .btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(255, 87, 87, 0.25);
}

main#home .btn-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-bottom: 2px;
}

main#home .btn-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

main#home .btn-link:hover {
    color: white;
}

main#home .btn-link:hover::after {
    width: 100%;
}

main * {
    color: white;
}

/* Section Titles */
main#home .sectionTitle {
    text-align: center;
    margin-bottom: 60px;
}

main#home .sectionTitle .tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 87, 87, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 87, 87, 0.3);
    border-radius: 50px;
    color: var(--hover);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

main#home .sectionTitle h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

main#home .sectionTitle .subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 20px 30px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

main#home .whatIDo .sectionTitle .subtitle {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 20px 30px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

/* Apply glassmorphism to all subtitle elements */
.subtitle {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 16px;
    padding: 20px 30px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

/* What I Do Section */
main#home .whatIDo {
    margin-bottom: 140px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    scroll-margin-top: calc(var(--header-height) + 90px);
}

main#home .whatIDo .services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

main#home .serviceCard {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

main#home .serviceCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

main#home .serviceCard:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3) !important;
    background: rgba(0, 0, 0, 0.7) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

main#home .serviceCard:hover::before {
    opacity: 1;
}

main#home .serviceIcon {
    width: 60px;
    height: 60px;
    background: rgba(255, 87, 87, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

main#home .serviceCard:hover .serviceIcon {
    background: rgba(255, 87, 87, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(255, 87, 87, 0.2);
}

main#home .serviceIcon svg {
    width: 28px;
    height: 28px;
    color: var(--hover);
    stroke-width: 2.5;
}

main#home .serviceContent h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

main#home .serviceContent p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin-bottom: 20px;
}

main#home .serviceList {
    list-style: none;
    padding: 0;
    margin: 0;
}

main#home .serviceList li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

main#home .serviceList li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--hover);
    font-weight: 600;
}

/* Preview Button - Show on smaller screens */
main#home .previewBtn {
    display: block;
    margin-top: 20px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(255, 87, 87, 0.15) 0%, rgba(255, 87, 87, 0.1) 100%);
    border: 1px solid rgba(255, 87, 87, 0.3);
    border-radius: 10px;
    color: var(--hover);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    position: relative;
    overflow: hidden;
}

main#home .previewBtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

main#home .previewBtn:hover::before {
    left: 100%;
}

main#home .previewBtn:hover {
    background: linear-gradient(135deg, rgba(255, 87, 87, 0.25) 0%, rgba(255, 87, 87, 0.15) 100%);
    border-color: rgba(255, 87, 87, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 87, 87, 0.2);
}

main#home .previewBtn:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(255, 87, 87, 0.15);
}

/* Hide button on large screens with mouse (use hover instead) */
@media (min-width: 1024px) and (pointer: fine) {
    main#home .previewBtn {
        display: none;
    }
}

/* Hide buttons on ALL touchscreen devices regardless of size */
@media (pointer: coarse) {
    main#home .previewBtn {
        display: none !important;
    }

    .videoPopup,
    .statsPopup {
        display: none !important;
    }
}

/* Close Button for Popups - Show on all sizes */
.closePopup {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: rgba(255, 87, 87, 0.4);
    border: 2px solid rgba(255, 87, 87, 0.9);
    border-radius: 50%;
    color: white;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(255, 87, 87, 0.6);
    font-weight: bold;
    padding: 0;
}

.closePopup:hover {
    background: rgba(255, 87, 87, 0.6);
    border-color: rgba(255, 87, 87, 1);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 40px rgba(255, 87, 87, 1);
}

/* Video Popup for Content Creation */
.videoPopup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    max-height: 100%;
    transform: scale(0.95);
    opacity: 0;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.99);
    backdrop-filter: blur(50px);
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    box-sizing: border-box;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    inset: 0;
    touch-action: none;
}

.videoPopup.open,
.statsPopup.open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* Desktop hover support - preview over card (MOUSE ONLY) */
@media (min-width: 1024px) and (pointer: fine) {
    .serviceCard .videoPopup,
    .serviceCard .statsPopup {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(50px);
        -webkit-backdrop-filter: blur(50px);
        border-radius: 20px;
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        z-index: 100;
        padding: 20px 25px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .serviceCard#contentCard:hover .videoPopup,
    .serviceCard#brandCard:hover .videoPopup,
    .serviceCard#strategyCard:hover .statsPopup {
        opacity: 1;
        pointer-events: auto;
    }

    .serviceCard .videoPopup .videoContainer {
        max-width: 100%;
        height: auto;
        padding: 0;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .serviceCard .videoPopup video {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
        border-radius: 12px;
    }

    .serviceCard .videoPopup .videoOverlay {
        opacity: 0.9;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    }

    /* Stats Popup Specific - Compact to fit all content */
    .serviceCard .statsPopup {
        padding: 20px 25px;
        overflow-y: hidden;
    }

    .serviceCard .statsPopup > * {
        width: 100%;
        max-width: 100%;
    }

    .serviceCard .statsPopup .statsPopupHeader {
        padding: 0 0 10px 0;
        margin-bottom: 12px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .serviceCard .statsPopup .statsPopupHeader h4 {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .serviceCard .statsPopup .statsPopupHeader .statsDate {
        font-size: 11px;
    }

    .serviceCard .statsPopup .statsGrid {
        padding: 0;
        margin-bottom: 12px;
        gap: 8px;
    }

    .serviceCard .statsPopup .statItem {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.15);
        transition: all 0.3s ease;
        padding: 8px 10px;
        gap: 3px;
    }

    .serviceCard .statsPopup .statItem:hover {
        background: rgba(255, 87, 87, 0.1);
        border-color: rgba(255, 87, 87, 0.3);
        transform: scale(1.05);
    }

    .serviceCard .statsPopup .statLabel {
        font-size: 10px;
    }

    .serviceCard .statsPopup .statValue {
        font-size: 16px;
    }

    .serviceCard .statsPopup .trafficSource {
        padding: 12px 0 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 0;
    }

    .serviceCard .statsPopup .trafficSource h5 {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .serviceCard .statsPopup .trafficBar {
        margin-bottom: 6px;
        grid-template-columns: 80px 1fr 40px;
        gap: 8px;
    }

    .serviceCard .statsPopup .trafficLabel {
        font-size: 10px;
    }

    .serviceCard .statsPopup .trafficBarContainer {
        height: 6px;
    }

    .serviceCard .statsPopup .trafficPercent {
        font-size: 10px;
    }

    .serviceCard .closePopup {
        display: none;
    }

    .serviceCard:hover {
        z-index: 200;
    }
}

/* Video Popup for Brand Partnerships */
.videoContainer {
    position: relative;
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    height: calc(100% - 80px);
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    touch-action: none;
}

.brandVideo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 20px;
    touch-action: none;
}

main#home .videoOverlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

main#home .videoLabel {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Stats Popup */
/* Stats Popup */
.statsPopup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    max-height: 100%;
    transform: scale(0.95);
    opacity: 0;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.99);
    backdrop-filter: blur(50px);
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    inset: 0;
    touch-action: none;
}

.statsPopupHeader {
    width: 100%;
    max-width: 900px;
    margin-bottom: 30px;
    padding: 60px 40px 12px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.statsPopupHeader h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.statsPopupHeader .statsDate {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.statsGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 900px;
    padding: 0 40px;
}

.statItem {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.statLabel {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.statValue {
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.trafficSource {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 40px 40px 40px;
    width: 100%;
    max-width: 900px;
    margin-bottom: 40px;
}

.trafficSource h5 {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.trafficBar {
    display: grid;
    grid-template-columns: 100px 1fr 50px;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.trafficLabel {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.trafficBarContainer {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.trafficBarFill {
    height: 100%;
    background: linear-gradient(90deg, var(--hover), rgba(255, 87, 87, 0.6));
    border-radius: 4px;
    transition: width 0.6s ease;
}

main#home .trafficPercent {
    font-size: 12px;
    font-weight: 600;
    color: white;
    text-align: right;
}

/* Clients Section */
main#home .clients {
    margin-bottom: 140px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

main#home .clients .clientLogos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

main#home .clients .clientLogo {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

main#home .clients .clientLogo:hover {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 87, 87, 0.6);
}

main#home .clients .clientLogo .clientLink {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

main#home .clients .clientLogo img {
    max-width: 100%;
    max-height: 130px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1.3) contrast(1.1);
    transition: all 0.4s ease;
}

main#home .clients .clientLogo .clientLink:hover img {
    filter: brightness(0.4) contrast(1.1);
}

main#home .clients .clientLogo .linkOverlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    pointer-events: none;
}

main#home .clients .clientLogo .clientLink:hover .linkOverlay {
    opacity: 1;
    transform: translateY(0);
}

main#home .clients .clientLogo .linkText {
    color: white;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

main#home .clients .clientLogo .linkArrow {
    color: var(--hover);
    font-size: 24px;
    font-weight: 700;
    animation: arrowBounce 1s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

/* CTA Section */
main#home .cta {
    margin-bottom: 100px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
}

main#home .cta h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

main#home .cta p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
    font-weight: 300;
}

main#home .cta .btn-primary {
    padding: 14px 32px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 900px) {
    main#home .whatIDo .services {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 40px 30px;
    }

    main#home .clients .clientLogos {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    /* Show hamburger on tablet */
    .hamburger {
        display: flex;
    }

    header nav {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 80px;
    }
    html, body {
        overflow-x: hidden;
        position: static;
        overflow-y: auto !important;
        height: auto;
    }

    main {
        padding: 24px 16px;
        margin: 100px 0 16px 0;
    }

    header {
        height: var(--header-height);
        padding: 0 16px;
    }

    header img {
        height: 50px;
    }

    .hamburger {
        display: flex;
    }

    header nav {
        display: none;
    }

    .mobileMenu {
        width: 100%;
        border-left: none;
    }

    .services-banner {
        top: var(--header-height);
        padding: 12px 0 16px;
        min-height: 76px;
        overflow-x: auto;
        overflow-y: visible;
        scrollbar-width: none;
        border-top: none;
    }

    .services-banner::-webkit-scrollbar {
        display: none;
    }

    .services-banner-track {
        gap: 12px;
        padding: 8px 16px 10px;
        animation: scroll 26s linear infinite;
        animation-delay: -8s;
        width: max-content;
    }

    .banner-item {
        font-size: 12px;
        padding: 11px 16px;
        line-height: 1.2;
    }

    main#book-call {
        margin-top: 120px !important;
    }

    footer .topBar {
        gap: 30px;
    }

    main#home .heroSection {
        margin-bottom: 80px;
        margin-top: 20px;
    }

    main#home .heroProfile .avatar {
        width: 100px;
        height: 100px;
    }

    main#home .heroText h1 {
        font-size: 36px;
    }

    main#home .heroText .bio {
        font-size: 18px;
    }

    main#home .heroText .stats {
        gap: 40px;
        margin: 35px 0 30px;
    }

    main#home .heroText .stat strong {
        font-size: 38px;
        letter-spacing: -1.5px;
    }

    main#home .heroText .stat span {
        font-size: 11px;
    }

    main#home .heroCTA {
        flex-direction: column;
        gap: 15px;
    }

    main#home .heroCTA a {
        width: 100%;
        text-align: center;
    }

    main#home .whatIDo,
    main#home .clients,
    main#home .cta {
        margin-bottom: 80px;
    }

    main#home .sectionTitle h2 {
        font-size: 36px;
    }

    main#home .sectionTitle .subtitle {
        font-size: 17px;
    }

    main#home .serviceCard {
        padding: 30px 25px;
    }

    main#home .clients .clientLogos {
        grid-template-columns: 1fr;
    }

    main#home .clients .clientLogo {
        padding: 25px 20px;
        min-height: 140px;
    }

    main#home .clients .clientLogo img {
        max-width: 100%;
        max-height: 110px;
    }

    main#home .cta {
        padding: 50px 20px;
    }

    main#home .cta h2 {
        font-size: 28px;
    }

    main#home .cta p {
        font-size: 16px;
    }

}

/* Small Mobile */
@media (max-width: 480px) {
    :root {
        --header-height: 70px;
    }

    html, body {
        overflow-x: hidden;
    }

    main {
        padding: 20px 12px;
        margin: 90px 0 12px 0;
    }

    header {
        height: var(--header-height);
        padding: 0 12px;
    }

    header img {
        height: 45px;
    }

    .mobileMenu {
        width: 100%;
        right: 0;
    }

    .services-banner {
        top: var(--header-height);
        padding: 12px 0 14px;
        min-height: 70px;
        overflow-x: auto;
        overflow-y: visible;
        scrollbar-width: none;
        border-top: none;
    }

    .services-banner::-webkit-scrollbar {
        display: none;
    }

    .banner-item {
        font-size: 11px;
        padding: 10px 16px;
        line-height: 1.25;
    }

    main#book-call {
        margin-top: 105px !important;
    }

    footer {
        padding: 30px 16px;
    }

    footer .topBar {
        gap: 24px;
    }

    main#home .heroText h1 {
        font-size: 32px;
    }

    main#home .heroText .bio {
        font-size: 17px;
    }

    main#home .heroText .stats {
        gap: 30px;
        flex-wrap: nowrap;
        margin: 30px 0 25px;
    }

    main#home .heroText .stat strong {
        font-size: 32px;
        letter-spacing: -1px;
    }

    main#home .heroText .stat span {
        font-size: 10px;
    }

    main#home .btn-primary {
        padding: 12px 28px;
        font-size: 15px;
    }

    main#home .sectionTitle h2 {
        font-size: 30px;
    }

    main#home .whatIDo .services {
        padding: 30px 25px;
    }

    main#home .serviceCard {
        padding: 25px 20px;
    }

    main#home .clients .clientLogos {
        grid-template-columns: 1fr;
    }

    main#home .clients .clientLogo {
        padding: 20px 15px;
        min-height: 130px;
    }

    main#home .clients .clientLogo img {
        max-width: 100%;
        max-height: 100px;
    }
}
















/* footer */
footer {
    width: 100%;
    min-height: 300px;

    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);

    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.15);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;

    margin-top: 80px;
    padding: 40px 20px;
}

footer *{
    
    color: white;
    font-family: Poppins;
}

footer .topBar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 40px;
    justify-items: center;
}

footer .footerSection h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    text-align: left;
}

footer .footerSection ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

footer .footerSection ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

footer .footerSection ul li a:hover {
    color: var(--hover);
    transform: translateX(5px);
}

footer .footerText {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
    max-width: 300px;
}

footer .socialLinks {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

footer .socialIcon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
}

footer .socialIcon svg {
    width: 22px;
    height: 22px;
    color: white;
}

footer .socialIcon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

footer .socialIcon .socialLabel {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

footer .socialIcon:hover {
    background: rgba(255, 87, 87, 0.1);
    border-color: rgba(255, 87, 87, 0.5);
    transform: translateY(-3px);
}

footer .botBar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 1200px;
}

footer .botBar p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}


footer .botBar p#promo {
    font-size: 13px;
}

footer .botBar p#promo a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 2px;
}

footer .botBar p#promo a:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

/* Footer Medium Screens (Tablets) */
@media (max-width: 1024px) and (min-width: 769px) {
    footer .topBar {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        justify-items: center;
    }

    footer .footerSection {
        text-align: center;
    }

    footer .footerSection h3 {
        text-align: center;
    }

    footer .footerSection ul {
        align-items: center;
    }

    footer .socialLinks {
        justify-content: center;
    }
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    footer {
        padding: 40px 20px;
        margin-top: 60px;
    }

    footer .topBar {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    footer .footerSection {
        text-align: center;
    }

    footer .footerSection h3 {
        text-align: center;
    }

    footer .footerSection ul {
        align-items: center;
    }

    footer .socialLinks {
        justify-content: center;
    }

    footer .footerText {
        margin: 0 auto;
    }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

#homeAbout {
    scroll-margin-top: 140px;
}

#homeAbout .aboutHero {
    margin-bottom: 80px;
    padding-top: 20px;
}

#homeAbout .myStory,
#homeAbout .currentStats,
#homeAbout .vision,
#homeAbout .beliefs,
#homeAbout .aboutCTA {
    margin-bottom: 90px;
}

/* About Hero Section */
.aboutPage .aboutHero {
    margin-bottom: 100px;
    padding: 40px 20px 0;
    text-align: center;
}

.aboutPage .aboutHeroContent {
    max-width: 800px;
    margin: 0 auto;
}

.aboutPage .aboutHeroContent .tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 87, 87, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 87, 87, 0.3);
    border-radius: 50px;
    color: var(--hover);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.aboutPage .aboutHeroContent h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    letter-spacing: -0.5px;
}

.aboutPage .aboutHeroContent .subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    max-width: 650px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 16px;
    padding: 20px 30px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

/* My Story Section */
.aboutPage .myStory {
    margin-bottom: 120px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.aboutPage .myStory .storyContent {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 20px;
    padding: 50px;
}

.aboutPage .myStory .storyImage img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.aboutPage .myStory .storyImage img:hover {
    transform: scale(1.05);
    border-color: rgba(255, 87, 87, 0.3);
}

.aboutPage .myStory .storyText h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

.aboutPage .myStory .storyText p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-weight: 300;
}

/* Current Stats Section */
.aboutPage .currentStats {
    margin-bottom: 120px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.aboutPage .currentStats .sectionTitle {
    text-align: center;
    margin-bottom: 50px;
}

.aboutPage .currentStats .sectionTitle h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.aboutPage .currentStats .sectionTitle .subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 20px 30px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.aboutPage .currentStats .statsGrid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: nowrap;
    max-width: 1100px;
    margin: 0 auto;
}

.aboutPage .currentStats .statCard {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    min-width: 0;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.aboutPage .currentStats .statCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.aboutPage .currentStats .statCard:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3) !important;
    background: rgba(0, 0, 0, 0.7) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.aboutPage .currentStats .statCard:hover::before {
    opacity: 1;
}

.aboutPage .currentStats .statNumber {
    font-size: 52px;
    font-weight: 700;
    color: white;
    letter-spacing: -2px;
    margin-bottom: 8px;
}

.aboutPage .currentStats .statLabel {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 15px;
}

.aboutPage .currentStats .statDesc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Vision Section */
.aboutPage .vision {
    margin-bottom: 120px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.aboutPage .vision .visionContent {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 20px;
    padding: 50px;
}

.aboutPage .vision .visionText .tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 87, 87, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 87, 87, 0.3);
    border-radius: 50px;
    color: var(--hover);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.aboutPage .vision .visionText h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

.aboutPage .vision .visionText p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-weight: 300;
}

.aboutPage .vision .visionHighlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aboutPage .vision .visionCard {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.aboutPage .vision .visionCard:hover {
    border-color: rgba(255, 87, 87, 0.5);
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.aboutPage .vision .visionCard h3 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.aboutPage .vision .visionCard p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

/* What I Believe Section */
.aboutPage .beliefs {
    margin-bottom: 120px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.aboutPage .beliefs .sectionTitle {
    text-align: center;
    margin-bottom: 50px;
}

.aboutPage .beliefs .sectionTitle h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.aboutPage .beliefs .sectionTitle .subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 20px 30px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.aboutPage .beliefs .beliefsGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.aboutPage .beliefs .beliefCard {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.aboutPage .beliefs .beliefCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.aboutPage .beliefs .beliefCard:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3) !important;
    background: rgba(0, 0, 0, 0.7) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.aboutPage .beliefs .beliefCard:hover::before {
    opacity: 1;
}

.aboutPage .beliefs .beliefCard h3 {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.aboutPage .beliefs .beliefCard p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin: 0;
}

/* About CTA Section */
.aboutPage .aboutCTA {
    margin-bottom: 100px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
}

.aboutPage .aboutCTA .ctaContent h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.aboutPage .aboutCTA .ctaContent p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
    font-weight: 300;
}

.aboutPage .aboutCTA .ctaButtons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.aboutPage .aboutCTA .btn-primary,
.aboutPage .aboutCTA .btn-secondary {
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.aboutPage .aboutCTA .btn-primary {
    background: linear-gradient(135deg, rgba(255, 87, 87, 0.95), rgba(160, 0, 0, 0.95));
    color: #fff;
    border: 1px solid rgba(255, 87, 87, 0.5);
}

.aboutPage .aboutCTA .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 87, 87, 0.3);
}

.aboutPage .aboutCTA .btn-secondary {
    background: rgba(0, 0, 0, 0.65);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 87, 87, 0.45);
}

.aboutPage .aboutCTA .btn-secondary:hover {
    background: rgba(255, 87, 87, 0.12);
    border-color: rgba(255, 87, 87, 0.6);
    transform: translateY(-2px);
}

/* Contact Section */
.aboutPage .contactSection {
    margin-bottom: 80px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.aboutPage .contactSection .sectionTitle {
    text-align: center;
    margin-bottom: 70px;
    margin-top: 60px;
}

.aboutPage .contactSection .sectionTitle .tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 87, 87, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 87, 87, 0.3);
    border-radius: 50px;
    color: var(--hover);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.aboutPage .contactSection .sectionTitle h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.aboutPage .contactSection .sectionTitle .subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 24px 36px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.aboutPage .contactContainer {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.aboutPage .contactForm {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 20px;
    padding: 50px 45px;
}

.aboutPage .contactForm .formGroup {
    margin-bottom: 32px;
}

.aboutPage .contactForm .formGroup:last-of-type {
    margin-bottom: 40px;
}

.aboutPage .contactForm label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.aboutPage .contactForm input,
.aboutPage .contactForm select,
.aboutPage .contactForm textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.aboutPage .contactForm select {
    color: white;
    background: rgba(0, 0, 0, 0.6);
}

.aboutPage .contactForm select option {
    color: white;
    background: #0b0b0b;
}

.aboutPage .contactForm input::placeholder,
.aboutPage .contactForm textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.aboutPage .contactForm input:focus,
.aboutPage .contactForm select:focus,
.aboutPage .contactForm textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 87, 87, 0.5);
}

.aboutPage .contactForm textarea {
    resize: vertical;
    min-height: 140px;
}

.aboutPage .contactForm .btn-primary {
    width: 100%;
    padding: 14px 32px;
    background: linear-gradient(135deg, rgba(255, 87, 87, 0.95), rgba(160, 0, 0, 0.95));
    color: #fff;
    border: 1px solid rgba(255, 87, 87, 0.5);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.aboutPage .contactForm .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 87, 87, 0.3);
}

body.modal-open {
    overflow: hidden;
}

/* Call Request Modal */
.callModalPage {
    padding-bottom: 120px;
}

.callModalSection {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    padding: 40px 20px;
}

.callModalTrigger {
    margin-top: 20px;
    padding: 14px 32px;
}

.callModalOverlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 0, 0, 0.50);
    backdrop-filter: blur(18px) saturate(140%);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 2000;
    overflow-y: auto;
}

.callModalOverlay.open {
    display: flex;
    animation: callModalFade 0.25s ease;
}

.callModal {
    width: 100%;
    max-width: min(420px, 92vw);
    background: radial-gradient(120% 120% at 10% 0%, rgba(255, 87, 87, 0.18), rgba(12, 0, 0, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 28px 24px 30px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65);
    position: relative;
    animation: callModalPop 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: visible;
}

.callModal h2 {
    font-size: 24px;
    color: white;
    margin-bottom: 8px;
}

.callModalIntro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 22px;
    line-height: 1.6;
}

.callModalClose {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.callModalClose:hover {
    background: rgba(255, 87, 87, 0.2);
    border-color: rgba(255, 87, 87, 0.5);
}

.callModalForm .formGroup {
    margin-bottom: 18px;
}

.callModalForm label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 8px;
}

.callModalForm input,
.callModalForm select,
.callModalForm textarea {
    width: 100%;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: white;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.callModalForm input::placeholder,
.callModalForm textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.callModalForm input:focus,
.callModalForm select:focus,
.callModalForm textarea:focus {
    outline: none;
    border-color: rgba(255, 87, 87, 0.6);
    box-shadow: 0 0 0 2px rgba(255, 87, 87, 0.2);
}

.callModalForm select {
    color: rgba(255, 255, 255, 0.9);
}

.callModalForm select option {
    color: #0b0f1a;
}

.callModalForm textarea {
    min-height: 120px;
    resize: vertical;
}

.callModalSubmit {
    width: 100%;
    border: none;
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 87, 87, 0.95), rgba(160, 0, 0, 0.95));
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.callModalSubmit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 87, 87, 0.3);
}

@keyframes callModalFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes callModalPop {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .callModalOverlay.open,
    .callModal {
        animation: none !important;
    }
}

@media (max-width: 520px) {
    .callModal {
        padding: 22px 18px 22px;
        border-radius: 20px;
        max-height: 88dvh;
        overflow: auto;
    }
    .callModal h2 {
        font-size: 20px;
    }
    .callModalIntro {
        font-size: 13px;
    }
    .callModalForm input,
    .callModalForm select,
    .callModalForm textarea {
        padding: 10px 12px;
        font-size: 13px;
    }
    .callModalForm textarea {
        min-height: 100px;
    }
    .callModalSubmit {
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* Message Popup Modal */
.messagePopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.messagePopup.show {
    opacity: 1;
}

.messagePopupContent {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.messagePopup.show .messagePopupContent {
    transform: scale(1);
}

.messagePopupIcon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(34, 197, 94, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

.messagePopupIcon svg {
    width: 40px;
    height: 40px;
    stroke-width: 2.5;
}

.messagePopupContent h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.messagePopupContent p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.popupCloseBtn {
    background: white;
    color: #000;
    border: none;
    border-radius: 10px;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.popupCloseBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.aboutPage .contactInfo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aboutPage .contactInfo .infoCard {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.aboutPage .contactInfo .infoCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.aboutPage .contactInfo .infoCard:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.aboutPage .contactInfo .infoCard:hover::before {
    opacity: 1;
}

.aboutPage .contactInfo .infoCard h3 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.aboutPage .contactInfo .infoCard p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.aboutPage .contactInfo .socialLinks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.aboutPage .contactInfo .socialLinks a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.aboutPage .contactInfo .socialLinks a:hover {
    color: var(--hover);
    transform: translateX(5px);
}

/* ============================================
   ABOUT PAGE RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
    header {
        border-bottom: none;
    }
    .aboutPage .myStory .storyContent {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 40px 30px;
    }

    .aboutPage .myStory .storyImage {
        display: flex;
        justify-content: center;
    }

    .aboutPage .vision .visionContent {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
    }

    .aboutPage .beliefs .beliefsGrid {
        grid-template-columns: 1fr;
    }

    .aboutPage .contactContainer {
        grid-template-columns: 1fr;
    }

    .aboutPage .currentStats .statsGrid {
        flex-wrap: wrap;
    }

    .aboutPage .currentStats .statCard {
        flex: 0 1 320px;
    }
}

@media (max-width: 768px) {
    .aboutPage .aboutHeroContent h1 {
        font-size: 42px;
    }

    .aboutPage .aboutHeroContent .subtitle {
        font-size: 18px;
    }

    .aboutPage .myStory,
    .aboutPage .currentStats,
    .aboutPage .vision,
    .aboutPage .beliefs,
    .aboutPage .aboutCTA,
    .aboutPage .contactSection {
        margin-bottom: 80px;
    }

    .aboutPage .myStory .storyContent,
    .aboutPage .vision .visionContent {
        padding: 30px 25px;
    }

    .aboutPage .myStory .storyText h2,
    .aboutPage .vision .visionText h2,
    .aboutPage .currentStats .sectionTitle h2,
    .aboutPage .beliefs .sectionTitle h2,
    .aboutPage .contactSection .sectionTitle h2 {
        font-size: 36px;
    }

    .aboutPage .aboutCTA {
        padding: 40px 25px;
    }

    .aboutPage .aboutCTA .ctaContent h2 {
        font-size: 32px;
    }

    .aboutPage .aboutCTA .ctaButtons {
        flex-direction: column;
    }

    .aboutPage .aboutCTA .ctaButtons a {
        width: 100%;
        text-align: center;
    }

    .aboutPage .contactForm {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .aboutPage .aboutHeroContent h1 {
        font-size: 36px;
    }

    .aboutPage .aboutHeroContent .subtitle {
        font-size: 17px;
    }

    .aboutPage .currentStats .statNumber {
        font-size: 42px;
    }

    .aboutPage .myStory .storyText h2,
    .aboutPage .vision .visionText h2 {
        font-size: 32px;
    }

    .aboutPage .myStory .storyContent,
    .aboutPage .vision .visionContent {
        padding: 25px 20px;
    }

    .aboutPage .contactForm {
        padding: 25px 20px;
    }
}

/* ============================================
   LEGAL PAGES (Privacy Policy, Terms, Cookies)
   ============================================ */

main#legal {
    padding-top: 90px;
    min-height: 100vh;
}

/* Legal Hero Section */
main#legal .legalHero {
    padding: 100px 8% 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

main#legal .legalHeroContent h1 {
    font-size: 56px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

main#legal .lastUpdated {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

/* Legal Content Section */
main#legal .legalContent {
    padding: 80px 8% 120px;
    max-width: 1400px;
    margin: 0 auto;
}

main#legal .legalContainer {
    max-width: 900px;
    margin: 0 auto;
}

main#legal .legalSection {
    margin-bottom: 50px;
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

main#legal .legalSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

main#legal .legalSection:hover {
    background: rgba(0, 0, 0, 0.7) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

main#legal .legalSection:hover::before {
    opacity: 1;
}

main#legal .legalSection h2 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 87, 87, 0.3);
}

main#legal .legalSection h3 {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin: 30px 0 15px 0;
}

main#legal .legalSection p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

main#legal .legalSection ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

main#legal .legalSection ul li {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

main#legal .legalSection ul li::before {
    content: "•";
    color: var(--hover);
    font-size: 24px;
    position: absolute;
    left: 10px;
    top: -2px;
}

main#legal .legalSection strong {
    color: white;
    font-weight: 600;
}

main#legal .legalSection a {
    color: var(--hover);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

main#legal .legalSection a:hover {
    border-bottom-color: var(--hover);
    opacity: 0.8;
}

/* Cookie Tables */
main#legal .cookieTable {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--hover);
    border-radius: 8px;
    padding: 20px 25px;
    margin: 20px 0;
}

main#legal .cookieTable p {
    margin-bottom: 10px;
}

main#legal .cookieTable ul {
    margin: 10px 0;
}

/* Browser List */
main#legal .browserList p {
    margin-bottom: 8px;
}

main#legal .browserList p strong {
    display: block;
    margin-top: 15px;
    color: var(--hover);
}

/* Acceptance Box */
main#legal .acceptanceBox {
    background: linear-gradient(135deg, rgba(255, 87, 87, 0.1) 0%, rgba(255, 123, 123, 0.05) 100%);
    border: 2px solid rgba(255, 87, 87, 0.3);
}

main#legal .acceptanceBox h2 {
    border-bottom-color: rgba(255, 87, 87, 0.5);
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    main#legal .legalHero {
        padding: 60px 6% 50px;
    }

    main#legal .legalHeroContent h1 {
        font-size: 36px;
    }

    main#legal .legalContent {
        padding: 50px 6% 80px;
    }

    main#legal .legalSection {
        padding: 30px 25px;
    }

    main#legal .legalSection h2 {
        font-size: 26px;
    }

    main#legal .legalSection h3 {
        font-size: 20px;
    }

    main#legal .legalSection p,
    main#legal .legalSection ul li {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    main#legal .legalHeroContent h1 {
        font-size: 32px;
    }

    main#legal .legalSection {
        padding: 25px 20px;
    }

    main#legal .legalSection h2 {
        font-size: 24px;
    }

    main#legal .cookieTable {
        padding: 15px 20px;
    }
}

/* Fallback styles for browsers without backdrop-filter support (Brave, older browsers) */
.no-backdrop-filter main#home .heroText .bioBox,
.no-backdrop-filter .subtitle,
.no-backdrop-filter main#home .serviceCard,
.no-backdrop-filter .aboutPage .myStory .storyContent,
.no-backdrop-filter .aboutPage .currentStats .statCard,
.no-backdrop-filter .aboutPage .vision .visionContent,
.no-backdrop-filter .aboutPage .beliefs .beliefCard,
.no-backdrop-filter .aboutPage .contactForm,
.no-backdrop-filter main#legal .legalSection {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

/* Add header fallback style */
.no-backdrop-filter header {
    background: rgba(255, 255, 255, 0.06) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* ============================================
   BOOK A CALL PAGE
   ============================================ */

main#book-call {
    padding-top: 90px;
    padding-bottom: 0;
    margin-bottom: 0;
}

.bookCallHero {
    text-align: center;
    padding: 100px 8% 60px;
}

.bookCallHeroContent .tag {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255, 87, 87, 0.1);
    border: 1px solid rgba(255, 87, 87, 0.3);
    border-radius: 20px;
    color: var(--hover);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.bookCallHeroContent h1 {
    font-size: 56px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.bookCallHeroContent .subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 20px 30px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.bookCallFormSection {
    padding: 80px 8% 120px;
}

.bookCallContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.formWrapper {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 50px 45px;
}

.formHeader {
    margin-bottom: 40px;
}

.formHeader h2 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.formHeader p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.bookCallForm .formGroup {
    margin-bottom: 32px;
}

.bookCallForm .formGroup:last-of-type {
    margin-bottom: 40px;
}

.bookCallForm label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.bookCallForm input,
.bookCallForm select,
.bookCallForm textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.bookCallForm select {
    color: black;
    background: rgba(255, 255, 255, 0.9);
}

.bookCallForm select option {
    color: black;
    background: white;
}

.bookCallForm input::placeholder,
.bookCallForm textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.bookCallForm input:focus,
.bookCallForm select:focus,
.bookCallForm textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 87, 87, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 87, 87, 0.1);
}

.bookCallForm textarea {
    resize: vertical;
    min-height: 120px;
}

.submitBtn {
    width: 100%;
    padding: 16px 32px;
    background: white;
    color: #000;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.submitBtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.submitBtn:hover::before {
    left: 100%;
}

.submitBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.submitBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.callInfoSidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.callInfoSidebar .infoCard {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.callInfoSidebar .infoCard h3 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.callInfoSidebar .infoCard p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.callInfoSidebar .infoCard ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.callInfoSidebar .infoCard ul li {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    padding-left: 20px;
    position: relative;
}

.callInfoSidebar .infoCard ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--hover);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .bookCallContainer {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .callInfoSidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .callInfoSidebar .infoCard {
        flex: 1;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .bookCallHeroContent h1 {
        font-size: 42px;
    }

    .bookCallHeroContent .subtitle {
        font-size: 18px;
    }

    .formWrapper {
        padding: 30px 25px;
    }

    .callInfoSidebar {
        flex-direction: column;
    }
}

/* ============================================
   BOOKING CALENDAR STYLES
   ============================================ */

.bookingSection {
    padding: 80px 8% 60px;
    margin-bottom: 0;
}

.bookingUnavailable {
    max-width: 720px;
    margin: 40px auto 100px;
    text-align: center;
    padding: 40px 30px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.bookingUnavailable h2 {
    font-size: 30px;
    margin-bottom: 12px;
    color: white;
}

.bookingUnavailable p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.bookingUnavailable .btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(255, 87, 87, 0.95), rgba(160, 0, 0, 0.95));
    color: #ffffff;
    border: 1px solid rgba(255, 87, 87, 0.5);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bookingUnavailable .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 87, 87, 0.3);
}

.bookingContainer {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}

.bookingContainer > * {
    min-width: 0;
}

/* Calendar Wrapper */
.calendarWrapper {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px;
}

.calendarHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 12px;
}

.calendarHeader h2 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0;
    flex: 1;
    min-width: 0;
    text-align: center;
}

.monthNav {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.monthNav svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

.monthNav:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Calendar Legend */
.calendarLegend {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.legendItem {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.legendItem .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot.available {
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.dot.partial {
    background: #f59e0b;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.dot.booked {
    background: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.dot.unavailable {
    background: #6b7280;
}

/* Calendar Grid */
.calendarGrid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    grid-auto-rows: minmax(52px, auto);
}

.weekdayHeader {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    padding: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#calendarDays {
    display: contents;
}

.calendar-day {
    aspect-ratio: 1;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.calendar-day.empty {
    background: transparent;
    border: none;
}

.calendar-day.clickable {
    cursor: pointer;
}

.calendar-day.clickable:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.calendar-day.available {
    border-color: #10b981;
}

.calendar-day.partial {
    border-color: #f59e0b;
}

.calendar-day.booked {
    border-color: #ef4444;
    opacity: 0.5;
}

.calendar-day.unavailable {
    border-color: rgba(255, 255, 255, 0.05);
    opacity: 0.4;
    cursor: not-allowed;
}

.day-number {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.slots-count {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

/* Booking Form Wrapper */
.bookingFormWrapper {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 20px;
    padding: 50px 45px;
    position: relative;
    min-height: 500px;
}

.bookingStep {
    display: none;
}

.bookingStep.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bookingStep h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.stepDescription {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.selectedDate {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 25px;
    color: white;
    font-size: 15px;
}

/* Time Slots */
.timeSlots {
    margin-top: 20px;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.time-slot-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 14px 20px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
}

.time-slot-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.time-slot-btn.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.loading, .no-slots, .error {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

/* Booking Details Form */
.bookingDetailsForm .formGroup {
    margin-bottom: 32px;
}

.bookingDetailsForm .formGroup:last-of-type {
    margin-bottom: 40px;
}

.bookingDetailsForm label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.bookingDetailsForm input,
.bookingDetailsForm select,
.bookingDetailsForm textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.bookingDetailsForm select {
    color: black;
    background: rgba(255, 255, 255, 0.9);
}

.bookingDetailsForm select option {
    color: black;
    background: white;
}

.bookingDetailsForm input::placeholder,
.bookingDetailsForm textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.bookingDetailsForm input:focus,
.bookingDetailsForm select:focus,
.bookingDetailsForm textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

.radioGroup {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.radioLabel {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.radioLabel:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

.radioLabel input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--hover);
}

.radioLabel span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: color 0.3s ease;
}

.radioLabel:has(input[type="radio"]:checked) {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.radioLabel:has(input[type="radio"]:checked) span {
    color: white;
}

.formActions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    border: none !important;
}

.bookingDetailsForm {
    border: none !important;
}

.bookingStep {
    border: none !important;
}

.bookingFormWrapper {
    border-bottom: none !important;
}

.bookingDetailsForm .btn-primary {
    flex: 1;
    padding: 14px 32px;
    background: linear-gradient(135deg, rgba(255, 87, 87, 0.95), rgba(160, 0, 0, 0.95));
    color: #fff;
    border: 1px solid rgba(255, 87, 87, 0.5);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bookingDetailsForm .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 87, 87, 0.3);
}

.btn-secondary {
    padding: 14px 28px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 87, 87, 0.45);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
}

.btn-secondary:hover {
    background: rgba(255, 87, 87, 0.12);
    border-color: rgba(255, 87, 87, 0.6);
    transform: translateY(-2px);
}

/* Confirmation Step */
#confirmationStep {
    text-align: center;
}

.confirmationIcon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirmationIcon svg {
    width: 45px;
    height: 45px;
    stroke: #10b981;
}

.confirmation-details {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    text-align: left;
}

.confirmation-details p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}

.confirmation-details p:last-child {
    margin-bottom: 0;
}

.confirmationNote {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 25px 0;
}

/* Booking Notification Popup - Success variant */
.messagePopupIcon.success {
    border: 3px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

.messagePopupIcon.error {
    border: 3px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

/* ===========================
   CANCEL BOOKING PAGE
   =========================== */
.cancelBookingSection {
    padding: 80px 8% 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cancelBookingContainer {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cancelSuccess, .cancelError, .cancelConfirmation {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 60px 50px;
}

.successIcon, .errorIcon, .warningIcon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.successIcon {
    border: 3px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

.successIcon svg, .errorIcon svg, .warningIcon svg {
    width: 45px;
    height: 45px;
}

.errorIcon {
    border: 3px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.warningIcon {
    border: 3px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
}

.cancelBookingContainer h1 {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cancelBookingContainer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.bookingDetails {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    text-align: left;
}

.detailItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detailItem:last-child {
    border-bottom: none;
}

.detailItem strong {
    color: white;
    font-weight: 600;
}

.detailItem span {
    color: rgba(255, 255, 255, 0.8);
}

.cancelActions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.cancelActions .btn-primary {
    padding: 15px 35px;
    background: linear-gradient(135deg, rgba(255, 87, 87, 0.95), rgba(160, 0, 0, 0.95));
    color: #fff;
    border: 1px solid rgba(255, 87, 87, 0.5);
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.cancelActions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 87, 87, 0.3);
    background: linear-gradient(135deg, rgba(255, 108, 108, 0.98), rgba(168, 0, 0, 0.98));
}

.cancelActions .btn-secondary {
    padding: 15px 35px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 87, 87, 0.45);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.cancelActions .btn-secondary:hover {
    background: rgba(255, 87, 87, 0.12);
    border-color: rgba(255, 87, 87, 0.6);
    transform: translateY(-2px);
}

.btn-danger {
    padding: 15px 35px;
    background: rgba(239, 68, 68, 0.15);
    border: 2px solid #ef4444;
    border-radius: 10px;
    color: #ef4444;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-danger:hover {
    background: #ef4444;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

@media (max-width: 768px) {
    .cancelBookingContainer {
        padding: 20px;
    }

    .cancelSuccess, .cancelError, .cancelConfirmation {
        padding: 40px 30px;
    }

    .cancelBookingContainer h1 {
        font-size: 24px;
    }

    .cancelActions {
        flex-direction: column;
    }

    .detailItem {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .bookingContainer {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .bookingSection {
        padding: 60px 6% 40px;
    }

    .calendarHeader h2 {
        font-size: 22px;
    }

    .monthNav {
        width: 40px;
        height: 40px;
    }

    .calendarLegend {
        gap: 12px;
    }

    .legendItem {
        font-size: 12px;
    }

    .calendarGrid {
        gap: 5px;
        grid-auto-rows: minmax(44px, auto);
    }

    .weekdayHeader {
        font-size: 11px;
        padding: 6px 4px;
    }

    .calendar-day {
        padding: 5px;
    }

    .day-number {
        font-size: 14px;
    }

    .slots-count {
        font-size: 9px;
    }

    .time-slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }

    .calendarWrapper,
    .bookingFormWrapper {
        padding: 22px;
    }

    .formActions {
        flex-direction: column;
    }

    .formActions button {
        width: 100%;
    }

    .bookingUnavailable {
        margin: 20px 0 60px;
        padding: 30px 20px;
    }

    .bookingUnavailable h2 {
        font-size: 24px;
    }
}

@media (max-width: 520px) {
    .bookingSection {
        padding: 50px 4% 30px;
    }

    .calendarWrapper,
    .bookingFormWrapper {
        padding: 18px 16px;
    }

    .calendarGrid {
        gap: 4px;
        grid-template-columns: repeat(7, minmax(32px, 1fr));
        grid-auto-rows: minmax(40px, auto);
    }

    .calendar-day {
        padding: 4px;
        border-radius: 10px;
        aspect-ratio: auto;
        min-height: 40px;
    }

    .day-number {
        font-size: 13px;
    }

    .slots-count {
        font-size: 8px;
    }

    .calendarLegend {
        gap: 10px;
    }

    .legendItem {
        font-size: 11px;
    }

    .time-slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    }

    .bookingUnavailable {
        padding: 26px 18px;
        margin-bottom: 50px;
    }
}

/* ============================================
   CREATORS PAGE
   ============================================ */

main#creators {
    padding-top: 90px;
}

.creatorsHero {
    padding: 80px 8% 50px;
    text-align: center;
}

.creatorsHeroContent .tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 87, 87, 0.15);
    border: 1px solid rgba(255, 87, 87, 0.3);
    border-radius: 50px;
    color: var(--hover);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.creatorsHeroContent h1 {
    font-size: 44px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.creatorsHeroContent .subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 640px;
    margin: 0 auto;
}

.creatorsGridSection {
    padding: 0 8% 120px;
}

.creatorsGrid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.creatorCard {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.creatorCard:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.creatorCard.empty {
    opacity: 0.7;
    pointer-events: none;
}

.creatorAvatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.creatorAvatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.creatorAvatarPlaceholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.02);
}

.creatorCard h3 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 6px;
}

.creatorTitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 18px;
}

.creatorBookBtn {
    width: 100%;
    text-align: center;
    display: inline-block;
}

@media (max-width: 768px) {
    .creatorsHero {
        padding: 60px 6% 40px;
    }

    .creatorsHeroContent h1 {
        font-size: 36px;
    }

    .creatorsHeroContent .subtitle {
        font-size: 17px;
    }

    .creatorsGridSection {
        padding: 0 6% 90px;
    }

    .creatorAvatar {
        width: 100px;
        height: 100px;
    }
}

  @media (max-width: 480px) {
      .creatorsHeroContent h1 {
          font-size: 30px;
      }

      .creatorCard {
          padding: 26px 20px;
      }
  }

/* ============================================
   REVIEWS PAGE
   ============================================ */

main#reviews,
main#review {
    padding-top: 90px;
}

.reviewsHero,
.reviewHero {
    padding: 80px 8% 50px;
    text-align: center;
}

.reviewsHeroContent .tag,
.reviewHeroContent .tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 87, 87, 0.15);
    border: 1px solid rgba(255, 87, 87, 0.3);
    border-radius: 50px;
    color: var(--hover);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.reviewsHeroContent h1,
.reviewHeroContent h1 {
    font-size: 44px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.reviewsHeroContent .subtitle,
.reviewHeroContent .subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 640px;
    margin: 0 auto;
}

.reviewsGridSection {
    padding: 0 8% 120px;
}

.reviewsGrid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.reviewCard {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 220px;
}

.reviewHeader {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.reviewHeader h3 {
    font-size: 18px;
    color: white;
    margin-bottom: 4px;
}

.reviewHeader p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
}

.reviewRating {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 13px;
    color: white;
    background: rgba(255, 255, 255, 0.06);
    align-self: flex-start;
    white-space: nowrap;
}

.reviewBody {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.7;
}

.reviewMeta {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
}

.reviewsEmpty {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 20px;
}

.reviewFormSection {
    padding: 0 8% 120px;
}

.reviewFormCard {
    max-width: 760px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px 35px;
}

.reviewForm {
    display: grid;
    gap: 20px;
}

.reviewForm .formGroup label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
}

.reviewForm .formGroup input,
.reviewForm .formGroup select,
.reviewForm .formGroup textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 14px;
}

.reviewForm .btn-primary {
    width: 100%;
    text-align: center;
    padding: 14px 32px;
    background: linear-gradient(135deg, rgba(255, 87, 87, 0.95), rgba(160, 0, 0, 0.95));
    color: #fff;
    border: 1px solid rgba(255, 87, 87, 0.5);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviewForm .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 87, 87, 0.3);
}

.reviewSuccess,
.reviewError {
    padding: 16px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
}

.reviewSuccess {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #bbf7d0;
}

.reviewError {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fecaca;
}

@media (max-width: 768px) {
    .reviewsHero,
    .reviewHero {
        padding: 60px 6% 40px;
    }

    .reviewsHeroContent h1,
    .reviewHeroContent h1 {
        font-size: 34px;
    }

    .reviewFormCard {
        padding: 30px 22px;
    }
}

@media (max-width: 480px) {
    .reviewsHeroContent h1,
    .reviewHeroContent h1 {
        font-size: 30px;
    }
}
