/* ===========================
   GOOGLE FONTS IMPORT
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Inika:wght@400;700&family=Italianno&family=Lato:wght@400;600;700&family=Playfair+Display:wght@700&family=Great+Vibes&display=swap');

/* ===========================
   VARIABLES & RESET
   =========================== */
:root {
    --primary-color: #D4AF37;
    --primary-dark: #B8960F;
    --text-dark: #133063;
    --text-light: #ffffff;
    --bg-light: #f8f8f8;
    --bg-dark: #1a1a1a;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

/* Dark Mode */
body.dark-mode {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   HEADER/NAVIGATION
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header.dark-mode {
    background-color: rgba(26, 26, 26, 0.98);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.logo,
.logo:hover,
.logo:active,
.logo:focus,
.logo:visited {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: relative;
    line-height: 0.9;
    width: 150px;
    flex-shrink: 0;
    text-decoration: none !important;
    outline: none;
}

.logo * {
    text-decoration: none !important;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 2px;
    font-family: 'Inika', serif;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.header.dark-mode .logo h1 {
    color: #b8e0ff;
}

body.dark-mode .booking-inquiry-title {
    color: #b8e0ff !important;
}

.logo-subtitle {
    color: var(--primary-color);
    font-family: 'Italianno', cursive;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0;
    align-self: flex-end;
    padding-right: 0;
    margin: 0;
}

.navbar {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
}

.header.dark-mode .nav-link {
    color: #b8e0ff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    width: 150px;
    flex-shrink: 0;
    justify-content: flex-end;
}

.theme-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    color: var(--text-dark);
}

.header.dark-mode .theme-toggle {
    color: var(--text-light);
}

.theme-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.header.dark-mode .theme-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.language-toggle {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
}

.language-toggle:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.reserve-btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    border-radius: 12px;
    transition: all 0.3s ease;
    background-color: #d4af37;
    color: #333;
    white-space: nowrap;
    text-decoration: none;
}

.reserve-btn:hover {
    background-color: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.header.dark-mode .hamburger span {
    background-color: var(--text-light);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(12px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-12px);
}

/* ===========================
   MOBILE MENU
   =========================== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 1.5rem;
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

body.dark-mode .mobile-menu {
    background-color: rgba(26, 26, 26, 0.98);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
}

body.dark-mode .mobile-menu a {
    color: var(--text-light);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-light);
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 5rem;
    font-style: italic;
    font-weight: 400;
    color: #fff;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 3rem;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .section-title {
    color: var(--text-light);
}

body.dark-mode .hero .section-title {
    color: #b8e0ff;
}

.hero .section-subtitle {
    color: var(--text-light);
}

body.dark-mode .hero .section-subtitle {
    color: #b8e0ff;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    font-family: 'Lato', sans-serif;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--text-dark);
}

.about-hero-btn {
    background-color: #d4a017;
    color: var(--text-dark);
    border: 2px solid transparent;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.about-hero-btn:hover {
    background-color: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    transform: translateY(-2px);
}

/* ===========================
   SECTIONS
   =========================== */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    position: relative;
}

body.dark-mode .section-title {
    color: var(--text-light);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    display: none;
}

.section-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-secondary, #666);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

body.dark-mode .section-subtitle {
    color: #aaa;
}

/* ===========================
   SERVICES SECTION
   =========================== */
#services {
    background-color: var(--bg-light);
    padding: 80px 0;
}

body.dark-mode #services {
    background-color: var(--bg-dark);
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 60px;
    perspective: 1200px;
    transform-style: preserve-3d;
    transition: transform 0.05s ease-out;
    will-change: transform;
}

