/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* CSS VARIABLES */
:root {
  /* Brand Colors - White & Black palette */
  --color-white: #FFFFFF;
  --color-off-white: #F8F8F8;
  --color-black: #000000;
  --color-dark-gray: #1A1A1A;
  --color-medium-gray: #666666;
  --color-light-gray: #E0E0E0;
  
  /* Font Families */
  --font-primary: 'Cormorant Garamond', serif;
  --font-secondary: 'Space Grotesk', sans-serif;
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--color-white);
    color: var(--color-black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.navbar.scrolled {
    background-color: var(--color-black);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 97vw;
    margin: 0 auto;
}

/* LOGO + BRAND */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 55px;
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-light-gray);
}

.brand-sub {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-light-gray);
}

.navbar.scrolled .brand-name,
.navbar.scrolled .brand-sub {
    color: var(--color-white);
}

/* DESKTOP NAV LINKS */
.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links li a {
    font-family: var(--font-secondary);
    font-size: .78rem;
    text-decoration: none;
    color: var(--color-light-gray);
    letter-spacing: .15em;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    font-weight: 400;
}

.navbar.scrolled .nav-links li a {
    color: var(--color-white);
}

.navbar.scrolled .nav-links li a:hover {
    border-bottom: solid 1px var(--color-white);
}

.nav-links li a:hover {
    color: var(--color-black);
}

/* DESKTOP CTA BUTTON */
.cta-btn {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    padding: 0.6rem 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.transparent-btn {
    background-color: transparent;
    border: 1px solid var(--color-light-gray);
    color: var(--color-light-gray);
}

.navbar.scrolled .transparent-btn {
    border-color: var(--color-white);
    color: var(--color-white);
}

.transparent-btn:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

.navbar.scrolled .transparent-btn:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

/* HAMBURGER (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-light-gray);
    background-color: transparent;
    cursor: pointer;
    gap: 6px;
}

.navbar.scrolled .hamburger {
    border-color: var(--color-white);
}

.hamburger span {
    width: 20px;
    height: 1.5px;
    background-color: var(--color-light-gray);
    transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span {
    background-color: var(--color-white);
}

/* Hamburger -> X animation */
.hamburger.active span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(6px, 6px);
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(6px, -6px);
    transform: rotate(-45deg) translate(6px, -6px);
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    left: 0;
    width: 100%;
    height: 90vh;
    background-color: var(--color-black);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    z-index: 999;
    padding: 5rem 2rem;
}

.mobile-menu.active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.mobile-nav-links {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
    gap: 1.5rem;
}

.mobile-nav-links li a {
    font-family: var(--font-secondary);
    font-size: 1.7rem;
    text-decoration: none;
    color: var(--color-light-gray);
    border-bottom: 1px solid var(--color-white);
    transition: border-color 0.3s ease;
    text-transform: uppercase;
    display: block;
    padding-bottom: 1rem;
}

.mobile-nav-links li a:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .cta-wrapper {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .brand-name {
        font-size: 1.1rem;
    }
    
    .brand-sub {
        font-size: 1.1rem;
    }
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none;
    }
}

/* ======================================== */
/* HERO SECTION
/* ======================================== */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video Wrapper */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    transition: background 0.3s ease;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    margin-top: 10%;
}

/* GOLD SHINY BADGE */
.hero-badge {
    display: inline-block;
    margin-bottom: 2rem;
}

