/* Base Reset */
* { box-sizing: border-box; }
html { 
    scroll-behavior: smooth; 
    -webkit-text-size-adjust: 100%; 
    text-size-adjust: 100%;
}
body {
    margin: 0;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #e5e7eb;
    background: #000000;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

:root {
    --bg: #00000;
    --panel: #0f1117;
    --muted: #9aa4b2;
    --text: #e5e7eb;
    --primary: #00a796;
    --primary-2: #00c7b3;
    --outline: #1f2430;
    --card: #11131a;
    --success: #22c55e;
    --glass-bg: rgba(8, 11, 14, 0.45);
    --glass-border: rgba(255, 255, 255, 0.06);
}


.btn-outline { 
    border-color: rgba(0,167,150,0.35); 
    color: #ffffff;
    font-size: 18px;
    padding: 12px 16px;
    transition: all 0.2s ease;
}
.btn-outline:hover { 
    background: #00a796;
    border-color: #00a796;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,167,150,0.2);
}



/* Layout */
.container { width: min(1320px, 94%); margin: 0 auto; padding-left: max(16px, env(safe-area-inset-left)); padding-right: max(16px, env(safe-area-inset-right)); }
.section { padding: 30px 0; }
.section-head { 
    margin-bottom: 10px; 
}
.section-title { 
    font-family: 'Inter', sans-serif;
    font-size: 28px; 
    line-height: 1;
    margin: 0 0 2px;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    font-weight: 700;
    }
.section-desc { color: var(--muted); margin: 0; }


main > section { position: relative; isolation: isolate; }
main > section::before { content: ""; position: absolute; inset: 0; z-index: 0; background: rgba(8, 11, 14, 0.18); backdrop-filter: blur(18px) saturate(135%); -webkit-backdrop-filter: blur(18px) saturate(135%); }
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) 
{ main > section::before { background: rgba(8,11,14,0.6); } }
main > section::after { content: ""; position: absolute; left: 8%; right: 8%; bottom: -32px; height: 140px; z-index: 0; pointer-events: none; background: radial-gradient(60% 100% at 50% 100%, rgba(0,167,150,0.38), rgba(0,167,150,0.16) 35%, rgba(0,167,150,0.0) 70%); filter: blur(36px); }
main > section > * { position: relative; z-index: 1; }

