/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-navy: #0a1628;
    --color-navy-light: #132140;
    --color-gold: #c9a84c;
    --color-gold-light: #e4c76b;
    --color-gold-dark: #a8862e;
    --color-white: #ffffff;
    --color-off-white: #f5f2ed;
    --color-gray-100: #f8f9fa;
    --color-gray-200: #e9ecef;
    --color-gray-400: #ced4da;
    --color-gray-600: #6c757d;
    --color-gray-800: #343a40;
    --color-text: #2d2d2d;
    --color-text-light: #5a5a5a;
    --font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-gold: 0 8px 30px rgba(201,168,76,0.15);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    color: var(--color-white);
}

.logo-text {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--color-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.lang-toggle {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    padding: 6px 14px;
    color: var(--color-white);
    cursor: pointer;
    font-size: 0.85rem;
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.lang-toggle:hover {
    border-color: var(--color-gold);
    background: rgba(201,168,76,0.1);
}

.lang-option {
    opacity: 0.5;
    transition: var(--transition);
}

.lang-option.active {
    opacity: 1;
    color: var(--color-gold);
    font-weight: 600;
}

.lang-separator {
    opacity: 0.3;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-navy);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/hero-bg.png') center/cover no-repeat;
    opacity: 0.55;
    filter: saturate(0.6);
    transform: translateY(var(--parallax-y, 0)) scale(1.1);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, rgba(10,22,40,0.7) 0%, rgba(26,45,74,0.5) 40%, rgba(10,22,40,0.75) 100%),
        radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s infinite ease-in-out;
}

@keyframes particleFloat {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
    20% { opacity: 0.6; }
    50% { opacity: 0.3; transform: translateY(-120px) scale(1); }
    80% { opacity: 0.1; }
}

.hero-split {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 50px;
    color: var(--color-gold);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    background: rgba(201,168,76,0.05);
}

.hero-title {
    font-family: var(--font-heading);
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 28px;
}

.hero-line {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-line-accent {
    color: var(--color-gold);
    font-weight: 500;
    font-style: italic;
}

.hero-subtitle {
    color: rgba(255,255,255,0.65);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 0 40px;
    font-weight: 300;
}

/* ========== HERO FORM ========== */
.hero-form-wrapper {
    position: relative;
    z-index: 2;
}

.hero-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    isolation: isolate;
}

.hero-form-logo-wrap {
    margin: -36px -36px 12px -36px;
    padding: 20px 36px 10px;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.hero-form-logo {
    display: inline-block;
    height: 120px;
    width: auto;
}

.hero-form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 6px;
}

.hero-form-desc {
    font-size: 0.85rem;
    color: var(--color-gray-600);
    margin-bottom: 22px;
    line-height: 1.5;
}

.hero-contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-contact-form input,
.hero-contact-form select,
.hero-contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-gray-200);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text);
    background: var(--color-gray-100);
    transition: var(--transition);
    outline: none;
}

.hero-contact-form input:focus,
.hero-contact-form select:focus,
.hero-contact-form textarea:focus {
    border-color: var(--color-gold);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.hero-contact-form textarea {
    resize: vertical;
    min-height: 70px;
}

.hero-contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.hero-contact-form .btn-primary {
    margin-top: 4px;
    padding: 14px;
    font-size: 0.95rem;
}

.hero-form-success {
    margin-top: 4px;
}

.form-disclaimer {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--color-gray-200);
}

.form-disclaimer p {
    font-size: 0.75rem;
    color: var(--color-gray-600);
    line-height: 1.6;
    text-align: center;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-navy);
}

.btn-primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--color-white);
}

.btn-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.7);
    color: var(--color-white);
    font-size: 0.85rem;
    padding: 10px 24px;
}

.btn-outline-light:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-navy);
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
}

/* ========== SECTION HEADERS ========== */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 16px;
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--color-gold);
    opacity: 0.4;
}

.section-tag::before { right: calc(100% + 12px); }
.section-tag::after { left: calc(100% + 12px); }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--color-navy);
    line-height: 1.2;
}