.badge-text {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #D4AF37 0%, #FFF5C2 25%, #D4AF37 50%, #FFE066 75%, #D4AF37 100%);
    background-size: 200% 100%;
    color: #1A1A1A;
    border-radius: 50px;
    -webkit-animation: shimmer 3s infinite linear;
    animation: shimmer 3s infinite linear;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

@-webkit-keyframes shimmer {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

@keyframes shimmer {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

/* HERO TITLE */
.hero-title {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 4rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.desktop-break {
    display: inline;
}

/* CTA BUTTONS */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.hero-btn {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.9rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-radius: 0;
}

.hero-btn-primary {
    background-color: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
}

.hero-btn-primary:hover {
    background-color: transparent;
    color: var(--color-white);
}

.hero-btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.hero-btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--color-white);
    text-transform: uppercase;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

@-webkit-keyframes bounce {
    0%, 100% {
        -webkit-transform: translateX(-50%) translateY(0);
        transform: translateX(-50%) translateY(0);
    }
    50% {
        -webkit-transform: translateX(-50%) translateY(10px);
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes bounce {
    0%, 100% {
        -webkit-transform: translateX(-50%) translateY(0);
        transform: translateX(-50%) translateY(0);
    }
    50% {
        -webkit-transform: translateX(-50%) translateY(10px);
        transform: translateX(-50%) translateY(10px);
    }
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* RESPONSIVE: TABLET */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        gap: 1rem;
    }
    
    .hero-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* RESPONSIVE: MOBILE */
@media (max-width: 768px) {
    .hero-overlay {
        background: rgba(0, 0, 0, 0.4);
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .badge-text {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
        letter-spacing: 1.5px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .desktop-break {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .hero-btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        text-align: center;
    }
    
    .scroll-indicator span {
        font-size: 0.65rem;
    }
    
    .scroll-arrow {
        width: 16px;
        height: 16px;
    }
}

/* ======================================== */
/* ABOUT SECTION
/* ======================================== */

.about {
    background-color: var(--color-dark-gray);
    padding: 6rem 2rem;
    width: 100%;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.about-subtitle {
    font-family: var(--font-secondary);
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--color-white);
    letter-spacing: 2px;
    margin-bottom: 3rem;
}

.about-content {
    margin-bottom: 3rem;
}

.about-text {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.about-text:last-of-type {
    margin-bottom: 0;
}

.about-btn {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.9rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    display: inline-block;
}

.about-btn:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

@media (max-width: 1024px) {
    .about {
        padding: 5rem 2rem;
    }
    .about-title {
        font-size: 2.5rem;
    }
    .about-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    .about-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 1.5rem;
    }
    .about-container {
        max-width: 100%;
    }
    .about-title {
        font-size: 1.8rem;
    }
    .about-subtitle {
        font-size: 1.2rem;
        letter-spacing: 1.5px;
        margin-bottom: 2rem;
    }
    .about-text {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }
    .about-btn {
        width: 100%;
        max-width: 280px;
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ======================================== */
/* SERVICES SECTION
/* ======================================== */

.services {
    background-color: var(--color-white);
    padding: 6rem 0;
    width: 100%;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 1.5rem;
}

.services-description {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-medium-gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.services-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
}

.service-card {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-front {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.card-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.card-bg-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.service-name {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin: 0;
    padding: 0 1rem;
    z-index: 2;
    width: 100%;
}

.card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-description {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: bold;
    color: var(--color-white);
    text-align: center;
    margin: 0;
}

.service-card:hover .card-front {
    opacity: 0;
}

.service-card:hover .card-back {
    opacity: 1;
}

@media (max-width: 1024px) {
    .services {
        padding: 5rem 0;
        min-width: 100vw;
    }
    .services-container {
        padding: 0;
        margin: 0;
    }
    .services-title {
        font-size: 2.5rem;
    }
    .services-description {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    .service-card {
        height: 350px;
    }
    .service-name {
        font-size: 1.5rem;
    }
    .service-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 4rem 0;
    }
    .services-container {
        padding: 0;
    }
    .services-title {
        font-size: 2rem;
    }
    .services-description {
        font-size: 0.9rem;
        margin-bottom: 5rem;
        padding: 0 1rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .service-card {
        height: 400px;
    }
    .service-name {
        font-size: 2rem;
    }
    .card-back {
        padding: 1.5rem;
    }
    .service-description {
        font-size: 1.1rem;
        line-height: 1.5;
    }
}

/* ======================================== */
/* PROCESS SECTION
/* ======================================== */

.process {
    background-color: var(--color-black);
    padding: 6rem 2rem;
    width: 100%;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.process-left {
    flex: 1;
}

.process-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.process-btn {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.9rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    display: inline-block;
}

.process-btn:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

.mobile-only {
    display: none;
}

.process-right {
    flex: 1;
}

.accordion {
    width: 100%;
}

.accordion-item {
    border-bottom: 1px solid var(--color-white);
    margin-bottom: 0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    padding-left: 0.5rem;
}

.accordion-title {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: 1px;
}

.accordion-icon {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--color-white);
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-content p {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-light-gray);
    padding-bottom: 1.25rem;
    margin: 0;
}

@media (max-width: 1024px) {
    .process {
        padding: 5rem 2rem;
    }
    .process-container {
        gap: 3rem;
    }
    .process-title {
        font-size: 2.5rem;
    }
    .accordion-title {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .process {
        padding: 4rem 1.5rem;
    }
    .process-container {
        flex-direction: column;
        gap: 2rem;
    }
    .process-left {
        text-align: center;
        order: 1;
        margin: auto;
    }
    .process-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    .process-btn {
        order: 3;
        margin-top: 1rem;
        width: 100%;
        max-width: 280px;
    }
    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: flex;
        justify-content: center;
        margin-top: 2rem;
    }
    .process-right {
        order: 2;
        width: 100%;
    }
    .accordion-header {
        padding: 1rem 0;
    }
    .accordion-title {
        font-size: 0.95rem;
    }
    .accordion-content p {
        font-size: 0.85rem;
        padding-bottom: 1rem;
    }
}

/* ======================================== */
/* TESTIMONIAL SECTION
/* ======================================== */

.testimonials {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.testimonials-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.testimonials-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.testimonials-slider {
    position: relative;
    width: 100%;
    min-height: 400px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.quote-icon {
    font-family: var(--font-primary);
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
    margin-bottom: 1rem;
}

.stars {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    letter-spacing: 5px;
    color: #FFD700;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--color-white);
    margin-bottom: 2rem;
    font-style: italic;
}

.client-name {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.client-role {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.nav-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
    -webkit-transform: translateY(-50%) scale(1.05);
    transform: translateY(-50%) scale(1.05);
}

.prev {
    left: 1rem;
}

.next {
    right: 1rem;
}

.dots-container {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--color-white);
    width: 25px;
    border-radius: 10px;
}

@media (max-width: 1024px) {
    .testimonials-container {
        padding: 3rem 1.5rem;
    }
    .testimonial-card {
        padding: 2rem;
    }
    .testimonial-text {
        font-size: 1rem;
    }
    .quote-icon {
        font-size: 4rem;
    }
    .stars {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .testimonials-container {
        padding: 2rem 1rem;
        overflow-x: hidden;
    }
    .testimonial-card {
        padding: 1.5rem;
        border-radius: 15px;
    }
    .quote-icon {
        font-size: 3rem;
    }
    .stars {
        font-size: 1rem;
        letter-spacing: 3px;
    }
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    .client-name {
        font-size: 1rem;
    }
    .client-role {
        font-size: 0.75rem;
    }
    .nav-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .prev {
        left: 0.5rem;
    }
    .next {
        right: 0.5rem;
    }
}

/* ======================================== */
/* CTA SECTION
/* ======================================== */

.cta-section {
    background-color: var(--color-black);
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.cta-container {
    width: 80vw;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    overflow-x: hidden;
}

.cta-left {
    flex: 1;
    text-align: center;
}

.cta-badge {
    max-width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

.cta-right {
    flex: 1;
    text-align: left;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: bold;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.cta-button {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.9rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    display: inline-block;
}

.cta-button:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

@media (max-width: 1024px) {
    .cta-section {
        padding: 4rem 2rem;
    }
    .cta-container {
        gap: 3rem;
    }
    .cta-title {
        font-size: 2rem;
    }
    .cta-badge {
        max-height: 150px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 1.5rem;
    }
    .cta-container {
        flex-direction: column;
        text-align: center;
    }
    .cta-left {
        order: 1;
    }
    .cta-right {
        order: 2;
        text-align: center;
        margin-top: -5rem;
    }
    .cta-title {
        font-size: 1.8rem;
    }
    .cta-badge {
        min-height: 500px;
    }
    .cta-button {
        width: 100%;
        max-width: 280px;
    }
}

/* ======================================== */
/* FOOTER
/* ======================================== */

.footer {
    background-color: var(--color-black);
    padding-top: 4rem;
    width: 100%;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 70px;
    width: auto;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-brand-name {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-white);
}

.footer-brand-sub {
    font-family: var(--font-secondary);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--color-white);
}

.footer-tagline {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--color-light-gray);
    margin-top: 0.5rem;
}

.footer-heading {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links li a {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    color: var(--color-light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: var(--color-white);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    color: var(--color-light-gray);
    margin-bottom: 0.75rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link img {
    width: 32px;
    height: 32px;
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1);
}

.social-link:hover img {
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding: 1.5rem 0;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.credit {
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.credit a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.credit a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .footer-container {
        gap: 1.5rem;
    }
    .footer-col {
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding-top: 3rem;
    }
    .footer-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    .footer-col {
        text-align: center;
    }
    .footer-logo-wrapper {
        justify-content: center;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        padding: 0 1.5rem;
    }
    .copyright, .credit {
        font-size: 0.7rem;
    }
}

/* ======================================== */
/* DEMO OVERLAY - "Not Ready Yet"
/* ======================================== */

#demo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.demo-message {
    background-color: var(--color-white);
    padding: 3rem 4rem;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    animation: fadeInUp 0.4s ease;
    cursor: default;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.demo-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.demo-message h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.demo-message p {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-medium-gray);
    margin-bottom: 2rem;
}

.demo-close-btn {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.75rem 2rem;
    background-color: var(--color-black);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.demo-close-btn:hover {
    background-color: var(--color-dark-gray);
    transform: scale(1.02);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .demo-message {
        padding: 2rem 1.5rem;
    }
    
    .demo-message h2 {
        font-size: 1.5rem;
    }
    
    .demo-message p {
        font-size: 0.85rem;
    }
    
    .demo-icon {
        font-size: 3rem;
    }
}