/* Header */
.site-header { 
    position: sticky; 
    top: 0; 
    z-index: 50; 
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 10px;
}
.header-inner { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    height: 75px;
    background: transparent;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 0 20px;
    max-width: 95%;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@media (min-width: 768px) {
    .header-inner {
        max-width: 45%;
    }
}

@media (min-width: 1024px) {
    .header-inner {
        max-width: 40%;
    }
}

.logo { 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    color: var(--text); 
    text-decoration: none; 
    font-weight: 700;
}
.logo-img { 
    height: 80px; 
    width: 80px; 
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .logo-img {
        height: 100px;
        width: 100px;
    }
}
.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav { 
    position: relative;
    display: flex;
    align-items: center;
}
.nav-list { 
    list-style: none; 
    display: flex; 
    gap: 12px; 
    margin: 0; 
    padding: 8px;
    flex-wrap: nowrap;
}
.nav-link { 
    color: var(--muted); 
    text-decoration: none; 
    padding: 10px 16px; 
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 500;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(8, 11, 14, 0.85);
        backdrop-filter: blur(18px) saturate(135%);
        -webkit-backdrop-filter: blur(18px) saturate(135%);
        padding: 1.5rem;
        border-radius: 0;
        flex-direction: column;
        gap: 1rem;
        min-width: 220px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        transform: translateY(10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .nav-list.is-active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list.is-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        display: block;
        padding: 12px 20px;
        font-size: 16px;
    }
}
.nav-link:hover, 
.nav-link.is-active { 
    color: #00a796; 
    transform: translateY(-1px);
}

.nav-toggle { 
    display: none; 
    width: 32px; 
    height: 32px; 
    border: none;
    background: transparent;
    position: relative;
    cursor: pointer;
    margin-left: 16px;
    padding: 0;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
}

.nav-toggle .bar { 
    width: 24px; 
    height: 1px; 
    background: #00a796; 
    display: block; 
    position: absolute;
    left: 4px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle .bar:nth-child(1) { 
    top: 10px; 
}

.nav-toggle .bar:nth-child(2) { 
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.nav-toggle .bar:nth-child(3) { 
    bottom: 10px; 
}

/* Active state for menu toggle */
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { 
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { 
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { 
    transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle:hover .bar {
    background: #00a796;
}

/* Hero */
.hero { 
    padding-top: 105px;
    position: relative;
    overflow-x: hidden;
    margin-top: -105px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.grid-2 { display: grid; }
.hero .container { 
    display: grid; 
    place-items: center; 
    text-align: center; 
    gap: 16px;
    position: relative;
    z-index: 1;
    padding-top: 50px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .site-header {
        padding-top: 23px !important; /* Added 3px more space above navbar on mobile */
        padding-bottom: 8px !important;
    }
    
    .header-inner {
        height: 65px !important; /* Slightly reduced height for mobile */
        padding: 0 15px !important;
        border-radius: 12px !important;
        max-width: 95% !important;
    }
    
    .logo-img {
        height: 60px !important;
        width: 60px !important;
    }
    
    .nav-list {
        padding: 4px !important;
        gap: 6px !important;
    }
    
    .nav-link {
        font-size: 14px !important;
        padding: 5px 8px !important;
    }

    .hero {
        padding-top: 45px !important;
        margin-top: -45px !important;
        min-height: auto !important;
    }
    
    .hero .container {
        padding-top: 25px !important;
        gap: 12px !important;
    }
    
    .hero-copy {
        margin-top: -5px !important;
    }
    
    .headline {
        font-size: 24px !important;
        line-height: 1.3;
        margin-bottom: 5px !important;
    }
    
    .subhead {
        font-size: 16px !important;
        margin-top: 0 !important;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 45px; /* Reduced padding-top */
        margin-top: -45px; /* Adjusted margin to match new padding */
        min-height: auto;
    }
    .hero .container {
        padding-top: 25px; /* Reduced padding-top for container */
        padding-left: 15px;
        padding-right: 15px;
        gap: 12px; /* Reduced gap between elements */
        width: 100%;
    }
    .hero-media {
        width: 100% !important;
        margin: 0 auto;
        padding: 0 10px;
    }
    .media-frame {
        margin: 0;
        border-radius: 10px;
    }
    .embed-video {
        border-radius: 8px;
    }
    .hero-copy {
        padding: 0 10px;
        margin-top: -5px; /* Reduced space above hero text */
    }
    .headline {
        font-size: 24px !important;
        line-height: 1.3;
        padding: 0 5px;
        margin-bottom: 5px; /* Reduced bottom margin */
    }
    .subhead {
        font-size: 16px !important;
        padding: 0 10px;
        margin-top: 5px; /* Adjusted top margin */
    }
    .hero-actions {
        padding: 0 10px;
        gap: 10px;
    }
    .btn-glass {
        font-size: 14px;
        padding: 10px 15px;
        width: 140px;
    }
}
.hero .hero-copy { 
    width: 100%; 
    max-width: clamp(900px, 84vw, 1280px); 
    margin-inline: auto; 
    text-align: center;
    position: relative;
    z-index: 1;
}
.hero-centered .hero-media { 
    width: 100%; 
    max-width: clamp(720px, 70vw, 960px); 
    margin-inline: auto;
    position: relative;
    z-index: 1;
}
.media-frame { 
    position: relative; 
    background: linear-gradient(180deg, #141827, #0b0c10); 
    border: 1px solid var(--outline); 
    border-radius: 16px; 
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.35); 
    margin: 0 auto;
}
.embed-video { 
    display: block; 
    width: 100%; 
    height: auto; 
    aspect-ratio: 16/9; 
    border: 0;
}

/* Hero Background Effect */
.hero::before { 
    content: ""; 
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180vw;
    height: 120vh;
    background: radial-gradient(ellipse at top, rgba(0,167,150,0.15) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0% { opacity: 0.9; }
    50% { opacity: 0.7; }
    100% { opacity: 0.9; }
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-120px * 4));
    }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180vw;
    height: 120vh;
    background: radial-gradient(ellipse at top, rgba(0,167,150,0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
}
.headline {
     font-size: clamp(22px, 5vw, 48px); 
     line-height: 1.15; margin: 0 auto 8px; 
     letter-spacing: -0.01em; 
     text-align: center; 
     max-width: clamp(900px, 84vw, 1280px); 
     padding-inline: 8px; 
     overflow-wrap: normal; 
     word-break: normal; 
    }
.h1-line { 
    display: block; 
    width: 100%; 
    margin-inline: auto; 
}
.h1-inter { 
    font-family: 'Inter', sans-serif; 
    font-weight: 700;
    white-space: normal; 
    font-size: 1.1em; 
    letter-spacing: -0.02em;
    background: linear-gradient(to bottom, #ffffff, #e5e7eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 
        2px 2px 2px rgba(0,0,0,0.2),
        -1px -1px 1px rgba(255,255,255,0.1),
        0 4px 8px rgba(255, 255, 255, 0.15);
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
}
.h1-playfair { 
    font-family: 'Inter',sans-serif; 
    font-style: normal; 
    font-weight: 700; 
    background: linear-gradient(to bottom, #00ffff, #00a796);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: normal; 
    font-size: 0.94em; 
    letter-spacing: -0.015em; 
    margin-left: 2px;
    text-shadow: 
        2px 2px 2px rgba(0,0,0,0.2),
        -1px -1px 1px rgba(255,255,255,0.1),
        0 4px 8px rgba(0,167,150,0.2);
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
}
.subhead { 
    color: var(--muted); 
    font-size: 22px; 
    margin: 0; 
    text-align: center; 
    max-width: clamp(900px, 84vw, 1280px); 
    margin-inline: auto; 
    line-height: 1.5; 
    padding-inline: 8px; 
    overflow-wrap: normal; 
    word-break: normal; 
}
.subhead-inter { 
    font-family: 'Roboto', sans-serif; 
    font-size: 18px; 
}
.sub-line:last-child { 
    font-size: 18px; 
}
.hero-actions { 
    display: flex; 
    gap: 22px; 
    align-items: center; 
    justify-content: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .hero-actions .btn {
        width: 200px;
    }
}

.trusted-by {
    text-align: center;
    padding: 15px 0;
    background: linear-gradient(to bottom, rgba(51, 191, 173, 0.03), rgba(51, 191, 173, 0.06));
    border-top: 1px solid rgba(51, 191, 173, 0.1);
    border-bottom: 1px solid rgba(51, 191, 173, 0.1);
    height: auto;
    min-height: 160px;
    width: 100%;
    margin-top: 15px;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.trusted-by-title {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 500;
    padding: 0 15px;
}

.trusted-by-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px 15px;
    overflow: hidden;
    position: relative;
}

.trusted-by-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

@media (max-width: 480px) {
    .trusted-by {
        min-height: 150px;
        padding: 15px 0;
        margin-top: 10px;
    }
    
    .trusted-by-container {
        padding: 5px 10px;
    }
    
    .trusted-by-title {
        font-size: 13px;
        margin-bottom: 15px;
    }
}

.trusted-by-logos {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 10px;
    flex-wrap: nowrap;
    animation: infiniteScroll 25s linear infinite;
    width: max-content;
}

.trusted-by-logos:hover {
    animation-play-state: paused;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.trusted-by-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 5px;
    opacity: 0.7;
    transition: all 0.3s ease;
    width: 120px;
    min-width: 120px;
    flex-shrink: 0;
    animation: fadeInOut 4s linear infinite;
}

/* Clone items for seamless scroll */
.trusted-by-item {
    animation: fadeInOut 4s linear infinite;
}

@media (max-width: 768px) {
    .trusted-by-logos {
        gap: 25px;
        padding: 5px;
        animation-duration: 15s;
    }
    
    .trusted-by-item {
        width: 100px;
        gap: 6px;
    }

    @keyframes scrollLogos {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-100px * 4 - 25px * 4));
        }
    }
}

@media (max-width: 480px) {
    .trusted-by-logos {
        gap: 20px;
    }
    
    .trusted-by-item {
        width: 80px;
    }
}

.trusted-by-item:hover {
    transform: scale(1.05);
    opacity: 1;
}

.trusted-by-frame {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #33bfad 0%, rgba(51, 191, 173, 0.3) 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(51, 191, 173, 0.15);
}

.trusted-by-frame img {
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
}

.trusted-by-item:hover .trusted-by-frame {
    background: linear-gradient(135deg, #33bfad 0%, cyan 100%);
    box-shadow: 0 0 15px rgba(51, 191, 173, 0.3);
}

.trusted-by-name {
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    color: var(--text);
    font-weight: 100;
    opacity: 0.9;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trusted-by-item:hover .trusted-by-name {
    color: #00a976;
    opacity: 1;
}

@media (max-width: 1024px) {
    .trusted-by-logos {
        gap: 40px;
    }
    
    .trusted-by-item {
        width: 100px;
        min-width: 100px;
    }
    
    .trusted-by-frame {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .trusted-by {
        padding: 15px 0;
        min-height: 150px;
        margin-top: 10px;
    }

    .trusted-by-container {
        width: 100%;
        padding: 0;
    }

    .trusted-by-title {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .trusted-by-logos {
        gap: 30px;
        padding: 5px 20px;
        justify-content: center;
        margin: 0 auto;
    }

    .trusted-by-item {
        width: 90px;
        min-width: 90px;
        gap: 8px;
        padding: 5px;
    }

    .trusted-by-frame {
        width: 65px;
        height: 65px;
        padding: 2px;
    }

    .trusted-by-name {
        font-size: 11px;
        width: 100%;
        margin-top: 4px;
    }
}

@media (max-width: 480px) {
    .trusted-by {
        min-height: 140px;
    }

    .trusted-by-logos {
        gap: 25px;
        padding: 5px 15px;
    }

    .trusted-by-item {
        width: 80px;
        min-width: 80px;
        gap: 6px;
    }

    .trusted-by-frame {
        width: 60px;
        height: 60px;
    }

    .trusted-by-name {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .trusted-by {
        padding: 15px 0;
    }

    .trusted-by-logos {
        gap: 30px;
    }

    .trusted-by-item {
        width: 70px;
        gap: 10px;
        padding: 5px;
    }

    .trusted-by-frame {
        width: 50px;
        height: 50px;
    }

    .trusted-by-name {
        font-size: 10px;
        width: 70px;
    }
}



    .trusted-by-name {
        font-size: 11px;
        width: 80px;
    }

    .trusted-by::after {
        background: linear-gradient(
            to right,
            rgba(11, 12, 16, 1) 0%,
            rgba(11, 12, 16, 0) 25%,
            rgba(11, 12, 16, 0) 75%,
            rgba(11, 12, 16, 1) 100%
        );
    }


.meta { color: var(--muted); font-size: 14px; margin-top: 8px; }

/* Cards / Grids */
.portfolio-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    width: 100%;
}
.card { 
    background: var(--card); 
    border: 1px solid var(--outline); 
    border-radius: 14px; 
    overflow: hidden; 
    transition: transform .2s ease, box-shadow .2s ease;
    height: 100%;
}
.card:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 12px 36px rgba(0,167,150,0.12), 0 12px 36px rgba(0,0,0,0.35); 
}
.card img { 
    width: 100%; 
    height: 200px; 
    object-fit: cover; 
    display: block; 
}
.card-body { padding: 12px 14px 14px; }
.card-title { margin: 0 0 0px; font-size: 16px; }
.card-meta { margin: 0; color: var(--muted); font-size: 13px; }

/* Reviews */
.reviews-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-shadow: 
        2px 2px 2px rgba(0,0,0,0.2),
        -1px -1px 1px rgba(255,255,255,0.1),
        0 4px 8px rgba(0,167,150,0.2);
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    position: relative;
}



.reviews-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.quote { 
    background: var(--panel); 
    border: 1px solid var(--outline); 
    border-radius: 14px; 
    padding: 20px;
    height: 100%;
}
.quote p { 
    margin: 0 0 12px; 
    font-size: 15px;
    line-height: 1.6;
}
.quote footer { 
    color: var(--muted); 
    display: flex; 
    gap: 8px;
    align-items: center;
}
.quote .author { 
    color: var(--text); 
    font-weight: 600;
}

/* Services */
.services-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.service { 
    background: var(--panel); 
    border: 1px solid var(--outline); 
    border-radius: 14px; 
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.service-icon { font-size: 22px; }
.service-title { margin: 6px 0 4px; }
.service-desc { margin: 0; color: var(--muted); font-size: 14px; }

/* Pricing */
.pricing-heading {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 10px;
    line-height: 1.3;
    color: #00a976;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.pricing-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px; 
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
}

.price-card { 
    background: rgba(8, 11, 14, 0.6);
    border: 1px solid #00a976;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}


.price-card .btn { 
    margin-top: auto;
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #00FFFF;
    color: #00FFFF;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 255, 255, 0));
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.price-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.price-card .btn:hover {
    background: linear-gradient(135deg, #00FFFF, #33bfad);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    transform: translateY(-2px);
}

.price-card .btn:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }
    
    .price-card {
        padding: 24px;
    }
    
    .price-title {
        font-size: 24px;
    }
    
    .price-value {
        font-size: 28px;
    }
}

/* Book a Call Section */
.book-call-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-shadow: 
        2px 2px 2px rgba(0,0,0,0.2),
        -1px -1px 1px rgba(255,255,255,0.1),
        0 4px 8px rgba(0, 255, 255, 0.2);
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    position: relative;
}




.book-call-cta {
    text-align: center;
    margin-top: 28px;
    margin-bottom: 40px;
}

.book-call-btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #00a796;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .book-call-btn {
        padding: 12px 24px;
        font-size: 16px;
        width: auto;
        min-width: 200px;
        max-width: 80%;
    }
    
    .book-call-cta {
        margin-top: 20px;
        margin-bottom: 30px;
    }
}

.book-call-btn:hover {
    background: #00FFFF;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.calendly-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(8, 11, 14, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 255, 255, 0.1);
}

.calendly-embed-wrapper {
    position: relative;
    padding-bottom: 75%; /* 4:3 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

@media (max-width: 768px) {
    .book-call-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .calendly-container {
        padding: 10px;
        margin: 0 10px;
    }

    .calendly-embed-wrapper {
        padding-bottom: 150%; /* Taller aspect ratio for mobile */
    }
    
    .book-call-btn {
        padding: 14px 28px;
        font-size: 16px;
        width: 80%;
        max-width: 300px;
    }
}

.calendly-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Footer */
.site-footer { 
    position: relative;
    padding: 24px 0;
    isolation: isolate;
    overflow: hidden;
    border-top: 1px solid rgba(0,167,150,0.1);
}
.site-footer::before { 
    content: ""; 
    position: absolute; 
    inset: 0; 
    z-index: 0; 
    background: rgba(8, 11, 14, 0.18); 
    backdrop-filter: blur(18px) saturate(135%); 
    -webkit-backdrop-filter: blur(18px) saturate(135%); 
}
.site-footer::after { 
    content: ""; 
    position: absolute; 
    left: 20%; 
    right: 20%; 
    top: -20px;
    height: 60px;
    z-index: 0; 
    pointer-events: none; 
    background: radial-gradient(50% 50% at 50% 50%, 
        rgba(0,167,150,0.08) 0%,
        rgba(0,167,150,0.03) 50%,
        transparent 100%
    );
    opacity: 0.5;
}
.footer-inner { 
    display: flex; 
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}
.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.footer-meta { 
    color: var(--muted); 
    padding-top: 10px; 
    text-align: center; 
    width: 100%; 
    position: relative;
    z-index: 1;
}

/* Reviews Section */
.reviews-grid {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 32px;
    animation: reviewSlide 40s linear infinite;
    padding: 10px;
}

.reviews-track:hover {
    animation-play-state: paused;
}

.review-item {
    flex: 0 0 300px;  /* Increased width for better visibility on PC */
    padding: 4px;
    border: 2px solid cyan;
    border-radius: 8px;
    background: var(--bg);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.review-item img {
    width: 100%;
    height: 500px;  /* Increased height for better visibility */
    display: block;
    border-radius: 4px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}

.review-item:hover img {
    transform: scale(1.05); /* Slight zoom on hover */
}

@keyframes reviewSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 6 - 192px)); /* 6 images × 300px width + 6 gaps × 32px */
    }
    
}

.review-item:hover {
    transform: translateY(-5px) translateZ(0);
}

.review-item:hover::before {
    opacity: 1;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

@keyframes reviewSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 6 - 180px)); /* 6 images + gaps */
    }
}

