@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nova+Round&display=swap');

/* ========================================
   RESET & VARIABLES
   ======================================== */

:root {
    /* Colors */
    --primary: #00313E;
    --secondary: #00313ee0;
    --accent: #0f3460;
    --gold: #FFF5E5;
    --white: #ffffff;
    --light: #FFF5E5;
    --gray: #6c757d;
    --dark: #0a0a0a;
    --orange: #FF7639;
    /* --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #0f3460;
    --gold: #c5a572;
    --white: #ffffff;
    --light: #f8f9fa;
    --gray: #6c757d;
    --dark: #0a0a0a; */
    
    /* Typography */
    /* --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif; */

    --font-primary: "Inter", sans-serif;
    --font-display: "Nova Round", system-ui;
    
    /* Spacing */
    --container-width: 1400px;
    --section-padding: 120px;
    
    /* Transitions */
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--primary);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s var(--transition-smooth);
}

.author-link{
      color: var(--gold);
}

ul {
    list-style: none;
}

/* ========================================
   CUSTOM CURSOR
   ======================================== */

.custom-cursor {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}

.cursor-inner {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.cursor-outer {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 2px solid var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.15s;
}

body.cursor-hover .cursor-inner {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

body.cursor-hover .cursor-outer {
    width: 60px;
    height: 60px;
}

/* ========================================
   LOADER
   ======================================== */

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

/* HTML: <div class="loader"></div> */
/* .loader {
  height: 120px;
  aspect-ratio: 2;
  border-bottom: 3px solid #524656;
  position: relative;
  overflow: hidden;
}
.loader:before {
  content: "";
  position: absolute;
  inset: auto 42.5% 0;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #CF4647;
  animation: 
    l1-0 .5s cubic-bezier(0,900,1,900) infinite,
    l1-1  2s linear infinite;
}
@keyframes l1-0 {
  0%,2% {bottom: 0%}
  98%,to {bottom:.1%}
}
@keyframes l1-1 {
  0% {translate: -500%}
  to {translate:  500%}
}
.loader {
    position: relative;
} */


/* .loader-circle {
    width: 120px;
    height: 120px;
    border: 3px solid rgba(197, 165, 114, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
}

.loader-text .letter {
    display: inline-block;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-text .letter:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.95); }
} */

/* HTML: <div class="loader"></div> */

.loader {
  width: 100px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: 
    radial-gradient(farthest-side,#ffa516 94%,#0000) top/8px 8px no-repeat,
    conic-gradient(#0000 30%,#ffa516);
  -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 8px),#000 0);
  animation: l13 1s infinite linear;
}
@keyframes l13{ 
  100%{transform: rotate(1turn)}
}
/* ========================================
   NAVIGATION
   ======================================== */

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s var(--transition-smooth);
}

.main-nav.scrolled {
    background: var( --primary);
    backdrop-filter: blur(20px);
    padding: 16px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: baseline;
}
.logo img{
    width: 200px;
    height: 50px;
}

.logo-text {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
}

.logo-subtext {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--light);
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-contact {
    padding: 12px 32px;
    background: var(--primary);
    color: var(--light);
    border-radius: 50px;
    font-weight: 600;
}

.nav-contact::after {
    display: none;
}

.nav-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 165, 114, 0.3);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--transition-smooth);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--primary);
    z-index: 999;
    transition: right 0.5s var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
}

.mobile-link {
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
    font-family: var(--font-display);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s var(--transition-smooth);
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-link:nth-child(4) { transition-delay: 0.4s; }
.mobile-link:nth-child(5) { transition-delay: 0.5s; }
.mobile-link:nth-child(6) { transition-delay: 0.6s; }

.mobile-link:hover {
    color: var(--gold);
}

/* ========================================
   PAGE TRANSITION
   ======================================== */

.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: 9998;
    pointer-events: none;
    transform: translateY(-100%);
}

.page-transition.active {
    pointer-events: all;
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.container-fluid {
    width: 100%;
    padding: 0 40px;
}

section {
    position: relative;
    overflow: hidden;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    padding-left: 60px;
}

.ab-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light);
    margin-bottom: 20px;
    position: relative;
    padding-left: 60px;
}

.intervention-tag{
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light);
    margin-bottom: 20px;
    position: relative;
    padding-left: 60px;
}

.contact-tag{
     display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light);
    margin-bottom: 20px;
    position: relative;
    padding-left: 60px;
}

.about-tag{
    color: var(--light);
}

.service-tag{
    color: var(--light);
}
.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.section-tag.light {
    color: var(--white);
}

