/* ============================================
   AFRICANS IN GERMANY - Main Stylesheet
   Design System & Global Styles
   ============================================ */

/* --------------------------------------------
   GOOGLE FONTS IMPORT
   -------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600&display=swap');

/* --------------------------------------------
   CSS CUSTOM PROPERTIES (Design Tokens)
   -------------------------------------------- */
:root {
    /* Colors */
    --color-black:        #FFFFFF;
    --color-dark:         #F8F8F8;
    --color-dark-card:    #FFFFFF;
    --color-dark-border:  #E0E0E0;
    --color-gold:         #D4A017;
    --color-gold-light:   #E8B520;
    --color-gold-dark:    #B8860B;
    --color-red:          #C0392B;
    --color-green:        #27AE60;
    --color-white:        #FFFFFF;
    --color-grey-light:   #F5F5F5;
    --color-grey:         #888888;
    --color-grey-dark:    #666666;
    --color-text:         #222222;
    --color-text-muted:   #555555;
    --color-text-dark:    #333333;

    /* Typography */
    --font-heading:       'Montserrat', sans-serif;
    --font-body:          'Open Sans', sans-serif;

    /* Font Sizes */
    --text-xs:    0.75rem;
    --text-sm:    0.875rem;
    --text-base:  1rem;
    --text-lg:    1.125rem;
    --text-xl:    1.25rem;
    --text-2xl:   1.5rem;
    --text-3xl:   1.875rem;
    --text-4xl:   2.25rem;
    --text-5xl:   3rem;
    --text-6xl:   3.75rem;

    /* Spacing */
    --space-xs:   0.5rem;
    --space-sm:   1rem;
    --space-md:   1.5rem;
    --space-lg:   2rem;
    --space-xl:   3rem;
    --space-2xl:  4rem;
    --space-3xl:  6rem;
    --space-4xl:  8rem;

    /* Border Radius */
    --radius-sm:  4px;
    --radius-md:  8px;
    --radius-lg:  12px;
    --radius-xl:  20px;

    /* Shadows */
    --shadow-sm:  0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md:  0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg:  0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 4px 20px rgba(212, 160, 23, 0.2);

    /* Transitions */
    --transition-fast:   0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow:   0.5s ease;

    /* Layout */
    --container-max:  1200px;
    --container-pad:  1.5rem;
    --nav-height:     80px;
}

/* --------------------------------------------
   RESET & BASE
   -------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-gold-light);
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-body);
}

input, textarea, select {
    font-family: var(--font-body);
}

/* --------------------------------------------
   TYPOGRAPHY
   -------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-dark);
}

h1 { font-size: var(--text-5xl); font-weight: 800; }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

.text-gold    { color: var(--color-gold); }
.text-white   { color: var(--color-white); }
.text-muted   { color: var(--color-grey-dark); }
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }

/* --------------------------------------------
   LAYOUT
   -------------------------------------------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.section {
    padding: var(--space-3xl) 0;
}

.section-sm {
    padding: var(--space-2xl) 0;
}

.section-lg {
    padding: var(--space-4xl) 0;
}

.section-dark {
    background-color: var(--color-dark);
}

.section-black {
    background-color: var(--color-black);
}

.section-card {
    background-color: var(--color-dark-card);
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--space-lg);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* --------------------------------------------
   SECTION HEADERS
   -------------------------------------------- */
.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header h2 {
    font-size: var(--text-3xl);
    font-weight: 800;
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-dark);
}

.section-header p {
    font-size: var(--text-lg);
    color: var(--color-grey);
    max-width: 600px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.gold-underline {
    position: relative;
    display: inline-block;
}

.gold-underline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--color-gold);
}

.gold-underline.center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* --------------------------------------------
   BUTTONS
   -------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}

.btn-primary:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-black);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.btn-outline-gold:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--color-white);
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #20BD5C;
    border-color: #20BD5C;
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: var(--text-xs);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: var(--text-base);
}

/* --------------------------------------------
   NAVIGATION
   -------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: all var(--transition-normal);
    padding: 0 var(--container-pad);
}

.navbar.transparent {
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar-inner {
    max-width: var(--container-max);
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.navbar-logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: var(--text-base);
    color: var(--color-text-dark);
    letter-spacing: 1px;
    line-height: 1.2;
}

.navbar-logo-text span {
    color: var(--color-gold);
}

.navbar-logo img {
    height: 45px;
    width: auto;
}

/* Nav Links */
.navbar-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.navbar-links a {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: #555555;
    text-decoration: none;
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    letter-spacing: 0.5px;
    position: relative;
}

.navbar-links a:hover {
    color: var(--color-text-dark);
}

.navbar-links a.active {
    color: var(--color-gold);
}

.navbar-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 2px;
}

.navbar-cta {
    margin-left: 1rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-dark);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    transform: translateX(100%);
    transition: all var(--transition-slow);
}

.mobile-menu.open {
    display: flex;
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-text-dark);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color var(--transition-fast);
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--color-gold);
}

.mobile-menu-divider {
    width: 40px;
    height: 2px;
    background: var(--color-gold);
    margin: 0.5rem 0;
}

.mobile-menu-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.mobile-menu-social a {
    font-size: var(--text-base);
    color: var(--color-grey);
}

/* --------------------------------------------
   PAGE HERO (Inner Pages)
   -------------------------------------------- */
.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: var(--nav-height);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.page-hero:hover .page-hero-bg {
    transform: scale(1.1);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.6),
        rgba(10, 10, 10, 0.75)
    );
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 var(--container-pad);
}

.page-hero-content h1 {
    font-size: var(--text-4xl);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: var(--text-lg);
    color: var(--color-grey);
    max-width: 600px;
    margin: 0 auto;
}

/* Simple page hero (no image) */
.page-hero-simple {
    background: var(--color-dark);
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: var(--nav-height);
    border-bottom: 1px solid var(--color-dark-border);
}