.service-card-new {
    background: var(--text-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    --float-y: 0px;
    --float-rotation: 0deg;
    --float-x: 0px;
    transform: translateY(var(--float-y)) translateX(var(--float-x)) rotateZ(var(--float-rotation));
    will-change: transform;
    perspective: 1000px;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

body.dark-mode .service-card-new {
    background: #2a2a2a;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
}

.service-card-new:hover {
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.service-card-new.cards-animated {
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card-new:hover .service-image img {
    transform: scale(1.05);
}

/* Services Cards Animation */
@keyframes cardEnter {
    from {
        opacity: 0;
        transform: translateY(80px) rotateX(-10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@keyframes parallaxFloat {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
    }
}

@keyframes parallaxGlow {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 0px rgba(212, 175, 55, 0));
    }
    50% {
        filter: brightness(1.02) drop-shadow(0 0 8px rgba(212, 175, 55, 0.1));
    }
}

.services-grid-new {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.service-card-new.cards-animated {
    animation: cardEnter 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.service-card-new.cards-animated:nth-child(1) {
    animation-delay: 0ms;
}

.service-card-new.cards-animated:nth-child(2) {
    animation-delay: 100ms;
}

.service-card-new.cards-animated:nth-child(3) {
    animation-delay: 200ms;
}

.service-card-new h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 20px 20px 10px 20px;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

body.dark-mode .service-card-new h3 {
    color: var(--text-light);
}

.service-card-new p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 20px 20px 20px;
    flex-grow: 1;
}

body.dark-mode .service-card-new p {
    color: #aaa;
}

.services-cta {
    text-align: center;
    margin-top: 40px;
}

/* ==================== Voir Tous Les Services Button ==================== */
.btn-view-all-services {
    width: 250px;
    height: 50px;
    margin: 3rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d4af37;
    color: #333;
    border: 2px solid #d4af37;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-view-all-services:hover {
    background-color: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    transform: translateY(-2px);
}

.btn-view-all-services i {
    margin-left: 10px;
    transition: all 0.3s ease;
}

.btn-view-all-services:hover i {
    transform: translateX(5px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: var(--text-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

body.dark-mode .service-card {
    background: #2a2a2a;
    border-color: #444;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

body.dark-mode .service-card h3 {
    color: var(--text-light);
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
}

body.dark-mode .service-card p {
    color: #aaa;
}

/* ===========================
   ABOUT SECTION
   =========================== */
#about {
    background-color: var(--bg-light);
}

body.dark-mode #about {
    background-color: var(--bg-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Inika', serif;
}

body.dark-mode .about-text h3 {
    color: var(--text-light);
}

.about-text p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.8;
}

body.dark-mode .about-text p {
    color: #aaa;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

body.dark-mode .stat-item {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.1);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

body.dark-mode .stat-label {
    color: #aaa;
}

/* ===========================
   TESTIMONIALS SECTION
   =========================== */
#testimonials {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(19, 48, 99, 0.05));
}

body.dark-mode #testimonials {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.02), rgba(19, 48, 99, 0.05));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--text-light);
    border-radius: 8px;
    padding: 40px 30px;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

body.dark-mode .testimonial-card {
    background: #2a2a2a;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-quote {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1;
}

.testimonial-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

body.dark-mode .testimonial-text {
    color: #aaa;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

body.dark-mode .testimonial-author {
    border-top-color: #444;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 0.95rem;
    margin-bottom: 3px;
    font-weight: 600;
    color: var(--text-dark);
}

body.dark-mode .author-info h4 {
    color: var(--text-light);
}

.author-info p {
    font-size: 0.8rem;
    color: #999;
}

.stars {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* ===========================
   CONTACT SECTION
   =========================== */
#contact {
    background-color: var(--bg-light);
}

body.dark-mode #contact {
    background-color: var(--bg-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-dark);
}

body.dark-mode .contact-item h3 {
    color: var(--text-light);
}

.contact-item p {
    color: #666;
    font-size: 0.9rem;
}

body.dark-mode .contact-item p {
    color: #aaa;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

body.dark-mode .form-group label {
    color: var(--text-light);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--text-light);
    color: var(--text-dark);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea,
body.dark-mode .form-group select {
    background-color: #333;
    color: #666;
    border-color: #bbb;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group button {
    background-color: var(--primary-color);
    color: var(--text-dark);
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-top: 10px;
}

.form-group button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.3);
}

/* Booking Button Style */
.booking-btn {
    background-color: var(--primary-color);
    color: var(--text-dark);
    border: none;
    padding: 12px 40px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-top: 20px;
    width: 100%;
}

.booking-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.3);
}

/* ===========================
   FOOTER
   =========================== */
footer {
    background-color: #1e3a4a;
    color: var(--text-light);
    padding: 60px 0 20px;
    margin-top: 0;
}

body.dark-mode footer {
    background-color: #1e3a4a;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-section p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--text-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* ===========================
   WHY CHOOSE SECTION
   =========================== */
#why-choose {
    padding: 80px 0;
    background: #ffffff;
}

body.dark-mode #why-choose {
    background: var(--bg-dark);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-choose-card {
    background: var(--text-light);
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body.dark-mode .why-choose-card {
    background: #2a2a2a;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.05);
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: var(--text-light);
}

.why-choose-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

body.dark-mode .why-choose-card h3 {
    color: var(--text-light);
}

.why-choose-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

body.dark-mode .why-choose-card p {
    color: #aaa;
}

/* ===========================
   SOLUTIONS SECTION
   =========================== */
/* ===========================
   SOLUTIONS PARALLAX SECTION
   =========================== */
.solutions-parallax {
    position: relative;
    overflow: visible;
    perspective: 1200px;
}

.solutions-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.01) 0%, rgba(0, 78, 137, 0.01) 100%);
    pointer-events: none;
    z-index: 0;
}

.solutions-parallax > .container {
    position: relative;
    z-index: 1;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.solutions-vertical {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin-left: auto !important;
    margin-right: auto !important;
}

@keyframes solutionSlideUp {
    from {
        opacity: 0;
        transform: translateY(100px) rotateX(20deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@keyframes textFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solutions-vertical .solution-card {
    transform-style: preserve-3d;
    perspective: 1200px;
    --solution-float: 0px;
    transform: translateY(var(--solution-float));
    will-change: transform;
}

.solutions-vertical .solution-card.card-solution-animated {
    animation: solutionSlideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.solutions-vertical .solution-card:nth-child(1) {
    animation-delay: 0ms;
}

.solutions-vertical .solution-card:nth-child(2) {
    animation-delay: 150ms;
}

.solutions-vertical .solution-card:nth-child(3) {
    animation-delay: 300ms;
}

.solutions-vertical .solution-card:nth-child(4) {
    animation-delay: 450ms;
}

.solutions-vertical .solution-title {
    animation: textFadeIn 0.6s ease-out 0.3s backwards;
}

.solutions-vertical .solution-description p {
    animation: textFadeIn 0.6s ease-out backwards;
}

.solutions-vertical .solution-description p:nth-child(1) {
    animation-delay: 0.5s;
}

.solutions-vertical .solution-description p:nth-child(2) {
    animation-delay: 0.7s;
}

/* ===========================
   COMMITMENT PARALLAX SECTION
   =========================== */
.commitment-parallax {
    position: relative;
    overflow: visible;
    perspective: 1200px;
}

.commitment-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.01) 0%, rgba(0, 78, 137, 0.01) 100%);
    pointer-events: none;
    z-index: 0;
}

.commitment-parallax > .container {
    position: relative;
    z-index: 1;
}

.commitment-parallax .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@keyframes commitmentSlideUp {
    from {
        opacity: 0;
        transform: translateY(60px) rotateX(15deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@keyframes iconSpin {
    from {
        transform: rotateZ(-30deg) scale(0.5);
    }
    to {
        transform: rotateZ(0) scale(1);
    }
}

.commitment-parallax .service-card {
    background: var(--text-light);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    perspective: 1200px;
    --commitment-float: 0px;
    transform: translateY(var(--commitment-float));
    will-change: transform;
}

body.dark-mode .commitment-parallax .service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.commitment-parallax .service-card.card-commitment-animated {
    animation: commitmentSlideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.commitment-parallax .service-card:nth-child(1) {
    animation-delay: 0ms;
}

.commitment-parallax .service-card:nth-child(2) {
    animation-delay: 120ms;
}

.commitment-parallax .service-card:nth-child(3) {
    animation-delay: 240ms;
}

.commitment-parallax .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #0066b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.commitment-parallax .service-card.card-commitment-animated .service-icon {
    animation: iconSpin 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.commitment-parallax .service-card:hover .service-icon {
    transform: scale(1.2) rotate(15deg);
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.4);
}

.commitment-parallax .service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

body.dark-mode .commitment-parallax .service-card h3 {
    color: var(--text-light);
}

.commitment-parallax .service-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

body.dark-mode .commitment-parallax .service-card p {
    color: rgba(255, 255, 255, 0.7);
}

.commitment-parallax .service-card:hover {
    transform: translateY(calc(-25px + var(--commitment-float))) rotateX(8deg) rotateY(3deg);
    box-shadow: 0 30px 60px rgba(0, 78, 137, 0.25);
}

body.dark-mode .commitment-parallax .service-card:hover {
    box-shadow: 0 30px 60px rgba(212, 160, 23, 0.2);
}

.solution-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    background: var(--bg-card);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.solution-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.solution-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    pointer-events: none;
}

.solution-card:hover .solution-image img {
    transform: scale(1.05);
}

.solution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.solution-card:hover .solution-overlay {
    opacity: 1;
}

.solution-btn {
    background: var(--text-light);
    color: var(--text-dark);
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 1px;
    text-decoration: none;
}

.solution-btn:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: scale(1.05);
}

.solution-title {
    color: var(--text-dark);
    margin: 0;
    padding: 20px 20px 10px;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: left;
    font-family: 'Playfair Display', serif;
    transition: var(--transition);
}

.solution-description {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-description p {
    margin: 8px 0;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-family: 'Lato', sans-serif;
}

.solution-description p i {
    color: #d4a017;
    font-size: 1rem;
    flex-shrink: 0;
}

.solution-card:hover .solution-description {
    max-height: 120px;
    opacity: 1;
    padding: 15px 20px;
}

/* Dark mode for solution cards */
body.dark-mode .solution-title {
    color: var(--text-light);
}

body.dark-mode .solution-description p {
    color: var(--text-light);
}

/* ===========================
   PROCESS SECTION
   =========================== */
.process-parallax {
    position: relative;
    overflow: visible;
    perspective: 1500px;
}

.process-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 78, 137, 0.01) 0%, rgba(212, 160, 23, 0.01) 100%);
    pointer-events: none;
    z-index: 0;
}

.process-parallax > .container {
    position: relative;
    z-index: 1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@keyframes processBounce {
    from {
        opacity: 0;
        transform: scale(0.3) translateY(120px) rotateZ(-15deg) rotateX(40deg);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0) rotateZ(0) rotateX(0);
    }
}

.process-card {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transform-style: preserve-3d;
    perspective: 1500px;
    --process-float: 0px;
    transform: translateY(var(--process-float));
    will-change: transform;
}

body.dark-mode .process-card {
    background: rgba(255, 255, 255, 0.05);
}

.process-card.card-process-animated {
    animation: processBounce 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.process-card.card-process-animated:nth-child(1) {
    animation-delay: 0ms;
}

.process-card.card-process-animated:nth-child(2) {
    animation-delay: 100ms;
}

.process-card.card-process-animated:nth-child(3) {
    animation-delay: 200ms;
}

.process-card.card-process-animated:nth-child(4) {
    animation-delay: 300ms;
}

.process-card:hover {
    transform: translateY(calc(-25px + var(--process-float))) rotateX(15deg) rotateZ(5deg);
    box-shadow: 0 30px 60px rgba(0, 78, 137, 0.3);
}

body.dark-mode .process-card:hover {
    box-shadow: 0 30px 60px rgba(212, 160, 23, 0.25);
}

.process-circle {
    width: 80px;
    height: 80px;
    background: #d4a017;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 25px;
    font-family: 'Playfair Display', serif;
}

.process-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

body.dark-mode .process-title {
    color: var(--text-light);
}

.process-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
}

body.dark-mode .process-description {
    color: rgba(255, 255, 255, 0.7);
}

/* ===========================
   CTA SECTION
   =========================== */
#cta {
    padding: 80px 0;
    background: var(--primary-color);
    text-align: center;
}

body.dark-mode #cta {
    background: var(--primary-dark);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-button-wrapper {
    display: flex;
    justify-content: center;
}

.cta-button {
    background: var(--text-light);
    color: var(--primary-color);
    border: 2px solid transparent;
    padding: 16px 40px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Lato', sans-serif;
    text-decoration: none;
}

.cta-button:hover {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-button i {
    font-size: 1.3rem;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
/* ===========================
   PARALLAX SECTION
   =========================== */
.parallax-section {
    position: relative;
    overflow: visible;
    perspective: 1000px;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 78, 137, 0.02) 0%, rgba(255, 107, 53, 0.02) 100%);
    pointer-events: none;
    z-index: 0;
}

.parallax-section > .container {
    position: relative;
    z-index: 1;
}

.btn-view-all-services {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    background: var(--primary-color);
    color: var(--text-light);
    border: 2px solid transparent;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    white-space: nowrap;
}

.btn-view-all-services:hover {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

body.dark-mode .btn-view-all-services:hover {
    color: #b8e0ff;
    border-color: #b8e0ff;
}

.services-cta {
    display: flex;
    justify-content: flex-start;
    margin-top: 60px;
}

/* ===========================
   WHY CHOOSE SECTION ANIMATION
   =========================== */
.why-choose-parallax {
    position: relative;
    overflow: visible;
    perspective: 1200px;
}

.why-choose-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.02) 0%, rgba(0, 78, 137, 0.02) 100%);
    pointer-events: none;
    z-index: 0;
}