/* Clone track for seamless loop */
.reviews-track-clone {
    display: flex;
    gap: 30px;
    position: absolute;
    top: 0;
    left: 100%;
    animation: reviewSlide 30s linear infinite;
    animation-delay: -15s;
    padding: 20px 0;
}

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; padding: 12px 16px; border-radius: 12px; border: 1px solid var(--outline); color: var(--text); font-weight: 600; transition: transform .08s ease, background .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-2)); border-color: transparent; color: white; }
.btn-glass { 
    position: relative; 
    overflow: hidden; 
    border-color: rgba(0,167,150,0.35); 
    background: rgba(255,255,255,0.04); 
    font-size: 18px; 
    transition: all 0.2s ease;
}
.btn-glass::before { content: "\2192"; font-size: calc(1em + 2px); margin-right: 6px; }
.btn-glass:hover { background: linear-gradient(135deg, var(--primary), var(--primary-2)); border-color: transparent; color: white; }

.btn-outline { 
    border-color: rgba(0,167,150,0.35); 
    color: #d8fff8; 
    font-size: 18px;
    padding: 12px 16px;
    transition: all 0.2s ease;
}
.btn-outline:hover { 
    background: rgba(0,167,150,0.12); 
    border-color: rgba(0,167,150,0.8); 
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,167,150,0.2);
}
.btn-ghost { background: rgba(255,255,255,0.04); }