/* --------------------------------------------
   CARDS
   -------------------------------------------- */
.card {
    background: var(--color-dark-card);
    border: 1px solid var(--color-dark-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--color-gold);
}

.card-body {
    padding: var(--space-lg);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: rgba(212, 160, 23, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.card-icon svg,
.card-icon i {
    width: 28px;
    height: 28px;
    color: var(--color-gold);
}

.card h3 {
    font-size: var(--text-xl);
    margin-bottom: 0.75rem;
}

.card p {
    font-size: var(--text-sm);
    color: var(--color-grey-dark);
}

/* --------------------------------------------
   CTA SECTION
   -------------------------------------------- */
.cta-section {
    background: linear-gradient(
        135deg,
        var(--color-gold-dark),
        var(--color-gold)
    );
    padding: var(--space-3xl) 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--color-black);
    font-size: var(--text-3xl);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(0, 0, 0, 0.75);
    font-size: var(--text-lg);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-section .btn-outline {
    border-color: var(--color-black);
    color: var(--color-black);
}

.cta-section .btn-outline:hover {
    background: var(--color-black);
    color: var(--color-gold);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --------------------------------------------
   FOOTER
   -------------------------------------------- */
.footer {
    background: #111111;
    border-top: 1px solid #2A2A2A;
    padding: var(--space-3xl) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand p {
    font-size: var(--text-sm);
    color: var(--color-grey-dark);
    margin-top: 1rem;
    line-height: 1.8;
    max-width: 280px;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 1px;
}

.footer-logo-text span {
    color: var(--color-gold);
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a {
    font-size: var(--text-sm);
    color: var(--color-grey-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    font-size: var(--text-sm);
    color: var(--color-grey-dark);
}

.footer-contact-item a {
    color: var(--color-grey-dark);
}

.footer-contact-item a:hover {
    color: var(--color-gold);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: #1A1A1A;
    border: 1px solid #2A2A2A;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888888;
    font-size: var(--text-sm);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
}

.footer-bottom {
    border-top: 1px solid var(--color-dark-border);
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: var(--text-xs);
    color: var(--color-grey-dark);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: var(--text-xs);
    color: var(--color-grey-dark);
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: var(--color-gold);
}

/* --------------------------------------------
   FORMS
   -------------------------------------------- */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.form-label .required {
    color: var(--color-gold);
    margin-left: 2px;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.125rem;
    background: var(--color-white);
    border: 1px solid var(--color-dark-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-dark);
    font-family: var(--font-body);
    font-size: var(--text-base);
    transition: all var(--transition-fast);
    outline: none;
    appearance: none;
}

.form-control:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
}

.form-control::placeholder {
    color: #AAAAAA;
}

.form-control option {
    background: var(--color-white);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: var(--color-gold);
    cursor: pointer;
    margin-top: 2px;
}

.form-check-label {
    font-size: var(--text-sm);
    color: var(--color-grey);
    line-height: 1.6;
}

.form-check-label a {
    color: var(--color-gold);
}

/* --------------------------------------------
   ALERTS & MESSAGES
   -------------------------------------------- */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    margin-bottom: 1.5rem;
    border-left: 4px solid;
}

.alert-success {
    background: rgba(39, 174, 96, 0.08);
    border-color: var(--color-green);
    color: var(--color-green);
}

.alert-error {
    background: rgba(192, 57, 43, 0.08);
    border-color: var(--color-red);
    color: #C0392B;
}

.alert-info {
    background: rgba(212, 160, 23, 0.08);
    border-color: var(--color-gold);
    color: var(--color-gold-dark);
}

/* --------------------------------------------
   BADGE / TAGS
   -------------------------------------------- */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
}

.badge-gold {
    background: var(--color-gold);
    color: var(--color-black);
}

.badge-dark {
    background: var(--color-dark-card);
    color: var(--color-grey);
    border: 1px solid var(--color-dark-border);
}

/* --------------------------------------------
   COOKIE BANNER
   -------------------------------------------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-top: 2px solid var(--color-gold);
    padding: 1.25rem var(--container-pad);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.cookie-banner p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.cookie-banner p a {
    color: var(--color-gold);
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* --------------------------------------------
   SCROLL ANIMATIONS
   -------------------------------------------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* --------------------------------------------
   UTILITIES
   -------------------------------------------- */
.d-none     { display: none; }
.d-block    { display: block; }
.d-flex     { display: flex; }
.d-grid     { display: grid; }

.w-100      { width: 100%; }
.h-100      { height: 100%; }

.mt-sm      { margin-top: var(--space-sm); }
.mt-md      { margin-top: var(--space-md); }
.mt-lg      { margin-top: var(--space-lg); }
.mt-xl      { margin-top: var(--space-xl); }

.mb-sm      { margin-bottom: var(--space-sm); }
.mb-md      { margin-bottom: var(--space-md); }
.mb-lg      { margin-bottom: var(--space-lg); }
.mb-xl      { margin-bottom: var(--space-xl); }

.pt-nav     { padding-top: var(--nav-height); }

.separator {
    width: 60px;
    height: 3px;
    background: var(--color-gold);
    margin: 1.5rem auto;
    border-radius: 2px;
}

.separator-left {
    margin: 1.5rem 0;
}

/* --------------------------------------------
   RESPONSIVE
   -------------------------------------------- */
@media (max-width: 1024px) {
    :root {
        --text-5xl: 2.5rem;
        --text-4xl: 2rem;
        --text-3xl: 1.625rem;
    }

    .grid-4 { grid-template-columns: repeat(2, 1fr); }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    :root {
        --text-5xl: 2rem;
        --text-4xl: 1.75rem;
        --text-3xl: 1.5rem;
        --text-2xl: 1.25rem;
        --space-3xl: 4rem;
        --space-4xl: 5rem;
    }

    .navbar-links { display: none; }
    .navbar-cta   { display: none; }
    .hamburger    { display: flex; }

    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .page-hero { height: 300px; }
    .page-hero-simple { height: 220px; }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    :root {
        --container-pad: 1rem;
        --text-5xl: 1.75rem;
        --text-4xl: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: var(--text-xs);
    }

    .btn-lg {
        padding: 0.875rem 1.75rem;
        font-size: var(--text-sm);
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .fade-in,
    .fade-in-left,
    .fade-in-right {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   HOME PAGE STYLES
   ============================================ */

/* ---- HERO ---- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0%   { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.5) 0%,
        rgba(10, 10, 10, 0.7) 50%,
        rgba(10, 10, 10, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 var(--container-pad);
}

.hero-tag {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--color-gold);
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: var(--text-xl);
    color: var(--color-grey);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.hero-scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 2px;
    animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
    0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

/* ---- INTRODUCTION ---- */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.intro-content h2 {
    font-size: var(--text-3xl);
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: var(--text-base);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.intro-content .btn {
    margin-top: 1rem;
}

.intro-image-wrapper {
    position: relative;
}

.intro-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-md);
    position: relative;
    z-index: 2;
}

.intro-image-accent {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-md);
    z-index: 1;
}

/* ---- SERVICES GRID ---- */
.services-grid .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.services-grid .card p {
    flex: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-top: 1rem;
    transition: gap var(--transition-fast);
}

.card-link:hover {
    color: var(--color-gold-light);
    gap: 0.75rem;
}

/* ---- GALLERY TEASER ---- */
.gallery-teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.gallery-teaser-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
}

.gallery-teaser-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-teaser-item:hover img {
    transform: scale(1.08);
}

.gallery-teaser-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.7) 0%,
        transparent 50%
    );
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-teaser-item:hover .gallery-teaser-overlay {
    opacity: 1;
}

.gallery-teaser-overlay span {
    font-size: var(--text-sm);
    color: var(--color-white);
    font-weight: 500;
}

/* Gallery Placeholder */
.placeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.placeholder-item {
    aspect-ratio: 1;
    background: var(--color-grey-light);
    border: 1px solid var(--color-dark-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- VIDEO HIGHLIGHT ---- */
.video-highlight-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--color-grey-light);
    border: 1px solid var(--color-dark-border);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    margin-top: var(--space-md);
    font-size: var(--text-sm);
    color: var(--color-grey-dark);
}

.video-placeholder {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: var(--color-grey-light);
    border: 1px solid var(--color-dark-border);
    border-radius: var(--radius-md);
}

.video-placeholder-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--color-grey-dark);
}