.why-choose-parallax > .container {
    position: relative;
    z-index: 1;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

@keyframes cardFlip {
    from {
        opacity: 0;
        transform: rotateY(-90deg) rotateX(10deg) translateZ(-50px);
    }
    to {
        opacity: 1;
        transform: rotateY(0) rotateX(0) translateZ(0);
    }
}

.why-choose-card {
    position: relative;
    background: var(--text-light);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    perspective: 1200px;
    --card-float: 0px;
    --card-rotation: 0deg;
    transform: translateY(var(--card-float)) rotateZ(var(--card-rotation));
    will-change: transform;
}

body.dark-mode .why-choose-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-choose-card.card-animated {
    animation: cardFlip 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.why-choose-card.card-animated:nth-child(1) {
    animation-delay: 0ms;
}

.why-choose-card.card-animated:nth-child(2) {
    animation-delay: 150ms;
}

.why-choose-card.card-animated:nth-child(3) {
    animation-delay: 300ms;
}

.why-choose-card:hover {
    transform: translateY(calc(-25px + var(--card-float))) rotateX(12deg) rotateY(5deg) rotateZ(var(--card-rotation));
    box-shadow: 0 30px 60px rgba(212, 160, 23, 0.4);
}

body.dark-mode .why-choose-card:hover {
    box-shadow: 0 30px 60px rgba(212, 160, 23, 0.3);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #0066b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.why-choose-card:hover .card-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 30px rgba(0, 78, 137, 0.4);
}

.why-choose-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

body.dark-mode .why-choose-card h3 {
    color: var(--text-light);
}

.why-choose-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

body.dark-mode .why-choose-card p {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .navbar {
        display: none;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-choose-card {
        padding: 30px 25px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .why-choose-card h3 {
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .language-toggle {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .reserve-btn {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero {
        margin-top: 60px;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .services-grid-new {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .service-card-new h3 {
        font-size: 1.2rem;
    }

    .service-card-new p {
        font-size: 0.9rem;
    }

    .service-image {
        height: 200px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-subtitle {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solution-image {
        height: 280px;
    }

    .solution-title {
        font-size: 1.1rem;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .process-title {
        font-size: 1rem;
    }

    .process-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .header-actions {
        gap: 0.25rem;
    }

    .logo h1 {
        font-size: 1rem;
    }

    .logo-subtitle {
        display: none;
    }

    .reserve-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.65rem;
    }

    .language-toggle {
        padding: 0.3rem 0.6rem;
        font-size: 0.65rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 1.4rem;
    }

    .cta-subtitle {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
        flex-direction: column;
        gap: 8px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .solution-image {
        height: 250px;
    }

    .solution-title {
        font-size: 1rem;
        padding: 15px;
    }

    .solution-btn {
        padding: 8px 15px;
        font-size: 0.75rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card {
        padding: 30px 20px;
    }

    .process-circle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .process-title {
        font-size: 0.9rem;
    }

    .process-description {
        font-size: 0.8rem;
    }

    .services-grid-new {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card-new h3 {
        font-size: 1.1rem;
        margin: 20px 15px 10px;
    }

    .service-card-new p {
        font-size: 0.85rem;
        margin: 0 15px 20px;
    }

    .service-image {
        height: 180px;
    }

    .btn-view-all-services {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* ===========================
   DARK MODE FIXES FOR ABOUT PAGE
   =========================== */

/* History Section Dark Mode */
body.dark-mode .history-section {
    background-color: #222 !important;
}

body.dark-mode .history-text {
    color: #d0d0d0 !important;
}

/* Commitment Section Dark Mode */
body.dark-mode .commitment-section {
    background-color: #222 !important;
}

body.dark-mode .commitment-section .section-title {
    color: var(--text-light);
}

body.dark-mode .commitment-section .section-subtitle {
    color: #d0d0d0;
}

body.dark-mode .commitment-section .service-card {
    background-color: #2a2a2a;
    color: var(--text-light);
}

body.dark-mode .commitment-section .service-card h3 {
    color: var(--text-light);
}

body.dark-mode .commitment-section .service-card p {
    color: #b8b8b8;
}

/* ===========================
   TESTIMONIALS PARALLAX SECTION
   =========================== */
.testimonials-parallax {
    position: relative;
    overflow: visible;
    perspective: 1200px;
}

.testimonials-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.01) 0%, rgba(0, 78, 137, 0.01) 100%);
    pointer-events: none;
    z-index: 0;
}

.testimonials-parallax > .container {
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

@keyframes testimonialSlideUp {
    from {
        opacity: 0;
        transform: translateY(80px) rotateX(15deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@keyframes imageHover {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05);
    }
}

.testimonial-card {
    background: var(--text-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    perspective: 1200px;
    --testimonial-float: 0px;
    transform: translateY(var(--testimonial-float));
    will-change: transform;
}

body.dark-mode .testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card.card-testimonial-animated {
    animation: testimonialSlideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0ms;
}

.testimonial-card:nth-child(2) {
    animation-delay: 100ms;
}

.testimonial-card:nth-child(3) {
    animation-delay: 200ms;
}

.testimonial-card:nth-child(4) {
    animation-delay: 300ms;
}

.testimonial-card:nth-child(5) {
    animation-delay: 400ms;
}

.testimonial-card:nth-child(6) {
    animation-delay: 500ms;
}

.testimonial-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), #0066b8);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-content-overlay {
    text-align: center;
    color: var(--text-light);
    z-index: 5;
}

.testimonial-content-overlay h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.testimonial-content-overlay p {
    font-size: 1rem;
    font-style: italic;
}

.testimonial-card:hover .testimonial-overlay {
    opacity: 1;
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.1);
}

.testimonial-text {
    padding: 30px;
}

.testimonial-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

body.dark-mode .testimonial-text h3 {
    color: var(--text-light);
}

.testimonial-quote {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 15px;
}

body.dark-mode .testimonial-quote {
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-author {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    color: var(--primary-color);
}

.testimonial-rating i {
    font-size: 0.9rem;
}

.testimonial-card:hover {
    transform: translateY(calc(-25px + var(--testimonial-float))) rotateX(8deg) rotateY(3deg);
    box-shadow: 0 30px 60px rgba(0, 78, 137, 0.25);
}

body.dark-mode .testimonial-card:hover {
    box-shadow: 0 30px 60px rgba(212, 160, 23, 0.2);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-card {
        padding: 0;
    }

    .testimonial-image {
        height: 200px;
    }

    .testimonial-text {
        padding: 25px 20px;
    }

    .testimonial-text h3 {
        font-size: 1.1rem;
    }

    .testimonial-quote {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-image {
        height: 180px;
    }

    .testimonial-text {
        padding: 20px 15px;
    }

    .testimonial-text h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .testimonial-quote {
        font-size: 0.85rem;
    }

    .testimonial-author {
        font-size: 0.8rem;
    }
}

/* ===========================
   PORTFOLIO GALLERY SECTION
   =========================== */
.portfolio-gallery {
    position: relative;
}

body.dark-mode .portfolio-gallery {
    background-color: var(--bg-dark) !important;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 60px;
}

.portfolio-card {
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.portfolio-image-container {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.portfolio-carousel {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.05);
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    z-index: 5;
}

.coming-soon-overlay i {
    font-size: 2.5rem;
    color: #d4a017;
}

.portfolio-carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #d4a017;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

.carousel-btn:hover {
    background: #e6b820;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(212, 160, 23, 0.4);
}

.carousel-counter {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
}

.portfolio-guests {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #d4a017;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(212, 160, 23, 0.4);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 10;
}

.portfolio-guests i {
    font-size: 1.5rem;
}

.guests-count {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.portfolio-card:hover .portfolio-guests {
    opacity: 1;
    visibility: visible;
}

.portfolio-info {
    text-align: center;
}

.portfolio-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

body.dark-mode .portfolio-title {
    color: var(--text-light);
}

.portfolio-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto;
}

body.dark-mode .portfolio-description {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .portfolio-carousel {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .portfolio-carousel {
        height: 280px;
    }

    .portfolio-title {
        font-size: 1.3rem;
    }

    .portfolio-description {
        font-size: 0.9rem;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .portfolio-carousel {
        height: 200px;
    }

    .portfolio-image-container {
        margin-bottom: 20px;
    }

    .portfolio-title {
        font-size: 1.1rem;
    }

    .portfolio-description {
        font-size: 0.85rem;
    }

    .portfolio-carousel-controls {
        bottom: 12px;
        gap: 10px;
    }

    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .carousel-counter {
        padding: 5px 12px;
        font-size: 0.8rem;
    }
}

/* ===========================
   SUCCESS STATS SECTION
   =========================== */
.success-stats {
    background: #d4a017;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.success-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.9) 0%, rgba(200, 150, 20, 0.95) 100%);
    pointer-events: none;
}

.success-stats > .container {
    position: relative;
    z-index: 1;
}

.stats-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 60px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    transition: all 0.1s ease-out;
    will-change: transform, opacity;
}

.stat-number.counting {
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6),
                 0 0 30px rgba(212, 175, 55, 0.3);
    animation: statGlow 0.6s ease-in-out forwards;
}

@keyframes statGlow {
    0% {
        filter: brightness(1.2);
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.4),
                     0 0 20px rgba(212, 175, 55, 0.2);
    }
    50% {
        filter: brightness(1.4);
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.8),
                     0 0 40px rgba(212, 175, 55, 0.4);
    }
    100% {
        filter: brightness(1);
        text-shadow: none;
    }
}

.stat-plus,
.stat-percent {
    font-size: 2rem;
    margin-top: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    font-family: 'Lato', sans-serif;
    margin: 0;
    letter-spacing: 0.3px;
}

body.dark-mode .success-stats {
    background: linear-gradient(135deg, #b8860b 0%, #9a7208 100%);
}

body.dark-mode .stats-title {
    color: #f5e6d3;
}

body.dark-mode .stat-number {
    color: #f5e6d3;
}

body.dark-mode .stat-label {
    color: rgba(245, 230, 211, 0.9);
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .stats-title {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-plus,
    .stat-percent {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stats-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-plus,
    .stat-percent {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .success-stats {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-title {
        font-size: 1.5rem;
        margin-bottom: 35px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-plus,
    .stat-percent {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }
}

