:root {
    --primary-dark: #2b2200;
    --accent-dark: #3b2b00;
    --gold: #f2c94c;
    --light-gold: #ffe79a;
    --text-light: #fff9e6;
    --text-muted: #d4b86a;
    --bg-dark: #1a1400;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 480px) {
    html {
        overflow-x: hidden;
    }
}

body {
    font-family: 'Exo', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, 
        #3b2b00 0%,
        #4a3500 20%,
        #3b2b00 40%,
        #2b2200 60%,
        #1a1400 80%,
        #1d1700 100%
    );
    background-attachment: scroll;
    width: 100%;
    max-width: 100vw;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 50%, rgba(150, 120, 40, 0.45) 0%, transparent 30%),
                radial-gradient(circle at 70% 80%, rgba(150, 120, 40, 0.45) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.container,
.header-container,
.footer-content {
    max-width: 100%;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
}

*, *::before, *::after {
    box-sizing: border-box;
}

.header, .hero, .main, section {
    position: relative;
    z-index: 2;
}

.header, .hero, .main, section, .container {
    max-width: 100%;
    box-sizing: border-box;
}

.logo-scroll, .reviews-track, .results-track {
    max-width: 100%;
}

.main::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 120%;
    height: 101%;
    opacity: 0.02;
    z-index: -1;
}

