/* CSS Variables for Premium Aesthetic */
:root {
    --primary-color: #0f172a; /* Deep Navy Blue */
    --secondary-color: #1e293b;
    --accent-color: #d4af37; /* Premium Gold */
    --accent-hover: #b49129;
    --bg-color: #ffffff;
    --surface-color: #f8fafc;
    --text-primary: #334155;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --error-color: #ef4444;
    --success-color: #10b981;
    --font-family: 'Outfit', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    /* pointer-events: none; */ /* Haritanın hareket ettirilebilmesi için iptal edildi */
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-weight: 500;
}

.nav a:not(.btn-primary-outline) {
    color: var(--text-primary);
}

.nav a:not(.btn-primary-outline):hover {
    color: var(--accent-color);
}

.btn-primary-outline {
    border: 2px solid var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* WhatsApp Nav Button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff !important;
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    white-space: nowrap;
}

.btn-whatsapp svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    background: linear-gradient(135deg, #20c05b, #0f7a6d);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Offset for fixed header */
    background-color: var(--primary-color); /* Fallback */
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s linear;
    transform: scale(1.05);
}

.hero-slider .slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

@media (min-width: 992px) {
    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

@media (max-width: 991px) {
    .hero-container {
        text-align: center;
        justify-items: center;
    }
    .hero-container .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-container .flags {
        justify-content: center;
    }
}

/* Hero Panel */
.hero-panel {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.panel-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.panel-glass h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.panel-glass p {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.panel-glass .input-group label {
    color: #f1f5f9;
}

.panel-glass select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background-color: rgba(15, 23, 42, 0.5);
    color: #fff;
    font-family: var(--font-family);
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    transition: all 0.3s ease;
}

.panel-glass select:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: rgba(15, 23, 42, 0.8);
}

.panel-glass select option {
    background-color: var(--primary-color);
    color: #fff;
}

.panel-glass .btn-submit {
    width: 100%;
    margin-top: 0.5rem;
}

/* Result Step */
#visa-result-step {
    text-align: center;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.result-icon {
    width: 64px;
    height: 64px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--accent-color);
}

.result-icon svg {
    width: 32px;
    height: 32px;
}

.result-text {
    line-height: 1.6;
    margin-bottom: 2rem !important;
}

.price-box {
    background: rgba(0, 0, 0, 0.25);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-box p {
    font-size: 0.9rem;
    margin-bottom: 1rem !important;
    color: #fff;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-text {
    background: transparent;
    border: none;
    color: #cbd5e1;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s;
}

.btn-text:hover {
    color: #fff;
}

.hero-content {
    color: #fff;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 90%;
}

.flags {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.flag-icon {
    height: 28px;
    width: auto;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flag-icon:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Appointment Panel */
.appointment-panel {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: floatIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.panel-header {
    margin-bottom: 2rem;
    text-align: center;
}

.panel-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.panel-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--surface-color);
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
}

.input-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 1.1rem;
    height: 1.1rem;
    accent-color: var(--primary-color);
}

.checkbox-group label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.checkbox-group a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.btn-submit {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Destinations Section */
.destinations {
    padding: 6rem 0 2rem 0;
    background-color: var(--surface-color);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2.5rem;
    text-align: center;
}

.dest-card {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.dest-card:hover {
    transform: translateY(-8px);
}

.dest-flag-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background-color: #f1f5f9;
}

.dest-card:hover .dest-flag-wrapper {
    box-shadow: var(--shadow-xl);
}

.dest-flag {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dest-card h3 {
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.dest-card:hover h3 {
    color: var(--accent-color);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: var(--bg-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--surface-color);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-card .icon-svg {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1.5rem auto;
    color: var(--accent-color);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: linear-gradient(160deg, #0f172a 0%, #1a2744 100%);
    color: #94a3b8;
}

/* Footer Top Bar */
.footer-top-bar {
    background: linear-gradient(90deg, #25D366, #128C7E);
    padding: 0.9rem 0;
}

.footer-top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-top-bar span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
}

.footer-wa-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.3s ease;
    border: 1px solid rgba(255,255,255,0.35);
}

.footer-wa-link:hover {
    background: rgba(255,255,255,0.35);
}

/* Footer Main */
.footer-main {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 4rem;
    padding-top: 4rem;
    padding-bottom: 3rem;
}

.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-col a {
    display: block;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 0.65rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col a:hover {
    color: var(--accent-color);
    transform: translateX(4px);
}

.footer-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-flags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-flags img {
    height: 18px;
    width: auto;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
}

.footer-flags img:hover {
    transform: scale(1.15);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-contact-item svg {
    color: var(--accent-color);
    flex-shrink: 0;
}

.footer-whatsapp-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff !important;
    padding: 0.65rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    transform: none !important;
}

.footer-instagram-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff !important;
    padding: 0.65rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.25);
    transform: none !important;
}

.footer-instagram-btn:hover {
    filter: brightness(1.1);
}

.footer-whatsapp-btn:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    opacity: 0.9;
    transform: translateY(-2px) !important;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 0.875rem;
    color: #475569;
}

.footer-bottom-right {
    color: #475569;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    color: #fff;
    padding: 1.5rem 0;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: var(--accent-color);
    color: #fff;
}

.btn-cookie-accept:hover {
    background-color: var(--accent-hover);
}

.btn-cookie-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-cookie-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 600px;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-2xl);
    max-height: 90vh;
    overflow-y: auto;
}

.modal.show .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.modal-body h3 {
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.modal-body p, .modal-body ul {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.modal-body ul {
    padding-left: 1.5rem;
    list-style-type: disc;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: var(--surface-color);
}

.about-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-xl);
}

.experience-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--accent-color);
    color: #fff;
    padding: 1.5rem 2rem;
    border-top-right-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 4px -4px 10px rgba(0,0,0,0.1);
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .badge {
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-content p:not(.lead-text) {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.about-feature-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.check-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-circle svg {
    width: 18px;
    height: 18px;
}

/* Certificate Box */
.certificate-box {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.3);
}

.cert-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert-icon svg {
    width: 24px;
    height: 24px;
}

.cert-info {
    flex-grow: 1;
}

.cert-info h4 {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.cert-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.view-cert-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
}

.view-cert-link:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.cert-badge {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-color);
}

