.country-row { display: grid; grid-template-columns: repeat(5, 600px); justify-content: center; gap: 1.5rem; }
.country-column { display: grid; grid-template-rows: 600px 600px; }
.country-column .country-image, .country-column .country-info { height: 600px; border: 1px solid var(--color-light-gray); border-radius: var(--border-radius); box-shadow: 0 6px 16px rgba(0,0,0,.06); background: var(--color-white); overflow: hidden; }
.country-column .country-image { display: grid; place-items: center; }
.country-column .country-image img { width: 100%; height: 100%; object-fit: cover; }
.country-column .country-info { display: grid; place-items: center; text-align: center; padding: 0 1rem; }
.country-column .country-info-inner { padding: 1rem; }
.country-column .country-info h3 { margin-bottom: .35rem; }
.country-column.even { grid-template-rows: 1fr 1fr; }

@media (max-width: 3200px) { .country-row { grid-template-columns: repeat(4, minmax(280px, 1fr)); } .country-column { grid-template-rows: minmax(280px, 1fr) minmax(280px, 1fr); } .country-column .country-image, .country-column .country-info { height: auto; } }
@media (max-width: 1200px) { .country-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .country-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .country-row { grid-template-columns: 1fr; } }
.carousel-wrapper {
    position: relative;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 2;
}
.carousel-prev { left: 6px; }
.carousel-next { right: 6px; }
.carousel-btn:hover { background: var(--color-gold); }
/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
    --color-white: #ffffff;
    --color-black: #000000;
    --color-dark-gray: #333333;
    --color-light-gray: #f4f4f4;
    --color-gold: #b38b6d; /* Refined Gold */
    --font-heading: 'Nunito Sans', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;
    --container-width: 1140px;
    --border-radius: 8px;
}

/* --- General Resets & Body Styling --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-align-last: center;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-white);
    color: var(--color-dark-gray);
    line-height: 1.7;
    font-size: 16px;
}

/* Apply visual scaling to page content but keep header/footer and fixed modals outside the transform
   so sticky/fixed positioning continues to work correctly. Exclude preloader, floating CTAs and modals. */
body > *:not(header):not(.site-footer):not(.preloader):not(.floating-cta):not(.video-modal) {
    transform-origin: top left;
    transform: scale(1.25);
    /* reduce width so scaled content fits inside viewport better */
    width: 80%;
}

/* Preloader */
.preloader { position: fixed; inset: 0; background: #ffffff; display: grid; place-items: center; z-index: 2000; transition: opacity .4s ease, visibility .4s ease; }
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { display: grid; place-items: center; gap: 1rem; }
.preloader-logo { width: 180px; height: auto; }
.preloader-spinner { width: 52px; height: 52px; border: 3px solid #e9e9e9; border-top-color: var(--color-gold); border-radius: 50%; animation: spin 0.9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-black);
    font-weight: 700;
}

h1 { font-size: 3rem; margin-bottom: 1rem; text-align: center;}
h2 { font-size: 2.5rem; margin-bottom: 2rem; text-align: center; }

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: var(--color-black);
}

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

ul {
    list-style: none;
}

/* --- Header --- */
header {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-light-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

header .logo {
    display: flex;
    align-items: center;
    color: var(--color-black);
    font-weight: 700;
    font-size: 1.1rem;
}

header .logo img {
    height: 100px;
}

header nav ul {
    display: flex;
    gap: 2.5rem;
}

header nav a {
    color: var(--color-dark-gray);
    font-weight: 600;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

header nav a.active, header nav a:hover {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
}

.lang-switcher {
    position: relative;
}
.lang-switcher button {
    background: none;
    border: 1px solid var(--color-light-gray);
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: var(--border-radius);
}
.lang-switcher ul {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--color-white);
    border: 1px solid var(--color-light-gray);
    border-radius: var(--border-radius);
    padding: 0.5rem;
    list-style: none;
}
.lang-switcher ul a {
    display: block;
    padding: 0.5rem 1rem;
}


/* --- Hero Section --- */
#hero {
    text-align: center;
    padding: 120px 0;
    background-color: var(--color-light-gray);
}

#hero h1 {
    color: var(--color-black);
}

#hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 1rem auto 2.5rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 999px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0.5rem;
    border: 2px solid var(--color-gold);
    display: inline-block;
}

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

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

/* --- General Sections --- */
section {
    padding: 100px 0;
}