/* ---- FESTIVAL TEASER ---- */
.festival-teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.festival-teaser-content h2 {
    font-size: var(--text-3xl);
    margin-bottom: 1.5rem;
}

.festival-teaser-content p {
    line-height: 1.9;
    margin-bottom: 1rem;
}

.festival-teaser-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.festival-image-stack {
    position: relative;
    height: 450px;
}

.festival-img-1 {
    width: 70%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-md);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.festival-img-2 {
    width: 55%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-md);
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    border: 3px solid var(--color-dark);
    box-shadow: var(--shadow-lg);
}

/* ---- BLOG CARDS ---- */
.blog-card {
    background: var(--color-white);
    border: 1px solid var(--color-dark-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--color-gold);
}

.blog-card-image {
    display: block;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-grey-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-body .badge {
    margin-bottom: 0.75rem;
    font-size: 0.65rem;
}

.blog-card-body h3 {
    font-size: var(--text-lg);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.blog-card-body h3 a {
    color: var(--color-text-dark);
    text-decoration: none;
}

.blog-card-body h3 a:hover {
    color: var(--color-gold);
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: var(--text-xs);
    color: var(--color-grey-dark);
}

.blog-card-meta time,
.blog-card-reading-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-card-body p {
    font-size: var(--text-sm);
    color: var(--color-grey-dark);
    margin-bottom: 0;
}

.blog-card-body .card-link {
    margin-top: 0.75rem;
}

/* ---- TESTIMONIALS ---- */
.testimonials-wrapper {
    max-width: 750px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--color-white);
    border: 1px solid var(--color-dark-border);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    text-align: center;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.testimonial-quote {
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: var(--text-lg);
    font-style: italic;
    line-height: 1.9;
    color: var(--color-grey);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author-info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    color: var(--color-text-dark);
    font-weight: 700;
}

.testimonial-author-info span {
    font-size: var(--text-xs);
    color: var(--color-grey-dark);
}

/* ---- PARTNERS ---- */
.partners-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: opacity var(--transition-normal);
    padding: 1rem;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo img {
    max-height: 50px;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.5);
    transition: filter var(--transition-normal);
}

.partner-logo:hover img {
    filter: grayscale(0%) brightness(1);
}

/* ============================================
   HOME PAGE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .intro-grid {
        gap: var(--space-xl);
    }

    .intro-image-wrapper img {
        height: 380px;
    }

    .festival-teaser-grid {
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }

    .hero-tag {
        font-size: 0.65rem;
        letter-spacing: 3px;
    }

    .hero-tagline {
        font-size: var(--text-base);
    }

    .hero-scroll-indicator {
        display: none;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .intro-image {
        order: -1;
    }

    .intro-image-wrapper img {
        height: 300px;
    }

    .intro-image-accent {
        display: none;
    }

    .gallery-teaser-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .placeholder-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .festival-teaser-grid {
        grid-template-columns: 1fr;
    }

    .festival-image-stack {
        height: 350px;
    }

    .festival-img-1 {
        width: 75%;
        height: 300px;
    }

    .festival-img-2 {
        width: 60%;
        height: 230px;
    }

    .testimonial-card {
        padding: var(--space-lg);
    }

    .testimonial-text {
        font-size: var(--text-base);
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .gallery-teaser-grid {
        grid-template-columns: 1fr;
    }

    .placeholder-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .festival-teaser-buttons {
        flex-direction: column;
    }

    .festival-image-stack {
        height: 300px;
    }

    .festival-img-1 {
        width: 80%;
        height: 250px;
    }

    .festival-img-2 {
        width: 60%;
        height: 200px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

/* Section alternate background */
.section-alt {
    background-color: #F5F5F5;
}

/* Services Intro */
.services-intro {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.services-intro-text {
    font-size: var(--text-lg);
    line-height: 2;
    color: var(--color-text-muted);
}

/* ---- Service Detail Grid ---- */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse > * {
    direction: ltr;
}

.service-detail-content .section-tag {
    font-size: 0.7rem;
    letter-spacing: 4px;
    opacity: 0.6;
}

.service-detail-content h2 {
    font-size: var(--text-3xl);
    margin-bottom: 1.25rem;
    color: var(--color-text-dark);
}

.service-detail-content p {
    font-size: var(--text-base);
    line-height: 2;
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
}

/* ---- Service Checklist ---- */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-top: 0.5rem;
}

.service-list-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-dark-border);
}