.cert-image-preview {
    width: 72px;
    height: 100px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    position: relative;
}

.cert-zoom-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cert-zoom-overlay svg {
    width: 24px;
    height: 24px;
}

.certificate-box:hover .cert-zoom-overlay {
    opacity: 1;
}

.cert-image-preview:hover {
    transform: scale(1.05);
}

.cert-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

@media (max-width: 576px) {
    .certificate-box {
        flex-direction: column;
        text-align: center;
    }
}

/* Appointment Section */
.appointment-section {
    padding: 6rem 0;
    background-color: var(--primary-color);
}

.appointment-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Contact & Map Section */
.contact-map-section {
    padding: 6rem 0;
    background-color: var(--surface-color);
}

.contact-map-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-info-card {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-card h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-details svg {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-details span {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.05rem;
}

.map-container {
    min-height: 400px;
    width: 100%;
}

/* Scroll Reveal Animations (60fps optimized) */
.scroll-reveal {
    opacity: 0;
    will-change: transform, opacity;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up {
    transform: translateY(40px);
}

.fade-left {
    transform: translateX(40px);
}

.fade-right {
    transform: translateX(-40px);
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 4rem 2rem;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem auto;
    }

    .flags {
        justify-content: center;
        margin-bottom: 3rem;
    }

    .about-split-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .appointment-panel {
        max-width: 600px;
        margin: 0 auto;
        text-align: left;
    }

    .contact-map-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        min-height: 300px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-color);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 3rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        gap: 0;
    }

    .nav.active {
        left: 0;
    }

    .nav a {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        width: 100%;
        text-align: center;
    }
    
    .nav a.btn-whatsapp {
        width: auto;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .about-section, .appointment-section, .features, .destinations {
        padding: 4rem 0 2rem 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-top: 3rem;
        padding-bottom: 2rem;
    }

    .footer-top-bar-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-flags {
        justify-content: flex-start;
    }
}

/* Mobile Optimizations for Recently Added Features */
@media (max-width: 768px) {
    /* Hero Panel Mobile */
    .panel-glass {
        padding: 1.5rem;
        border-radius: var(--radius-lg);
    }
    .panel-glass h3 {
        font-size: 1.35rem;
        margin-bottom: 0.5rem;
    }
    .panel-glass p {
        font-size: 0.9rem;
    }
    .hero-container {
        gap: 2rem;
    }
    .hero-panel {
        max-width: 100%;
        margin-top: 1rem;
    }
    
    /* Destinations Grid Mobile */
    .destinations-grid {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: 1.25rem;
    }
    .dest-flag-wrapper {
        border-radius: 14px;
        margin-bottom: 0.75rem;
    }
    .dest-card h3 {
        font-size: 0.95rem;
    }
    
    /* Document Modal Mobile */
    #documentModal .close-modal {
        font-size: 2rem !important;
        margin-bottom: 5px !important;
        margin-right: 5px !important;
    }
}

/* Floating Review Button */
.floating-review-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: var(--accent-color);
    color: var(--heading-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-review-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.6);
}

.floating-review-btn svg {
    width: 28px;
    height: 28px;
}

/* Primary Button Modern Styling */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #d97706);
    color: var(--heading-color);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
    background: linear-gradient(135deg, #f59e0b, #b45309);
    color: #fff;
}

/* Modern Review Modal */
#reviewModal .modal-content {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 2.5rem !important;
    border: 1px solid #f1f5f9;
}

#reviewModal h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
    text-align: center;
}

#reviewModal .input-group label {
    font-weight: 600;
    color: #475569;
}

#reviewModal .input-group input,
#reviewModal .input-group textarea {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

#reviewModal .input-group input:focus,
#reviewModal .input-group textarea:focus {
    border-color: var(--accent-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.15);
}

#reviewModal .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 12px;
}

/* Gallery Grid Styling */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}