.hero {
    background: none;
    position: relative;
    z-index: 2;
    padding: 60px 0 0px;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 120%;
    height: 100%;
    opacity: 0.03;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    padding: 10px 0;
    background: linear-gradient(90deg, #1f1b0a 0%, #2b2200 50%, #3b2b00 100%) !important;
    border-bottom: 1px solid rgba(242, 201, 76, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%; 
}

@media (min-width: 1200px) {
    .header-container {
        width: 80%;
    }
}

.logo {
    font-family: 'Exo', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0; 
}

.book-call-btn {
    background: linear-gradient(135deg, var(--gold), #ffd65b);
    border: none;
    border-radius: 6px;
    padding: 15px 30px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.book-call-btn:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 201, 76, 0.3);
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--primary-dark);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0; 
    padding: 0; 
    margin: 0; 
}

.menu-toggle:hover {
    color: var(--gold);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: white;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.sidebar {
    position: fixed;
    top: 70px;
    right: 20px;
    width: 300px;
    background-image: radial-gradient(circle at 10% 20%, rgba(242, 201, 76, 0.05) 0%, transparent 50%), radial-gradient(circle at 90% 80%, rgba(59, 43, 0, 0.7) 0%, transparent 50%), linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 50%, var(--accent-dark) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    z-index: 1001;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    max-width: calc(100vw - 40px); 
}

@media (max-width: 767px) {
    .sidebar {
        width: 280px;
        right: 15px;
        max-width: calc(100vw - 30px);
        box-sizing: border-box;
    }
    
    .header-container {
        padding: 0 15px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .book-call-btn {
        padding: 12px 18px;
        font-size: 16px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .container {
        padding: 0 20px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    
    .header {
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .menu-toggle {
        flex-shrink: 0;
        min-width: 30px;
    }
}

@media (max-width: 480px) {
    .sidebar {
        width: 260px;
        right: 10px;
        max-width: calc(150vw);
        box-sizing: border-box;
    }
    
    .header-actions {
        gap: 12px;
        flex-shrink: 0;
    }
    
    .book-call-btn {
        padding: 10px 14px;
        font-size: 14px;
        min-width: auto;
    }
    
    .container {
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .header-container {
        padding: 0 10px;
        box-sizing: border-box;
    }
}

.sidebar.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sidebar-logo {
    font-family: 'Exo', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
}

.close-sidebar {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: rotate(0deg);
}

.close-sidebar:hover {
    color: var(--gold);
}

.close-sidebar.active {
    transform: rotate(180deg);
}

.sidebar-nav {
    list-style: none;
    margin-bottom: 20px;
}

.sidebar-nav li {
    margin-bottom: 15px;
}

.sidebar-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-nav a:hover {
    color: var(--gold);
}

.sidebar-social {
    margin-top: 10px;
}

.sidebar-social h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 0px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.hero.visible {
    opacity: 1;
    transform: translateY(0);
}

.gradient-text {
    font-family: 'Exo', sans-serif;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
    background: linear-gradient(to right, var(--text-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (max-width: 767px) {
    .gradient-text {
        font-size: 32px !important;
    }
    h1, h2, h3 {
        font-size: 32px !important;
    }
}

.hero .subtitle {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 30px;
    color: white;
}

.hero .description {
    font-size: 18px;
    color: white;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-video {
    max-width: 1000px;
    margin: 0 auto 20px;
    border-radius: 12px;
    overflow: hidden;
}

.hero-video iframe {
    width: 100%;
    height: 562px;
    border: none;
    border-radius: 12px;
}

.call-button {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
    transform: scale(1.2);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.btn-primary {
    background: var(--gold);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--gold);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.btn-call {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-call:hover {
    background: var(--gold);
    color: var(--primary-dark);
}

.testimonials {
    padding-top: 0px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.logos-container {
    width: 100%;
    margin: 20px auto;
    position: relative;
    padding: 20px 0;
}

.logo-wrapper {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent 100%);
}

.logo-scroll {
    display: flex;
    gap: 40px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.logo-track {
    display: flex;
    gap: 40px;
    margin-right: 40px;
    animation: scroll 12s linear infinite;
    width: fit-content;
}

.logo-item {
    flex: 0 0 auto;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: brightness(1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonials.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    text-align: center;
}

.section-title {
    font-family: 'Exo', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-light);
}

.section-subtitle {
    font-size: 18px;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    width: 100%;
}

.carousel-track {
    display: flex;
    position: relative;
    width: 100%;
}

.testimonial-card {
    min-width: 350px;
    background: rgba(42, 57, 111, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 30px;
    margin: 0 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 16px;
    border: 2px solid var(--gold);
}

.testimonial-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 4px;
}

.testimonial-info .title {
    font-size: 14px;
    color: white;
}

.testimonial-text {
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 16px;
}

.testimonial-rating {
    color: var(--gold);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.results {
    padding-top: 0px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.results.visible {
    opacity: 1;
    transform: translateY(0);
}

.results-images-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px auto;
    width: 100%;
    max-width: 1400px;
    padding: 0 20px;
}

.results-images-grid img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.hero-image {
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.hero-image img {
    max-height: 800px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.image-row {
    display: flex;
    gap: 30px;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
}

.image-row .image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-row.single-image {
    max-width: 800px;
    margin: 0px auto;
}

.image-row.single-image .image-container {
    width: 100%;
}

.image-row.single-image img {
    margin: 0 auto;
    display: block;
    max-width: 100%;
}

.mixed-sizes {
    align-items: center;
}

.mixed-sizes .image-container.small {
    flex: 0 0 25%;
}

.mixed-sizes .image-container.large {
    flex: 0 0 37.5%;
}

.mixed-sizes .small img {
    max-height: 520px;
}

.mixed-sizes .large img {
    max-height: 780px;
}

.two-images {
    gap: 40px;
}

.two-images .image-container {
    flex: 0 0 calc(50% - 20px);
}

.two-images {
    justify-content: center;
    margin: 0 auto;
    max-width: 1000px;
}

.two-images .image-container {
    display: flex;
    justify-content: center;
    flex: 0 0 calc(50% - 20px);
    text-align: center;
}

.two-images img {
    margin: 0 auto;
}

.two-images img {
    max-height: 1040px;
    width: auto;
    max-width: 100%;
}

.four-images {
    gap: 150px;
}

.four-images .image-container {
    flex: 0 0 calc(50%);
}

.four-images {
    justify-content: center;
    margin: 0 auto;
    max-width: 5000px;
}

.four-images .image-container {
    display: flex;
    justify-content: center;
    flex: 0 0 calc(50% - 20px);
    text-align: center;
}

.four-images img {
    margin: 0 auto;
}

.four-images img {
    max-height: 2080px;
    width: auto;
    max-width: 125%;
}

.results-images-grid img:hover {
    transform: scale(1.02);
}

@media (max-width: 1400px) {
    .two-images,
    .four-images {
        display: flex;
        flex-direction: column; 
        gap: 30px;
        max-width: 800px;
    }

    .mixed-sizes .image-container,
    .two-images .image-container,
    .four-images .image-container {
        width: 100%;
        max-width: 100%;
    }

    .results-images-grid {
        gap: 30px;
    }

    .hero-image img {
        max-height: 910px;
        width: 100%;
        object-fit: cover;
    }
}

@media (max-width: 1200px) {
    .two-images,
    .four-images {
        display: flex;
        flex-direction: column; 
        gap: 30px;
        max-width: 500px;
    }

    .mixed-sizes .image-container,
    .two-images .image-container,
    .four-images .image-container {
        width: 100%;
        max-width: 100%;
    }

    .results-images-grid {
        gap: 30px;
    }

    .hero-image img {
        max-height: 910px;
        width: 100%;
        object-fit: cover;
    }
}

@media (max-width: 767px) {
    .two-images,
    .four-images {
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 350px;

    }

    .hero-image img {
        max-height: auto;
        width: 125%;
        object-fit: contain;
    }
    
    .mixed-sizes .small img {
        max-height: 390px;
    }
    
    .mixed-sizes .large img {
        max-height: 520px;
    }
    
    .two-images img,
    .four-images img {
        max-height: 650px;
    }
}

@media (max-width: 480px) {
    .two-images,
    .four-images {
        flex-direction: column;
        gap: 30px;
        max-width: 300px;
    }

    .hero-image img {
        max-height: auto;
        width: 125%;
        object-fit: contain;
    }
    
    .mixed-sizes .small img {
        max-height: 325px;
    }
    
    .mixed-sizes .large img {
        max-height: 455px;
    }
    
    .two-images img,
    .four-images img {
        max-height: 520px;
    }
}

@media (max-width: 767px) {
    .scroll-section:first-of-type .scroll-item {
        flex: 0 0 300px;
        min-width: 300px;
    }

    .scroll-section:last-of-type .scroll-item {
        flex: 0 0 450px;
        min-width: 450px;
    }

    .full-width {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .scroll-section:first-of-type .scroll-item {
        flex: 0 0 250px;
        min-width: 250px;
    }

    .scroll-section:last-of-type .scroll-item {
        flex: 0 0 300px;
        min-width: 300px;
    }

    .results-images-grid {
        gap: 30px;
    }
}

.result-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 250px;
    width: 100%;
}

.results-grid .result-card:nth-child(1) {
    grid-area: left-top;
}

.results-grid .mias-card {
    grid-area: mias;
    grid-row: span 2;
    height: auto;
}

.results-grid .result-card:nth-child(3) {
    grid-area: right-top;
}

@media (max-width: 1024px) {
    .results-grid {
        grid-template-areas: 
            "mias mias"
            "left-top right-top"
            "left-bottom right-bottom";
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .results-grid {
        grid-template-areas: 
            "mias"
            "left-top"
            "right-top"
            "left-bottom"
            "right-bottom";
        grid-template-columns: 1fr;
    }
}

.result-card:not(.mias-card) {
    cursor: pointer;
}

.result-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.result-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.result-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: rgba(10, 16, 32, 0.7);
    transition: transform 0.5s ease;
}

.result-card:hover .result-image {
    transform: scale(1.05);
}

.result-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 41, 79, 0.9), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.result-card:hover .result-overlay {
    transform: translateY(0);
}

.result-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 8px;
}

.result-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.4;
}

.mias-card {
    background: rgba(42, 57, 111, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mias-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.mias-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-light);
}

.mias-handle {
    font-size: 16px;
    color: white;
    margin-bottom: 8px;
}

.mias-followers {
    font-size: 16px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
}

.client-video {
    border-radius: 12px;
    overflow: hidden;
    margin-top: auto;
}

.client-video iframe {
    width: 100%;
    height: 200px;
    border: none;
}

@media (max-width: 767px) {
    .client-video {
        overflow: hidden;
    }
}

.reviews {
    padding: 0px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reviews.visible {
    opacity: 1;
    transform: translateY(0);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.review-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
    height: 450px;
}

.review-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.review-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    background-color: rgba(6, 8, 12, 1);
    transition: transform 0.5s ease;
}

.review-card:hover .review-image {
    transform: scale(1.05);
}

.review-title {
    display: none;
}

.review-text {
    display: none;
}

.reviews-carousel { 
    margin-top: 20px; 
}

.reviews-track {
    display: flex;
    gap: 16px;
    transition: transform 0.45s ease;
    will-change: transform;
    max-width: 100%;
}

.reviews-track .review-card { 
    flex: 0 0 calc((100% - 16px) / 2); 
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    background-color: rgba(6, 8, 12, 1);
    display: flex;
    justify-content: center;
    min-width: 0;

}

.reviews-track .review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.reviews-carousel,
.results-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.reviews-viewport,
.results-viewport {
    width: 100%;
    overflow: hidden;
}

.reviews-track,
.results-track {
    display: flex;
    gap: 16px;
    transform: translate3d(0, 0, 0);
    transition: transform 0.45s ease;
    will-change: transform;
}

.review-card,
.result-card {
    flex-shrink: 0;
    width: calc((100% - 16px) / 2);
    min-width: 0;
}

@media (max-width: 900px) {
    .review-card,
    .result-card {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .reviews-track,
    .results-track {
        margin: 0;
        padding: 0;
    }
    
    .reviews-carousel,
    .results-carousel {
        width: 100%;
        overflow: hidden;
    }
    
    .result-image,
    .review-image {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

.carousel-arrow { 
    background: #2b2200; 
    color: #fff; 
    border: none; 
    padding: 10px 14px; 
    border-radius: 8px; 
    cursor: pointer; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.carousel-arrow:hover {
    background: #3b2b00;
    transform: translateY(-2px);
}

.carousel-arrow i {
    font-size: 18px;

}
.carousel-arrow:focus {
    outline: 2px solid rgba(255,255,255,0.2);
}

@media (max-width: 900px) {
    .reviews-track .review-card { flex: 0 0 calc((100% - 16px) / 2); }
}

@media (max-width: 560px) {
    .reviews-track .review-card { flex: 0 0 100%; }
    .carousel-controls { gap: 8px; }
}

.videos-section-lf {
    padding: 0px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.videos-section-lf.visible {
    opacity: 1;
    transform: translateY(0);
}

.videos-grid-lf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.video-card-lf {
    width: 100%;
}

.video-card-lf:last-child:nth-child(2n + 1) {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

.video-card-lf {
    background: rgba(42, 57, 111, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.video-card-lf.visible {
    opacity: 1;
    transform: translateY(0);
}

.video-card-lf:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

.video-container-lf {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
}

.video-container-lf iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.videos-section-sf {
    padding: 0px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.videos-section-sf.visible {
    opacity: 1;
    transform: translateY(0);
}

.shorts-grid-sf {
    display: grid;
    grid-template-columns: repeat(4, 1fr);;
    gap: 30px;
    margin: 60px auto 0;
    justify-content: center;
    max-width: 1320px;
}

.short-card-sf {
    background: rgba(42, 57, 111, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
}

.short-card-sf.visible {
    opacity: 1;
    transform: translateY(0);
}

.short-card-sf:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

.short-container-sf {
    position: relative;
    padding-bottom: 177.78%; 
    height: 0;
    overflow: hidden;
}

.short-container-sf iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 1400px) {
    .shorts-grid-sf {
        grid-template-columns: repeat(4, 1fr);;
    }
}

@media (max-width: 1024px) {
    .shorts-grid-sf {
        grid-template-columns: repeat(auto-fit, minmax(240px, 280px));
        gap: 20px;
        padding: 0 20px;
    }
    
    .short-card-sf {
        max-width: 280px;
    }
}

@media (max-width: 767px) {
    .shorts-grid-sf {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 0 15px;
    }
    
    .short-card-sf {
        width: 100%;
        max-width: 350px;
    }
    
    .videos-grid-lf {
        grid-template-columns: 1fr;
    }

    .video-card-lf:last-child:nth-child(2n + 1) {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .shorts-grid-sf {
        gap: 20px;
        padding: 0 10px;
    }
    
    .short-card-sf {
        max-width: 300px;
    }
}

.client-testimonial {
    padding: 0px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.client-testimonial.visible {
    opacity: 1;
    transform: translateY(0);
}

.vertical-video-container {
    max-width: 300px;
    margin: 30px auto;
}

.client-name {
    text-align: center;
    color: var(--text-light);
    font-size: 24px;
    font-weight: 500;
    margin-top: 20px;
}

.services {
    padding-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.services.visible {
    opacity: 1;
    transform: translateY(0);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

@media (max-width: 1100px) and (min-width: 768px) {
    .services-grid {
        grid-template: 2fr;
    }
    .services-grid .service-card:nth-child(3) {
        grid-column: span 2;
    }
}

.service-card {
    background-image: radial-gradient(circle at 10% 20%, rgba(254, 203, 51, 0.05) 0%, transparent 50%), radial-gradient(circle at 90% 80%, rgba(23, 17, 0, 0.7) 0%, transparent 50%), linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 50%, var(--accent-dark) 100%);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 24px;
}

.service-card h3 {
    font-family: 'Exo', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-light);
}

.service-card p {
    color: white;
    line-height: 1.8;
}

footer {
    padding: 80px 0 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

footer.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.footer-right {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-family: 'Exo', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 30px;
    text-align: center;
}

.calendly-container {
    background: rgba(10, 22, 40, 0.3);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.calendly-inline-widget {
    flex-grow: 1;
    min-height: 650px;
    height: 100%;
}

.quick-links {
    text-align: center;
    margin-bottom: 10px;
}

.quick-links h3 {
    font-family: 'Exo', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold);
}

.quick-links-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.quick-links-list a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border-radius: 4px;
}

.quick-links-list a:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.footer-social {
    text-align: center;
}

.footer-social h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-social .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    margin-bottom: -50px; 
    padding-top: 0px;
    padding-bottom: 0px; 
    color: white;
    font-size: 14px;
}

#footer {
    margin-bottom: 0;
    padding-bottom: 0;
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 42px;
    }
    
    .hero-video iframe {
        height: 250px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-card {
        min-width: 280px;
    }
    
    .sidebar {
        width: 280px;
        right: 10px;
    }
    
    .results-grid, .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .quick-links-list {
        flex-direction: column;
        align-items: center;
    }
}

.book-call-btn,
.btn-primary {
    background: linear-gradient(135deg, var(--gold), #ffd65b);
    color: var(--accent-dark);
    font-weight: 700;
    border-radius: 6px;
}

.book-call-btn:hover,
.btn-primary:hover {
    background: var(--light-gold);
    box-shadow: 0 6px 20px rgba(242, 201, 76, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-secondary:hover {
    background: rgba(242, 201, 76, 0.1);
}

nav {
    background: linear-gradient(90deg, #1f1b0a 0%, #2b2200 50%, #3b2b00 100%) !important;
    border-bottom: 1px solid rgba(242, 201, 76, 0.3);
}

.main {
    position: relative; 
    z-index: 1; 
}

.main::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 120%;
    height: 100.88%;
    background: url('https://www.transparenttextures.com/patterns/gold-scale.png') repeat;
    opacity: 0.04;
    z-index: -1;
}

@media (max-width: 767px) {
    .main::after {
        content: '';
        position: absolute;
        top: -50px;
        left: -50px;
        width: 120%;
        height: 100.65%;
        background: url('https://www.transparenttextures.com/patterns/gold-scale.png') repeat;
        opacity: 0.04;
        z-index: -1;
    }
}