.service-list-item:last-child {
    border-bottom: none;
}

.service-list-item svg {
    flex-shrink: 0;
    color: var(--color-gold);
    stroke: var(--color-gold);
}

.service-list-item span {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-dark);
    letter-spacing: 0.3px;
}

/* ---- Service Photo Grid (2x2) ---- */
.service-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-photo-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-sm);
    position: relative;
}

.service-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-photo-item:hover img {
    transform: scale(1.06);
}

/* Photo item overlay on hover */
.service-photo-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.2) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-photo-item:hover::after {
    opacity: 1;
}

/* Placeholder photo items */
.service-photo-item.placeholder {
    background: #F0F0F0;
}

.service-photo-item.placeholder img {
    opacity: 0.9;
}

/* ---- Design Showcase (stacked images) ---- */
.design-showcase {
    position: relative;
    height: 450px;
}

.design-img-1 {
    width: 72%;
    height: 360px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.design-img-2 {
    width: 55%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    border: 4px solid var(--color-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Design showcase placeholder if no images */
.design-showcase-placeholder {
    width: 100%;
    height: 100%;
    background: #F0F0F0;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--color-dark-border);
}

.design-showcase-placeholder svg {
    color: #CCC;
}

/* ---- Videography Dark Section ---- */
.section-video-dark {
    background: #111111;
    padding: var(--space-3xl) 0;
}

.section-video-dark .section-tag {
    color: var(--color-gold);
}

.section-video-dark .service-detail-content h2 {
    color: #FFFFFF;
}

.section-video-dark .service-detail-content p {
    color: #BBBBBB;
}

.section-video-dark .service-list-item {
    border-bottom-color: #2A2A2A;
}

.section-video-dark .service-list-item svg {
    color: var(--color-gold);
    stroke: var(--color-gold);
}

.section-video-dark .service-list-item span {
    color: #CCCCCC;
}

.section-video-dark .btn-outline {
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.section-video-dark .btn-outline:hover {
    background: #FFFFFF;
    color: #111111;
}

/* Service Video Items */
.service-detail-videos {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.service-video-item {
    width: 100%;
}

.video-item-caption {
    margin-top: 0.75rem;
    font-size: var(--text-sm);
    color: #888888;
    text-align: center;
}

/* Video embed in dark section */
.section-video-dark .video-embed {
    background: #1A1A1A;
    border-color: #2A2A2A;
}

.section-video-dark .video-placeholder {
    background: #1A1A1A;
    border-color: #2A2A2A;
}

.section-video-dark .video-placeholder-inner {
    color: #666666;
}

/* ---- Why Choose Us Cards ---- */
.why-grid {
    gap: var(--space-lg);
}

.why-card {
    background: var(--color-white);
    border: 1px solid var(--color-dark-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-gold);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    transform-origin: left;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--color-gold);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: rgba(212, 160, 23, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: var(--color-gold);
    transition: all var(--transition-normal);
}

.why-card:hover .why-icon {
    background: var(--color-gold);
    color: var(--color-white);
}

.why-card:hover .why-icon svg {
    stroke: #FFFFFF;
}

.why-card h3 {
    font-size: var(--text-lg);
    margin-bottom: 0.75rem;
    color: var(--color-text-dark);
}

.why-card p {
    font-size: var(--text-sm);
    color: var(--color-grey);
    line-height: 1.9;
}

/* ---- Service Page Testimonial ---- */
#service-testimonial .testimonial-card {
    border-top: 3px solid var(--color-gold);
}

/* ============================================
   SERVICES PAGE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .service-detail-grid {
        gap: var(--space-xl);
    }

    .design-showcase {
        height: 380px;
    }

    .design-img-1 {
        height: 310px;
    }

    .design-img-2 {
        height: 240px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .service-detail-grid.reverse {
        direction: ltr;
    }

    .service-detail-images,
    .service-detail-videos {
        order: -1;
    }

    .design-showcase {
        height: 340px;
    }

    .design-img-1 {
        width: 75%;
        height: 280px;
    }

    .design-img-2 {
        width: 60%;
        height: 220px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: var(--space-lg);
    }

    .service-list-item {
        padding: 0.375rem 0;
    }
}

@media (max-width: 480px) {
    .services-intro-text {
        font-size: var(--text-base);
    }

    .service-photo-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .service-photo-item {
        aspect-ratio: 16/10;
    }

    .design-showcase {
        height: 300px;
    }

    .design-img-1 {
        width: 80%;
        height: 250px;
    }

    .design-img-2 {
        width: 60%;
        height: 200px;
    }

    .service-list-item span {
        font-size: var(--text-xs);
    }
}

/* ============================================
   GALLERY PAGE STYLES
   ============================================ */

/* ---- GDPR Notice ---- */
.gallery-gdpr-notice {
    background: #FFF9E6;
    border-bottom: 1px solid #F0E0A0;
    padding: 0.75rem 0;
}

.gallery-gdpr-notice p {
    font-size: var(--text-xs);
    color: #8B7000;
    margin: 0;
    text-align: center;
    line-height: 1.6;
}

.gallery-gdpr-notice a {
    color: var(--color-gold-dark);
    font-weight: 600;
    text-decoration: underline;
}

/* ---- Filter Tabs ---- */
.gallery-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.gallery-filter-btn {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-grey);
    background: transparent;
    border: 2px solid var(--color-dark-border);
    border-radius: 30px;
    padding: 0.625rem 1.5rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.gallery-filter-btn:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.gallery-filter-btn.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
}

/* ---- Photo Grid (Masonry) ---- */
.gallery-grid {
    columns: 3;
    column-gap: 10px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: transform var(--transition-normal);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.04);
}

/* Gallery Item Overlay */
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.1) 40%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.gallery-item-caption {
    font-size: var(--text-sm);
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.4;
}

.gallery-item-category {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-gold);
}