/* --- Footer --- */
.site-footer { background: #000; color: #d9d9d9; padding: 50px 0 20px; }
.site-footer a { color: #d9d9d9; }
.site-footer a:hover { color: #ffffff; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 2rem; align-items: start; }
.footer-logo { width: 150px; height: auto; margin-bottom: .75rem; filter: brightness(1) contrast(1.1); }
.footer-brand p { max-width: 360px; color: #cfcfcf; }
.footer-col h4 { color: var(--color-gold); margin-bottom: .75rem; }
.footer-col ul { display: grid; gap: .5rem; }
.contact-links li { margin-bottom: .25rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #222; margin-top: 2rem; padding-top: 1rem; }
.legal-links { display: flex; gap: 1rem; }

@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .75rem; }
}

/* --- Card Styles --- */
.country-cards, .country-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.card, .country-card { background: var(--color-white); border: 1px solid var(--color-light-gray); border-radius: var(--border-radius); box-shadow: 0 6px 16px rgba(0,0,0,.06); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.card:hover, .country-card:hover { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(0,0,0,.12); }
.country-card h3 { font-size: 1.35rem; margin-bottom: .25rem; }
.country-card .btn-sm { padding: .55rem 1rem; font-size: .9rem; }
.modern-grid .country-card { display: grid; grid-template-rows: auto 1fr auto; }
.modern-grid .card-media { height: 140px; display: grid; place-items: center; background: #faf8f5; }
.modern-grid .card-media img { max-height: 100%; width: auto; }
.modern-grid .card-media-bottom { height: 120px; background: #fff; }
.modern-grid .card-media-bottom img { width: 100%; height: 100%; object-fit: cover; }
.modern-grid .card-body { padding: 1.25rem 1.25rem 1rem; text-align: left; }

/* --- Country page layout (main + aside) --- */
.country-grid { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
.country-main { min-width: 0; }
.country-aside { display: grid; gap: 1rem; }

/* Accordion (details) */
.accordion details { border: 1px solid var(--color-light-gray); border-radius: 10px; padding: .8rem 1rem; margin-bottom: .65rem; background: #fff; }
.accordion summary { cursor: pointer; list-style: none; font-weight: 700; outline: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary:after { content: '\25be'; float: right; transform: translateY(2px); color: var(--color-gold); }
.accordion details[open] summary:after { content: '\25b4'; }
.accordion details p { margin-top: .5rem; color: #555; }

/* Checklist */
.checklist { display: grid; gap: .5rem; padding-left: 0; }
.checklist li { list-style: none; padding-left: 28px; position: relative; color: #444; }
.checklist li::before { content: ''; position: absolute; left: 0; top: 4px; width: 20px; height: 20px; background-image: url('../assets/icons/check.svg'); background-size: 20px 20px; background-repeat: no-repeat; }

/* Fees */
.fees-grid { display: grid; gap: .75rem; grid-template-columns: 1fr 1fr; margin-bottom: 1rem; }
.fee-item { background: #fff; border: 1px solid var(--color-light-gray); border-radius: 10px; padding: .85rem; text-align: center; }

/* Aside cards */
.contact-card, .note-card { padding: 1rem; background: #fff; border: 1px solid var(--color-light-gray); border-radius: 10px; }
.contact-card h4, .note-card h4 { margin-bottom: .5rem; }
.contact-card p { margin-bottom: .5rem; }
.contact-card .btn { width: 100%; display: block; text-align: center; }

@media (max-width: 992px) {
  .country-grid { grid-template-columns: 1fr; }
  .fees-grid { grid-template-columns: 1fr; }
}

/* --- Video Placeholder --- */
.video-section { background: linear-gradient(180deg, #fff 0%, #faf7f2 100%); padding: 0px 0 100px; }
.video-section h2 { margin-bottom: .5rem; }
.video-section .video-lead { max-width: 720px; margin: 0 auto 1.75rem; color: #6b6b6b; text-align: center; }
.video-card { position: relative; max-width: 980px; margin: 0 auto 1.5rem; border-radius: 16px; overflow: hidden; box-shadow: 0 18px 40px rgba(0,0,0,.15); }
.video-card img { display: block; width: 100%; height: auto; }
.video-trigger { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 86px; height: 86px; border-radius: 50%; background: rgba(255,255,255,.85) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><polygon points="25,18 48,32 25,46" fill="%23b38b6d"/></svg>') no-repeat center/36%; border: 6px solid rgba(255,255,255,.9); box-shadow: 0 10px 24px rgba(0,0,0,.2); cursor: pointer; transition: transform .2s ease; z-index: 2; }
.video-trigger:hover { transform: translate(-50%, -50%) scale(1.06); }
.video-cta { display: table; align-items: center; justify-content: center; margin: .25rem auto 0; }

/* Modal */
.video-modal[hidden] { display: none; }
.video-modal { position: fixed; inset: 0; z-index: 1200; display: grid; place-items: center; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(2px); }
.video-modal-dialog { position: relative; z-index: 1; width: min(100% - 32px, 960px); margin: 0; background: #000; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.video-modal-body { position: relative; padding-top: 56.25%; }
.video-modal-body iframe, .video-modal-body video { position: absolute; inset: 0; width: 100%; height: 100%; }
.video-modal-close { position: absolute; top: 8px; right: 8px; width: 40px; height: 40px; border-radius: 50%; border: none; background: rgba(255,255,255,.85); color: #000; font-size: 24px; line-height: 40px; text-align: center; cursor: pointer; z-index: 2; }

/* --- Photo gallery: letterboxed images --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
}
.gallery-item {
    background: #000; /* letterbox background */
    border-radius: 8px;
    overflow: hidden;
    display: block;
    height: 320px; /* fixed height to ensure consistent box size */
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* center the image and letterbox with black bars */
    background: #000;
    display: block;
}

/* --- REFERANS gallery: letterboxed images --- */
.referans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}
.referans-item {
    background: #000; /* letterbox background */
    border-radius: 8px;
    overflow: hidden;
    display: block;
    height: 320px; /* fixed height to ensure consistent box size */
}
.referans-item img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* center the image and letterbox with black bars */
    background: #000;
    display: block;
}

/* --- Card & Why Us Content --- */
.card h3 {
    margin: 1rem 0 0.5rem;
    font-size: 1.5rem;
}
.card .flag-icon {
    font-size: 3rem;
}
.btn-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
}
.why-us-item {
    padding: 1.5rem;
}
.why-us-item .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}
.why-us-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.why-right {
    gap: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

/* Why choose section (two-column layout) */
.why-choose { background: linear-gradient(180deg, #fff 0%, #fafafa 100%); }
.why-choose-grid {display: flex;grid-template-columns: 1.2fr 1fr;align-items: center;gap: 3rem;max-width: fit-content;}
.why-left .eyebrow { text-transform: uppercase; letter-spacing: .08em; font-weight: 800; color: var(--color-gold); margin-bottom: .5rem; }
.why-features { margin: 1.25rem 0 1.5rem; display: grid; gap: 1rem; }
.why-features li { display: grid; grid-template-columns: 44px 1fr; gap: .75rem; align-items: start; padding: .75rem 0; border-bottom: 1px solid #eee; }
.why-features li:last-child { border-bottom: none; }
.feature-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: #fff7ef; border: 1px solid #ffe9d2; }
.feature-icon img { width: 24px; height: 24px; }
.why-right .why-photo-card { border-radius: 18px; overflow: hidden; box-shadow: 0 24px 70px rgba(0,0,0,.15); border: 1px solid var(--color-light-gray); }
.why-right img { width: 25rem; height: auto; display: block; }
.cta-row {display: flex;gap: .75rem;flex-direction: row;justify-content: center;}

@media (max-width: 992px) {
  .why-choose-grid { grid-template-columns: 1fr; }
}

/* --- Simple carousel --- */
.carousel {
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.carousel-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 260px; /* fixed card width for consistent sizing */
    gap: 1rem;
}
.reference-card {
    background: var(--color-white);
    border: 1px solid var(--color-light-gray);
    border-radius: var(--border-radius);
    padding: 1rem;
    text-align: center;
    box-shadow: 0 6px 14px rgba(0,0,0,.06);
    scroll-snap-align: start;
    display: grid;
    place-items: center;
}
.reference-card img {
    width: 720px;             /* fixed portrait size */
    height: 405px;            /* fixed portrait size */
    aspect-ratio: 3 / 4;      /* keep portrait ratio when supported */
    object-fit: cover;        /* crop to fill */
    border-radius: 12px;      /* soft corners */
    margin-bottom: .25rem;
    box-shadow: 0 6px 16px rgba(0,0,0,.12);
}

/* --- Quick contact inline list --- */
.contact-inline {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.25rem;
    margin: 0 0 1.25rem;
}
.contact-inline li { font-weight: 600; }

/* Contact section */
.contact-section { background: linear-gradient(180deg, #fff 0%, #fafafa 100%); }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: start; }
.contact-form-card, .contact-info-card, .hours-card { background: #fff; border: 1px solid var(--color-light-gray); border-radius: 12px; box-shadow: 0 10px 24px rgba(0,0,0,.06); padding: 1.5rem; }
.contact-side { display: grid; gap: 1rem; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: .75rem; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #eaeaea; border-radius: 10px; padding: .9rem 1rem; font-size: 1rem; }
.contact-form textarea { resize: vertical; }
.contact-form button { margin-top: .5rem; }
.info-list { display: grid; gap: .75rem; margin: 1rem 0 1.25rem; }
.info-list li { display: grid; grid-template-columns: 32px 1fr; gap: .75rem; align-items: start; }
.info-list img { width: 24px; height: 24px; }
.hours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.map-embed iframe { width: 100%; height: 220px; border: 0; border-radius: 10px; }
.map-wide { margin: 1.5rem auto 0; width: 90%; max-width: var(--container-width); background: #fff; border: 1px solid var(--color-light-gray); border-radius: 12px; box-shadow: 0 10px 24px rgba(0,0,0,.06); overflow: hidden; }
.map-wide iframe { width: 100%; height: 380px; border: 0; display: block; }

@media (max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .gallery-item { height: 220px; }
}
@media (max-width: 768px) {
    .referans-item { height: 220px; }
  }
/* Process section */
.process-section { background: linear-gradient(180deg, #fff 0%, #f9f9f9 100%); padding-top: 60px; }
.process-timeline { position: relative; height: 120px; margin-bottom: 20px; }
.timeline-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.timeline-svg path { fill: none; stroke: #e3d7ca; stroke-width: 4; stroke-dasharray: 2 10; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.step-item { position: relative; padding-top: 0; }
.bubble { width: 76px; height: 76px; border-radius: 50%; background: #fff; border: 4px solid var(--color-gold); display: grid; place-items: center; font-weight: 800; font-size: 1.25rem; color: var(--color-dark-gray); margin: 0 auto 1rem; box-shadow: 0 10px 24px rgba(0,0,0,.08); }
.step-item h3 { margin-bottom: .5rem; }
.step-item p { color: #666; max-width: 360px; margin: 0 auto; }

@media (max-width: 992px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* Timeline styles for About page */
.timeline { padding: 2rem 0; }
.timeline-track { display: flex; gap: 1.5rem; align-items: stretch; }
.timeline-item { background: #fff; border: 1px solid var(--color-light-gray); border-radius: 12px; padding: 1rem; flex: 1 1 0; box-shadow: 0 6px 18px rgba(0,0,0,.06); }
.timeline-item .marker { font-weight: 800; font-size: 1.1rem; color: var(--color-gold); margin-bottom: .5rem; }
.timeline-item .content h4 { margin-bottom: .25rem; }

@media (max-width: 992px) { .timeline-track { flex-direction: column; } }

/* Infographic-style timeline */
.timeline-infographic { position: relative; padding: 40px 0 120px; }
.timeline-svg { width: 100%; height: 160px; display: block; }
.timeline-points { position: absolute; inset: 0; top: 0; display: grid; grid-template-columns: repeat(4, 1fr); align-items: start; gap: 1rem; padding: 0 2rem; z-index: 2; }
.point { display: flex; flex-direction: column; align-items: center; text-align: center; padding-top: 12px; }
.point-icon { width: 72px; height: 72px; border-radius: 50%; background: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px rgba(0,0,0,.08); margin-bottom: 8px; }
.point-icon img { width: 32px; height: 32px; }
.point-title { font-weight: 700; color: var(--color-dark-gray); margin-bottom: .25rem; }
.point-desc { color: #6b6b6b; font-size: .95rem; max-width: 240px; }

@media (max-width: 992px) {
  .timeline-points { grid-template-columns: 1fr; position: static; }
  .timeline-svg { display: none; }
  .point { padding: 1rem 0; }
}
/* --- Hero grid refinement --- */
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 3rem;
}
.hero-content {
    text-align: left;
}
.badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1rem;
    margin: 1rem 0 2rem;
}
.badge-list li {
    background: var(--color-light-gray);
    border: 1px solid var(--color-light-gray);
    color: var(--color-dark-gray);
    padding: .5rem .75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .95rem;
}
.hero-visual {
    position: relative;
    display: grid;
    place-items: center;
}
.hero-visual-ring {
    width: clamp(200px, 40vw, 360px);
    height: clamp(200px, 40vw, 360px);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(179,139,109,.25), rgba(0,0,0,0));
    border: 2px solid rgba(179,139,109,.4);
    position: absolute;
    animation: pulse 6s ease-in-out infinite;
}
.hero-visual-img {
    width: clamp(120px, 20vw, 180px);
    filter: drop-shadow(0 8px 24px rgba(0,0,0,.15));
}
@keyframes pulse {
    0%,100% { transform: scale(1); opacity: .9; }
    50% { transform: scale(1.05); opacity: 1; }
}

/* --- Modern hero variant --- */
.hero-modern {
    position: relative;
    /* Left side vibrant accent like the sample, right side clean */
    --hero-accent: #b38b6d;
    background: linear-gradient(110deg, var(--hero-accent) 0% 60%, #ffffff 60% 100%);
    overflow: hidden;
}
.hero-modern .hero-accent {
    position: absolute;
    inset: -20% -10% auto auto;
    width: 60vw;
    height: 60vw;
    max-width: 900px;
    max-height: 900px;
    background: radial-gradient(circle at 30% 30%, rgba(179,139,109,.25), rgba(0,0,0,0));
    border: 3px solid rgba(179,139,109,.35);
    border-radius: 50%;
    filter: blur(0.2px);
}
.hero-modern .hero-content h1 {
    line-height: 1.06;
    color: #fff;
}
.hero-modern .hero-content p {
    color: rgba(255,255,255,.9);
}
.hero-modern .badge-list li {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.25);
    color: #fff;
}
.hero-modern .btn-primary {
    background: #fff;
    color: var(--hero-accent);
    border-color: #fff;
}
.hero-modern .btn-primary:hover {
    background: #000; color: #fff; border-color: #000;
}
.hero-modern .btn-secondary {
    color: #fff;
    border-color: #fff;
}
.hero-modern .btn-secondary:hover {
    background: rgba(255,255,255,.15);
}

/* Hero CTA alignment */
.hero-modern .cta-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-modern .cta-buttons .btn { margin: 0; }

/* --- Floating WhatsApp CTA --- */
.floating-cta {
    position: fixed;
    right: 20px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: var(--color-gold);
    color: var(--color-white);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
    font-size: 1.5rem;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    z-index: 1200;
}
.floating-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,0,0,.25); background: var(--color-black); }

/* --- Responsive tweaks for hero --- */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-content { text-align: center; }
    .badge-list { justify-content: center; }
    .hero-modern { background: linear-gradient(180deg, var(--hero-accent) 0% 55%, #ffffff 55% 100%); }
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    header nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        flex-direction: column;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    header nav ul.active {
        display: flex;
    }
    header nav ul li {
        padding: 1rem 0;
        border-bottom: 1px solid var(--color-light-gray);
    }
    header nav ul li:last-child {
        border-bottom: none;
    }

    #hamburger-btn {
        display: block;
        font-size: 2rem;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }
    
    .header-right {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    header nav {
        order: 3; /* Push nav to the end on small screens */
    }
}

@media (min-width: 993px) {
    #hamburger-btn {
        display: none;
    }
}

/* --- Country page specific styles --- */
.country-layout { display: grid; grid-template-columns: 320px 1fr; gap: 2rem; align-items: start; }
.country-sidebar .sidebar-box { background: #fff; border: 1px solid var(--color-light-gray); border-radius: 12px; padding: 1rem; margin-bottom: 1rem; }
.country-list ul { padding: 0; display: grid; gap: .5rem; }
.country-list li { background: #fbfbfb; padding: .6rem .8rem; border-radius: 8px; display: flex; justify-content: space-between; align-items: center; }
.country-list li.active { border-left: 4px solid var(--color-gold); background: #fff; }
.downloads .download { display: block; background: #fbfbfb; padding: .6rem; border-radius: 8px; margin-bottom: .5rem; }
.promo .btn { margin-top: .5rem; }

.country-hero { display: grid; grid-template-columns: 1fr 420px; gap: 1.5rem; align-items: center; margin-bottom: 1.5rem; }
.country-hero-text h1 { font-size: 2rem; margin-bottom: .5rem; }
.country-hero-image img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 14px 40px rgba(0,0,0,.08); }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: 1.25rem; }
.why-item { background: #fff; border: 1px solid var(--color-light-gray); border-radius: 10px; padding: .8rem; display: flex; align-items: center; gap: .75rem; }
.why-item .bullet { width: 10px; height: 40px; background: linear-gradient(180deg, var(--color-gold), #e8c9a1); border-radius: 4px; }

.inst-grid { display: grid; grid-template-columns: 240px 1fr; gap: 1rem; align-items: center; }
.inst-grid img { width: 240px; height: 160px; object-fit: cover; border-radius: 10px; }
.inst-grid ul { list-style: none; padding-left: 0; }

@media (max-width: 992px) {
  .country-layout { grid-template-columns: 1fr; }
  .country-hero { grid-template-columns: 1fr; }
  .inst-grid { grid-template-columns: 1fr; }
}