.section-tag.light::before {
    background: var(--white);
}

.section-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: start !important;
}

.text-title{
       font-size: 30px !important;
       display: flex;
}
.service-ttl {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--light);
    margin-bottom: 30px;
}


.ab-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--light);
    margin-bottom: 30px;
}

.contact-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--light);
    margin-bottom: 30px;
}

.intervention{
     font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--light);
    margin-bottom: 30px;
}

.section-title.large {
    font-size: 54px;
}

.section-title.light {
    color: var(--white);
}

.section-header {
    margin-bottom: 80px;
}

.section-header.center {
    text-align: center;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gold);
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(197, 165, 114, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-light {
    background: var(--white);
    color: var(--primary);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    font-size: 24px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s var(--transition-smooth);
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

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

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    overflow: hidden;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Canvas particles en arrière-plan */
#particles-js canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-subtitle .line {
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.hero-subtitle .text {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 96px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--light);
    margin-bottom: 40px;
    text-align: center;
}

.hero-title .title-line {
    display: block;
    overflow: hidden;
    font-size: 60px;
    color: var(--light);
}

.hero-title .highlight {
    color: var(--orange);
    font-style: italic;
}

.hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollMove 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
}

@keyframes scrollMove {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(20px); opacity: 0; }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-description {
        font-size: 16px;
    }
}
/* 
.floating-stats {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 80px;
    z-index: 2;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
} */

/* ========================================
   MISSION SECTION
   ======================================== */

.mission-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--light);
}

.mission-bg {
    position: absolute;
    top: 0;
    right: -10%;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(197, 165, 114, 0.1) 0%, transparent 100%);
    border-radius: 50% 0 0 50%;
}

.mission-content {
    position: relative;
    z-index: 2;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.mission-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    transition: all 0.4s var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 30px;
    color: var(--orange);
}

.card-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.mission-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.mission-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
}

/* ========================================
   SERVICES OVERVIEW
   ======================================== */

.services-overview {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.services-list {
    max-width: 1600px;
    margin: 0 auto;
}

.service-item {
    display: grid;
    grid-template-columns: 100px 1fr 400px 60px;
    align-items: center;
    gap: 40px;
    padding: 60px 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: rgba(197, 165, 114, 0.05);
    transition: width 0.6s var(--transition-smooth);
}

.service-item:hover::before {
    width: 100%;
}

.service-item:hover {
    padding-left: 60px;
}

.service-number {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    position: relative;
    z-index: 1;
}

.service-content {
    position: relative;
    z-index: 1;
}

.service-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
    transition: color 0.3s;
}

.service-item:hover .service-title {
    color: var(--primary);
}

.service-desc {
    font-size: 16px;
    color: var(--gray);
}

.service-image {
    width: 400px;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}

.service-item:hover .service-image img {
    transform: scale(1.1);
}

.service-arrow {
    font-size: 48px;
    color: var(--gold);
    transition: transform 0.3s var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.service-item:hover .service-arrow {
    transform: translateX(10px);
}

/* ========================================
   MARQUEE SECTION
   ======================================== */

.marquee-section {
    padding: 60px 0;
    background: var(--primary);
    overflow: hidden;
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    gap: 60px;
    align-items: center;
    padding-right: 60px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
}

.marquee-content .dot {
    color: var(--gold);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ========================================
   ABOUT PREVIEW
   ======================================== */

.about-preview {
    padding: var(--section-padding) 0;
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 700px;
}

.about-image img {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.3) 0%, transparent 100%);
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 24px;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
}

.pillar-icon {
    font-size: 28px;
}

/* ========================================
   VOYAGES SECTION
   ======================================== */

.voyages-section {
    position: relative;
    padding: var(--section-padding) 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
}

.voyages-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.voyages-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.85) 100%);
}

.voyages-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voyages-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.voyages-desc {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.testimonials-carousel {
    overflow: hidden;
    margin-top: 60px;
}

.testimonial-track {
    display: flex;
    gap: 40px;
    justify-content: center;
    /* animation: testimonialSlide 30s linear infinite; */
}

.testimonial-card {
    flex: 0 0 700px;
    background: var(--light);
    padding: 50px;
    border-radius: 20px;
    border-left: 4px solid var(--gold);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--primary);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.testimonial-author span {
    display: block;
    font-size: 14px;
    color: var(--gray);
}

@keyframes testimonialSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

.cta-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.cta-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    line-height: 1.7;
}

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

.main-footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    width: 200px;
    height: 50px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    border-radius: 50%;
    transition: all 0.3s var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--gold);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke-width: 2;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

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