.gallery-item-zoom {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    opacity: 0;
    transform: scale(0.8);
    transition: all var(--transition-normal);
}

.gallery-item:hover .gallery-item-zoom {
    opacity: 1;
    transform: scale(1);
}

/* ---- No Results ---- */
.gallery-no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: var(--space-3xl) 0;
    text-align: center;
}

.gallery-no-results p {
    font-size: var(--text-base);
    color: var(--color-grey);
}

/* ---- Empty Gallery ---- */
.gallery-empty {
    border: 2px dashed var(--color-dark-border);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl);
    text-align: center;
}

.gallery-empty-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.gallery-empty h3 {
    font-size: var(--text-xl);
    color: var(--color-text-dark);
}

.gallery-empty p {
    font-size: var(--text-base);
    color: var(--color-grey);
    max-width: 400px;
}

/* ---- Lightbox ---- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
}

.lightbox-content {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    opacity: 0;
    transform: scale(0.95);
    transition: all var(--transition-normal);
}

.lightbox.open .lightbox-content img {
    opacity: 1;
    transform: scale(1);
}

.lightbox-caption {
    margin-top: 1rem;
    font-size: var(--text-sm);
    color: #CCCCCC;
    text-align: center;
    max-width: 600px;
}

.lightbox-counter {
    margin-top: 0.5rem;
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    color: #888888;
    letter-spacing: 2px;
}

/* Lightbox Close Button */
.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 3;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #FFFFFF;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Lightbox Navigation */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #FFFFFF;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

/* ---- Video Grid ---- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.video-grid-item {
    background: #1A1A1A;
    border: 1px solid #2A2A2A;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.video-grid-item:hover {
    border-color: var(--color-gold);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.video-grid-info {
    padding: 1.25rem;
}

.video-grid-info h4 {
    font-size: var(--text-base);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.375rem;
}

.video-grid-info p {
    font-size: var(--text-sm);
    color: #888888;
    margin: 0;
}

/* ============================================
   GALLERY PAGE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .gallery-grid {
        columns: 2;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        columns: 2;
        column-gap: 8px;
    }

    .gallery-item {
        margin-bottom: 8px;
    }

    .gallery-filters {
        gap: 0.375rem;
    }

    .gallery-filter-btn {
        font-size: 0.65rem;
        padding: 0.5rem 1rem;
        letter-spacing: 1px;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 0.75rem;
    }

    .lightbox-next {
        right: 0.75rem;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
    }

    .lightbox-content {
        max-width: 95vw;
    }

    .gallery-item-overlay {
        padding: 0.875rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        columns: 1;
    }

    .gallery-filter-btn {
        padding: 0.5rem 0.875rem;
    }

    .gallery-empty {
        padding: var(--space-xl);
    }
}

/* ============================================
   FESTIVAL COVERAGE PAGE STYLES
   ============================================ */

/* ---- Festival Intro Grid ---- */
.festival-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.festival-intro-content h2 {
    font-size: var(--text-3xl);
    margin-bottom: 1.25rem;
    color: var(--color-text-dark);
}

.festival-intro-content p {
    font-size: var(--text-base);
    line-height: 2;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.festival-intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Festival Notice */
.festival-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(212, 160, 23, 0.06);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-left: 3px solid var(--color-gold);
    border-radius: var(--radius-sm);
}

.festival-notice svg {
    flex-shrink: 0;
    color: var(--color-gold);
    margin-top: 1px;
}

.festival-notice span {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
}

.festival-notice strong {
    color: var(--color-text-dark);
}

/* ---- Coverage Cards ---- */
.coverage-grid {
    gap: var(--space-lg);
}

.coverage-card {
    background: var(--color-white);
    border: 1px solid var(--color-dark-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.coverage-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-gold);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    transform-origin: center;
}

.coverage-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-gold);
}

.coverage-card:hover::before {
    transform: scaleX(1);
}

.coverage-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 160, 23, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: var(--color-gold);
    transition: all var(--transition-normal);
}

.coverage-card:hover .coverage-icon {
    background: var(--color-gold);
    color: var(--color-white);
}

.coverage-card:hover .coverage-icon svg {
    stroke: #FFFFFF;
}

.coverage-card h3 {
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: 0.625rem;
    color: var(--color-text-dark);
}

.coverage-card p {
    font-size: var(--text-sm);
    color: var(--color-grey);
    line-height: 1.8;
}

/* ---- Festivals Showcase ---- */
.festivals-showcase {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.festival-showcase-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    background: var(--color-white);
    border: 1px solid var(--color-dark-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.festival-showcase-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-gold);
}

.festival-showcase-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    min-height: 250px;
}

.festival-showcase-img {
    overflow: hidden;
}

.festival-showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.festival-showcase-img:hover img {
    transform: scale(1.05);
}

.festival-showcase-img.placeholder-img {
    background: #F0F0F0;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 1 / -1;
}

.festival-showcase-info {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.festival-showcase-info h3 {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
}

.festival-showcase-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.festival-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: var(--text-sm);
    color: var(--color-grey);
}