/* ========== ABOUT SECTION ========== */
.about {
    background: var(--color-off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    color: var(--color-text-light);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.85;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--color-gold);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-navy);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-gold);
    font-weight: 300;
}

.stat-label {
    width: 100%;
    font-size: 0.85rem;
    color: var(--color-gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ========== TEAM SECTION ========== */
.team {
    background: var(--color-white);
}

.team-profile {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 50px;
    align-items: center;
}

.team-profile-reverse {
    direction: rtl;
}

.team-profile-reverse > * {
    direction: ltr;
}

.team-profile-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 5;
}

.team-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-profile:hover .team-profile-image img {
    transform: scale(1.03);
}

.team-profile-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.team-profile-role {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gold-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-gold);
}

.team-profile-info p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 24px;
}

.team-profile-expertise h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-navy);
    margin-bottom: 14px;
    font-weight: 600;
}

.team-profile-expertise ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.team-profile-expertise li {
    padding: 7px 16px;
    background: var(--color-off-white);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--color-text);
    border: 1px solid var(--color-gray-200);
    transition: var(--transition);
}

.team-profile-expertise li:hover {
    background: var(--color-gold);
    color: var(--color-navy);
    border-color: var(--color-gold);
}

.team-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    margin: 70px auto;
}

/* ========== SERVICES SECTION ========== */
.services {
    background: var(--color-navy);
}

.services .section-tag {
    color: var(--color-gold);
}

.services .section-tag::before,
.services .section-tag::after {
    background: var(--color-gold);
}

.services .section-title {
    color: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-6px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 12px;
}

.service-card p {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ========== CONTACT SECTION ========== */
.contact {
    background: var(--color-off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-tag {
    margin-bottom: 12px;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.contact-desc {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    font-size: 1.3rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item strong {
    font-size: 0.85rem;
    color: var(--color-navy);
    margin-bottom: 2px;
}

.contact-item span {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* ========== FORM ========== */
.contact-form-wrapper {
    background: var(--color-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form-logo-wrap {
    text-align: center;
    margin-bottom: 10px;
}

.contact-form-logo {
    height: 120px;
    width: auto;
    display: inline-block;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-navy);
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-gray-200);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-gray-100);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-gold);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-form .btn-primary {
    margin-top: 8px;
    padding: 16px;
    font-size: 1rem;
}

.form-success {
    display: none;
    text-align: center;
    padding: 20px;
    background: #e8f5e9;
    border-radius: 12px;
    margin-top: 8px;
}

.form-success.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.success-icon {
    font-size: 2rem;
    color: #2e7d32;
    display: block;
    margin-bottom: 8px;
}

.form-success p {
    color: #2e7d32;
    font-size: 0.95rem;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--color-navy);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo-img {
    height: 70px;
    max-width: 280px;
    object-fit: contain;
    align-self: flex-start;
}

.footer-tagline {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-links-col h4 {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links-col a:hover {
    color: var(--color-gold);
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    background: var(--color-off-white);
}

.testimonials-carousel {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
    min-width: 100%;
    padding: 48px;
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    box-sizing: border-box;
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 1.3rem;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-navy);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-navy);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--color-gray-600);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-gray-200);
    background: var(--color-white);
    color: var(--color-navy);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    line-height: 1;
}

.carousel-btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-gray-200);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--color-gold);
    transform: scale(1.2);
}

/* ========== FAQ SECTION ========== */
.faq {
    background: var(--color-navy);
}

.faq .section-tag { color: var(--color-gold); }
.faq .section-tag::before,
.faq .section-tag::after { background: var(--color-gold); }
.faq .section-title { color: var(--color-white); }

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-row {
    display: flex;
    padding: 0;
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.faq-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.faq-row:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-6px);
}

.faq-row:hover::before {
    transform: scaleX(1);
}

.faq-content {
    padding: 28px 30px;
    flex: 1;
}

.faq-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.35;
    margin-bottom: 8px;
}

.faq-content p {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    line-height: 1.75;
}

/* ========== WORKING HOURS ========== */
.working-hours {
    margin-top: 32px;
    padding: 24px;
    background: var(--color-white);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
}

.working-hours h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-navy);
    margin-bottom: 14px;
    font-weight: 600;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--color-text-light);
    border-bottom: 1px solid var(--color-gray-100);
}