/* Accessibility */
.skip-link { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { left: 16px; top: 16px; width: auto; height: auto; padding: 8px 12px; border-radius: 10px; background: var(--panel); border: 1px solid var(--outline); }

/* Responsive */
@media (max-width: 960px) {
    .site-header {
        padding: 0 16px;
    }
    
    .header-inner {
        height: 60px;
    }

    .hero .container {
        padding-top: 120px; /* Adjusted padding for mobile to account for smaller header */
    }

    .nav-toggle { 
        display: inline-flex;
    }
    
    .nav-list { 
        position: fixed;
        right: 0;
        top: 60px;
        background: rgba(11, 12, 16, 0.98);
        padding: 32px 24px;
        display: none;
        flex-direction: column;
        gap: 16px;
        width: 25%;
        min-width: 180px;
        height: auto;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-list.open { 
        display: flex;
        transform: translateX(0);
    }
    
    .nav-link { 
        padding: 4px 0;
        width: 100%;
        text-align: left;
        transition: all 0.3s ease;
        color: var(--text);
        font-family: 'Roboto', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: -0.01em;
        position: relative;
        text-transform: uppercase;
    }
    
    .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 1px;
        background: #00a796;
        transition: width 0.3s ease;
    }
    
    .nav-link span {
        position: relative;
        z-index: 1;
        display: block;
    }
    
    .nav-link:hover,
    .nav-link.is-active { 
        color: #00a796;
    }
    
    .nav-link:hover::after,
    .nav-link.is-active::after {
        width: 100%;
    }

    .container {
        width: 92%;
        padding: 0 16px;
    }

    .section {
        padding: 40px 0;
    }

    .grid-2 { 
        grid-template-columns: 1fr;
        gap: 24px;
    }

  

    .hero {
        padding-top: 40px;
    }

    .hero .hero-copy, 
    .hero-centered .hero-media, 
    .headline, 
    .subhead { 
        max-width: 100%; 
        padding-inline: 0;
    }

    .headline { 
        font-size: clamp(24px, 5vw, 32px);
        letter-spacing: -0.02em;
        line-height: 1.2;
    }

    .h1-inter, 
    .h1-playfair { 
        display: inline;
        white-space: normal;
    }

    .subhead {
        font-size: clamp(14px, 4vw, 15px);
        line-height: 1.5;
    }

    .subhead-inter, 
    .subhead .sub-line { 
        white-space: normal;
    }

    .hero-actions {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }

    .btn {
        padding: 10px 14px;
        font-size: 14px;
        min-width: 140px;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (min-width: 1440px) {
    .container { width: min(1400px, 94%); }
}

/* Portfolio Section Styles */

#portfolio {
    position: relative;
    padding: 20px 0;
    overflow: hidden;
}

#portfolio .section-head {
    margin-bottom: 5px;
}

#portfolio .section-title {
    margin-bottom: 2px;
}

#portfolio::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at center, rgba(0, 167, 150, 0.15), transparent 60%);
    pointer-events: none;
    z-index: 0;
}



/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.review-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: var(--panel);
    line-height: 0; /* Remove extra space below image */
}

.review-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
    object-fit: contain; /* Preserve natural ratio */
}

.review-item::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 9px;
    padding: 1px;
    background: linear-gradient(45deg, #00a796, transparent);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    box-shadow: 0 0 15px rgba(0, 167, 150, 0.5);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.review-item:hover::before {
    opacity: 1;
}

.review-item:hover img {
    transform: scale(1.05);
}

/* Mobile Reviews Grid */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
        padding: 15px 0;
    }

    .review-item::before {
        box-shadow: 0 0 10px rgba(0, 167, 150, 0.4);
    }
}