.festival-meta-item svg {
    color: var(--color-gold);
}

.festival-showcase-info p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.festival-showcase-info .card-link {
    margin-top: auto;
}

/* ---- Festival Placeholder ---- */
.festival-placeholder {
    border: 2px dashed var(--color-dark-border);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl);
    text-align: center;
}

.festival-placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.festival-placeholder h3 {
    font-size: var(--text-xl);
    color: var(--color-text-dark);
}

.festival-placeholder p {
    font-size: var(--text-base);
    color: var(--color-grey);
    line-height: 1.9;
}

.festival-placeholder-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ---- Target Audience Cards ---- */
.target-grid {
    gap: var(--space-lg);
}

.target-card {
    background: var(--color-white);
    border: 1px solid var(--color-dark-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.target-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-gold);
}

.target-icon {
    width: 56px;
    height: 56px;
    background: rgba(212, 160, 23, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-sm);
    color: var(--color-gold);
    transition: all var(--transition-normal);
}

.target-card:hover .target-icon {
    background: var(--color-gold);
}

.target-card:hover .target-icon svg {
    stroke: #FFFFFF;
}

.target-card h4 {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.target-card p {
    font-size: var(--text-sm);
    color: var(--color-grey);
    line-height: 1.7;
}

/* ---- How It Works Steps ---- */
.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    text-align: center;
    padding: 0 var(--space-sm);
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 900;
    color: rgba(212, 160, 23, 0.15);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: #FFFFFF;
}

.step-icon svg {
    stroke: #FFFFFF;
}

.step-card h3 {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: var(--text-sm);
    color: var(--color-grey);
    line-height: 1.8;
    max-width: 200px;
    margin: 0 auto;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 4.5rem;
    flex-shrink: 0;
}

/* ============================================
   FESTIVAL COVERAGE PAGE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .festival-intro-grid {
        gap: var(--space-xl);
    }

    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .target-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-connector {
        display: none;
    }

    .steps-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .festival-intro-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .festival-intro-image {
        order: -1;
    }

    .festival-intro-image img {
        height: 280px;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
    }

    .festival-showcase-card {
        grid-template-columns: 1fr;
    }

    .festival-showcase-images {
        min-height: 200px;
    }

    .festival-showcase-info {
        padding: var(--space-lg);
    }

    .target-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .step-card {
        padding: 0;
    }

    .step-card p {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .festival-notice {
        flex-direction: column;
        gap: 0.5rem;
    }

    .festival-placeholder {
        padding: var(--space-xl);
    }

    .festival-placeholder-buttons {
        flex-direction: column;
    }

    .festival-showcase-images {
        grid-template-columns: 1fr;
        min-height: 180px;
    }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* ---- Our Story Section ---- */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-image-label {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: 2.5rem 1.5rem 1.5rem;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.about-image-label strong {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.about-image-label span {
    font-size: var(--text-xs);
    color: var(--color-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.about-story-content h2 {
    font-size: var(--text-3xl);
    margin-bottom: 1.25rem;
    color: var(--color-text-dark);
}

.about-story-content p {
    font-size: var(--text-base);
    line-height: 2;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

/* ---- What We Do (About Page) ---- */
.about-services-grid {
    gap: var(--space-lg);
}

.about-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--color-white);
    border: 1px solid var(--color-dark-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.about-service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-gold);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    transform-origin: center;
}

.about-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-gold);
}

.about-service-card:hover::after {
    transform: scaleX(1);
}

.about-service-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 160, 23, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--color-gold);
    transition: all var(--transition-normal);
}

.about-service-card:hover .about-service-icon {
    background: var(--color-gold);
}

.about-service-card:hover .about-service-icon svg {
    stroke: #FFFFFF;
}

.about-service-card h4 {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.about-service-link {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-top: auto;
    padding-top: 0.75rem;
}

/* ---- Our Reach Section ---- */
.reach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.reach-content h2 {
    font-size: var(--text-3xl);
    margin-bottom: 1.25rem;
    color: var(--color-text-dark);
}

.reach-content p {
    font-size: var(--text-base);
    line-height: 2;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.reach-cities {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reach-region h4 {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}

.reach-city-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.reach-city {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-muted);
    background: #F5F5F5;
    border: 1px solid var(--color-dark-border);
    border-radius: 30px;
    padding: 0.375rem 0.875rem;
}

.reach-city.more {
    background: transparent;
    border-style: dashed;
    color: var(--color-grey);
    font-style: italic;
}

/* Map */
.reach-map-wrapper {
    position: relative;
}

.reach-map-wrapper iframe {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-dark-border);
}

.reach-map-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    font-size: var(--text-xs);
    color: var(--color-grey);
    justify-content: center;
}

.reach-map-label svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

/* ---- Why Partner Section ---- */
.partner-reasons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 900px;
    margin: 0 auto;
}

.partner-reason {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--color-white);
    border: 1px solid var(--color-dark-border);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.partner-reason:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.partner-reason-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(212, 160, 23, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.partner-reason-text h4 {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.25rem;
}

.partner-reason-text p {
    font-size: var(--text-sm);
    color: var(--color-grey);
    line-height: 1.7;
    margin: 0;
}

/* ---- Who We Work With ---- */
.clients-grid {
    gap: var(--space-md);
}

.client-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: var(--space-lg);
    background: var(--color-white);
    border: 1px solid var(--color-dark-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.client-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.client-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 160, 23, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: all var(--transition-normal);
}

.client-card:hover .client-icon {
    background: var(--color-gold);
}

.client-card:hover .client-icon svg {
    stroke: #FFFFFF;
}

.client-card span {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-dark);
}

/* ---- Vision Section ---- */
.vision-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.vision-card {
    text-align: center;
    background: var(--color-white);
    border: 1px solid var(--color-dark-border);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl) var(--space-2xl);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--color-gold-dark), var(--color-gold), var(--color-gold-dark));
}