.hours-row:last-child {
    border-bottom: none;
}

.payment-box {
    margin-top: 30px;
    padding: 24px;
    background: var(--color-gray-100);
    border-radius: 12px;
    border-left: 3px solid var(--color-gold);
}

.payment-box h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-navy);
    margin-bottom: 8px;
    font-weight: 600;
}

.payment-box p {
    font-size: 0.88rem;
    color: var(--color-text-light);
    line-height: 1.5;
    margin-bottom: 16px;
}

.btn-revolut {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--color-navy);
    color: var(--color-white);
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.btn-revolut:hover {
    background: var(--color-gold);
    color: var(--color-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ========== MAP SECTION ========== */
.map-section {
    position: relative;
}

.map-overlay-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    background: var(--color-navy);
    padding: 14px 24px;
    text-align: center;
}

.map-label {
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.map-section iframe {
    display: block;
    filter: saturate(0.8) contrast(1.05);
}


/* ========== COOKIE BANNER ========== */
.cookie-consent-saved .cookie-banner {
    display: none !important;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1500;
    background: var(--color-navy);
    padding: 20px 24px;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    visibility: hidden;
}

.cookie-banner.show {
    transform: translateY(0);
    pointer-events: all;
    visibility: visible;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-content p {
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    line-height: 1.6;
    flex: 1;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-outline-dark {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--color-white);
}

.btn-outline-dark:hover {
    border-color: var(--color-white);
    background: rgba(255,255,255,0.1);
}

/* ========== NEWS SECTION ========== */
.news {
    background: var(--color-navy);
}

.news .section-tag {
    color: var(--color-gold);
}

.news .section-tag::before,
.news .section-tag::after {
    background: var(--color-gold);
}

.news .section-title {
    color: var(--color-white);
}

.news-wrapper {
    position: relative;
}

.news-grid {
    display: flex;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    touch-action: pan-y;
    user-select: none;
}

.news-track {
    display: flex;
    gap: 28px;
    width: max-content;
    will-change: transform;
}

.news-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    min-width: 340px;
    max-width: 340px;
    flex-shrink: 0;
}

.news-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-4px);
}

.news-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 2px solid var(--color-gold);
}

.news-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card-source {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.news-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.news-card-date {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
}

.news-card-link {
    font-size: 0.8rem;
    color: var(--color-gold);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.news-card-link:hover {
    color: var(--color-gold-light);
}

.news-loading {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0;
}

.news-loading p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-top: 16px;
}

.news-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: var(--color-gold);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.news-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 0;
    color: rgba(255,255,255,0.45);
    font-size: 0.9rem;
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.reveal-left {
    transform: translateX(-40px);
}

.reveal.reveal-right {
    transform: translateX(40px);
}

.reveal.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .news-wrapper {
        padding: 0 16px;
    }

    .news-grid {
        width: 280px;
        max-width: 100%;
        margin: 0 auto;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-navy);
        flex-direction: column;
        padding: 80px 40px 40px;
        gap: 24px;
        transition: var(--transition);
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-hamburger {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-profile,
    .team-profile-reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }

    .team-profile-image {
        max-width: 350px;
        margin: 0 auto;
    }

    .team-profile-info {
        text-align: center;
    }

    .team-profile-expertise ul {
        justify-content: center;
    }

    .team-divider {
        margin: 50px auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .faq-row {
        grid-template-columns: 50px 1fr;
    }

    .faq-content {
        padding: 22px 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section {
        overflow-x: hidden;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-form-logo {
        height: 120px;
    }

    .hero-form-card {
        padding: 24px;
    }

    .hero-form-logo-wrap {
        margin: -24px -24px 12px -24px;
        padding: 16px 24px 8px;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 16px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
        font-size: 0.95rem;
    }

    .section-tag::before,
    .section-tag::after {
        display: none;
    }

    .hero-line {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-form-card {
        padding: 28px 22px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 1.05rem;
    }

    .news-card {
        min-width: 280px;
        max-width: 280px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

}

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }

    .container {
        padding: 0 16px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .team-card-info h3 {
        font-size: 1.15rem;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }
}