.vision-card h2 {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 0;
}

.vision-separator {
    width: 60px;
    height: 3px;
    background: var(--color-gold);
    margin: 1.5rem auto;
    border-radius: 2px;
}

.vision-card p {
    font-size: var(--text-lg);
    line-height: 2;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.vision-closing {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: var(--text-xl) !important;
    color: var(--color-gold) !important;
    margin-top: 1.5rem !important;
    letter-spacing: 0.5px;
}

/* ============================================
   ABOUT PAGE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-story-grid {
        gap: var(--space-xl);
    }

    .about-image-wrapper img {
        height: 420px;
    }

    .about-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reach-grid {
        gap: var(--space-xl);
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about-story-image {
        order: -1;
    }

    .about-image-wrapper img {
        height: 350px;
    }

    .about-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reach-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .reach-map {
        order: -1;
    }

    .reach-map-wrapper iframe {
        height: 300px;
    }

    .partner-reasons {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vision-card {
        padding: var(--space-2xl) var(--space-lg);
    }

    .vision-card p {
        font-size: var(--text-base);
    }
}

@media (max-width: 480px) {
    .about-image-wrapper img {
        height: 300px;
    }

    .about-services-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: 1fr;
    }

    .client-card {
        flex-direction: row;
        text-align: left;
        padding: var(--space-md);
    }

    .vision-card {
        padding: var(--space-xl) var(--space-md);
    }

    .reach-city-list {
        gap: 0.375rem;
    }

    .reach-city {
        font-size: var(--text-xs);
        padding: 0.25rem 0.625rem;
    }
}

/* ============================================
   BLOG PAGE STYLES
   ============================================ */

/* ---- Blog Toolbar ---- */
.blog-toolbar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: var(--space-2xl);
}

.blog-search-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 400px;
}

.blog-search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    padding: 0.625rem 1rem;
    background: var(--color-white);
    border: 1px solid var(--color-dark-border);
    border-radius: 30px;
    transition: border-color var(--transition-fast);
}

.blog-search-input-wrapper:focus-within {
    border-color: var(--color-gold);
}

.blog-search-input-wrapper svg {
    flex-shrink: 0;
    color: var(--color-grey);
}

.blog-search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: var(--text-sm);
    color: var(--color-text-dark);
    outline: none;
    font-family: var(--font-body);
}

.blog-search-input::placeholder {
    color: #AAAAAA;
}

.blog-search-clear {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-grey);
    transition: all var(--transition-fast);
}

.blog-search-clear:hover {
    background: #F0F0F0;
    color: var(--color-text-dark);
}

/* Blog Filters */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-filter-btn {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-grey);
    background: transparent;
    border: 2px solid var(--color-dark-border);
    border-radius: 30px;
    padding: 0.5rem 1.25rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    display: inline-block;
}

.blog-filter-btn:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.blog-filter-btn.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #FFFFFF;
}

/* Search Info */
.blog-search-info {
    margin-bottom: var(--space-lg);
    padding: 0.75rem 1.25rem;
    background: rgba(212, 160, 23, 0.06);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: var(--radius-sm);
}

.blog-search-info p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin: 0;
}

.blog-search-info strong {
    color: var(--color-text-dark);
}

/* Category Info */
.blog-category-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--space-lg);
}

.blog-category-count {
    font-size: var(--text-sm);
    color: var(--color-grey);
}

/* Blog Card Dot Separator */
.blog-card-dot {
    color: var(--color-dark-border);
}

/* Blog Empty State */
.blog-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    padding: var(--space-3xl) 0;
}

.blog-empty h3 {
    font-size: var(--text-xl);
    color: var(--color-text-dark);
}

.blog-empty p {
    font-size: var(--text-base);
    color: var(--color-grey);
    max-width: 400px;
}

/* ---- Pagination ---- */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: var(--space-2xl);
    flex-wrap: wrap;
}

.blog-pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-muted);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-dark-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.blog-pagination-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.blog-pagination-numbers {
    display: flex;
    gap: 0.375rem;
}

.blog-pagination-number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-muted);
    text-decoration: none;
    border: 1px solid var(--color-dark-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.blog-pagination-number:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.blog-pagination-number.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #FFFFFF;
}

/* ============================================
   SINGLE BLOG POST STYLES
   ============================================ */

/* ---- Post Hero Image ---- */
.blog-post-hero {
    margin-top: var(--nav-height);
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: #F0F0F0;
}

.blog-post-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---- Post Wrapper ---- */
.blog-post-wrapper {
    max-width: 750px;
    margin: 0 auto;
}

/* Back Link */
.blog-post-back {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-grey);
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: color var(--transition-fast);
}

.blog-post-back:hover {
    color: var(--color-gold);
}

/* Post Title */
.blog-post-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--color-text-dark);
    line-height: 1.2;
    margin: 1rem 0 1.25rem;
}

/* Post Meta */
.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.blog-post-meta time,
.blog-post-reading-time {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: var(--text-sm);
    color: var(--color-grey);
}

.blog-post-meta svg {
    color: var(--color-gold);
}

.blog-post-meta-dot {
    color: var(--color-dark-border);
}

/* Post Divider */
.blog-post-divider {
    width: 100%;
    height: 1px;
    background: var(--color-dark-border);
    margin: 2rem 0;
}

/* ---- Post Content (Rich Text) ---- */
.blog-post-content {
    font-size: var(--text-base);
    line-height: 2;
    color: var(--color-text-muted);
}

.blog-post-content h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 2rem 0 1rem;
}

.blog-post-content h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 1.5rem 0 0.75rem;
}

.blog-post-content h4 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 1.5rem 0 0.75rem;
}

.blog-post-content p {
    margin-bottom: 1.25rem;
    color: var(--color-text-muted);
}

.blog-post-content img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
    box-shadow: var(--shadow-sm);
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 1rem 0 1.25rem 1.5rem;
    color: var(--color-text-muted);
}

.blog-post-content li {
    margin-bottom: 0.5rem;
    list-style: disc;
    line-height: 1.9;
}

.blog-post-content ol li {
    list-style: decimal;
}

.blog-post-content blockquote {
    border-left: 3px solid var(--color-gold);
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    background: rgba(212, 160, 23, 0.04);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--color-text-muted);
}

.blog-post-content a {
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog-post-content a:hover {
    color: var(--color-gold-dark);
}

.blog-post-content strong {
    color: var(--color-text-dark);
    font-weight: 600;
}

/* ---- Share Buttons ---- */
.blog-post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.blog-post-share-label {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-text-dark);
    letter-spacing: 0.5px;
}

.blog-post-share-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid var(--color-dark-border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    background: transparent;
}

.share-whatsapp {
    color: #25D366;
    border-color: #25D366;
}

.share-whatsapp:hover {
    background: #25D366;
    color: #FFFFFF;
}

.share-facebook {
    color: #1877F2;
    border-color: #1877F2;
}

.share-facebook:hover {
    background: #1877F2;
    color: #FFFFFF;
}

.share-copy {
    color: var(--color-text-muted);
    font-family: var(--font-heading);
}

.share-copy:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* ============================================
   BLOG RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .blog-toolbar {
        gap: 1rem;
    }

    .blog-search-form {
        max-width: 100%;
    }

    .blog-filters {
        gap: 0.375rem;
    }

    .blog-filter-btn {
        font-size: 0.65rem;
        padding: 0.375rem 0.875rem;
    }

    .blog-post-hero {
        height: 300px;
    }

    .blog-post-title {
        font-size: var(--text-2xl);
    }

    .blog-post-content {
        font-size: var(--text-sm);
    }

    .blog-post-content h2 {
        font-size: var(--text-xl);
    }

    .blog-post-content h3 {
        font-size: var(--text-lg);
    }

    .blog-post-share {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-pagination {
        gap: 0.5rem;
    }

    .blog-pagination-btn {
        font-size: var(--text-xs);
        padding: 0.375rem 0.75rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .blog-post-hero {
        height: 220px;
    }

    .blog-post-title {
        font-size: var(--text-xl);
    }

    .blog-post-share-buttons {
        flex-direction: column;
        width: 100%;
    }

    .share-btn {
        justify-content: center;
    }

    .blog-pagination-numbers {
        gap: 0.25rem;
    }

    .blog-pagination-number {
        width: 32px;
        height: 32px;
        font-size: var(--text-xs);
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* ---- Contact Grid ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: var(--space-3xl);
    align-items: start;
}

/* ---- Left Side: Contact Info ---- */
.contact-info h2 {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
}

.contact-info > p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.9;
    margin-bottom: 2rem;
}

/* Contact Detail Items */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(212, 160, 23, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.contact-detail-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.contact-detail-label {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-grey);
}

.contact-detail-text a {
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--color-text-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-detail-text a:hover {
    color: var(--color-gold);
}

.contact-detail-text span {
    font-size: var(--text-base);
    color: var(--color-text-dark);
    font-weight: 500;
}

.contact-detail-text small {
    font-size: var(--text-xs);
    color: var(--color-grey);
}

/* WhatsApp Button */
.contact-whatsapp {
    width: 100%;
    justify-content: center;
    margin-bottom: 2rem;
}

/* Social Links */
.contact-social {
    margin-bottom: 2rem;
}

.contact-social-label {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-grey);
    margin-bottom: 0.75rem;
}

.contact-social-links {
    display: flex;
    gap: 0.625rem;
}

.contact-social-links a {
    width: 40px;
    height: 40px;
    background: #F5F5F5;
    border: 1px solid var(--color-dark-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-grey);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.contact-social-links a:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #FFFFFF;
}

/* Response Time */
.contact-response {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    background: rgba(212, 160, 23, 0.06);
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: var(--radius-sm);
}

.contact-response svg {
    flex-shrink: 0;
    color: var(--color-gold);
}

.contact-response span {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    font-weight: 500;
}

/* ---- Right Side: Form ---- */
.contact-form-wrapper {
    background: var(--color-white);
    border: 1px solid var(--color-dark-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.contact-form-header {
    margin-bottom: 1.5rem;
}

.contact-form-header h3 {
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 0.375rem;
}

.contact-form-header p {
    font-size: var(--text-sm);
    color: var(--color-grey);
    margin: 0;
}

/* Form Row (two columns) */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Optional label */
.form-optional {
    font-weight: 400;
    font-size: var(--text-xs);
    color: var(--color-grey);
    text-transform: none;
    letter-spacing: 0;
}

/* Submit Button */
.contact-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.contact-submit-btn svg {
    stroke: currentColor;
}

/* ---- Success Message ---- */
.contact-success {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
}

.contact-success-icon {
    width: 80px;
    height: 80px;
    background: rgba(39, 174, 96, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-green);
}

.contact-success h3 {
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
}

.contact-success p {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    line-height: 1.9;
    max-width: 450px;
    margin: 0 auto;
}

/* ---- Map Section ---- */
.contact-map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-dark-border);
}

.contact-map-wrapper iframe {
    display: block;
    width: 100%;
}

.contact-map-note {
    text-align: center;
    padding: 0.875rem;
    background: var(--color-white);
    font-size: var(--text-sm);
    color: var(--color-grey);
    margin: 0;
    border-top: 1px solid var(--color-dark-border);
}

.contact-map-note svg {
    color: var(--color-gold);
}

/* ============================================
   CONTACT PAGE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .contact-grid {
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .contact-form-wrapper {
        padding: var(--space-lg);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-map-wrapper iframe {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: var(--space-md);
        border-radius: var(--radius-md);
    }

    .contact-detail-item {
        gap: 0.75rem;
    }

    .contact-detail-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .contact-social-links a {
        width: 36px;
        height: 36px;
    }

    .contact-map-wrapper iframe {
        height: 220px;
    }
}