:root {
    --primary: #1B2A4A;
    --primary-light: #2a3f6a;
    --primary-dark: #0f1a30;
    --accent: #8B1A1A;
    --accent-light: #a52a2a;
    --accent-hover: #6d1414;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #333333;
    --text-gray: #666666;
    --border-gray: #DDDDDD;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --heading-weight: 700;
    --body-weight: 400;

    --container-max: 1200px;
    --topbar-height: 36px;
    --header-height: 80px;
    --section-padding: 80px 0;
    --card-radius: 12px;
    --btn-radius: 8px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --transition: 0.3s ease;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    font-weight: var(--body-weight);
    color: var(--dark-gray);
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--heading-weight);
    line-height: 1.3;
    color: var(--primary);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ========== TOP BAR ========== */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    height: var(--topbar-height);
    font-size: 0.8rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    transition: transform var(--transition);
}

.top-bar.hidden {
    transform: translateY(-100%);
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-left a {
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}

.top-bar-left a:hover {
    color: var(--white);
}

.top-bar-left i {
    font-size: 0.7rem;
    color: var(--accent-light);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-right a {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    transition: all var(--transition);
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.top-bar-right a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

/* ========== HEADER ========== */
.main-header {
    position: fixed;
    top: var(--topbar-height);
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    height: var(--header-height);
}

.main-header.scrolled {
    top: 0;
    height: 65px;
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
}

.logo img {
    height: 50px;
    width: auto;
    transition: height var(--transition);
}

.main-header.scrolled .logo img {
    height: 40px;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 3px;
}

.nav-list a {
    padding: 8px 12px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--dark-gray);
    border-radius: var(--btn-radius);
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--accent);
    background: rgba(139, 26, 26, 0.06);
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ========== LANGUAGE DROPDOWN ========== */
.lang-dropdown {
    position: relative;
}

.lang-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--light-gray);
    border: 1px solid var(--medium-gray);
    padding: 7px 12px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark-gray);
    cursor: pointer;
    font-family: var(--font-family);
    transition: all var(--transition);
    white-space: nowrap;
}

.lang-dropdown-toggle:hover {
    background: var(--medium-gray);
}

.lang-dropdown-toggle .fa-globe {
    color: var(--primary);
    font-size: 0.9rem;
}

.lang-arrow {
    font-size: 0.6rem;
    transition: transform var(--transition);
}

.lang-dropdown.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--white);
    border-radius: var(--btn-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--medium-gray);
    min-width: 140px;
    list-style: none;
    padding: 4px;
    display: none;
    z-index: 1050;
}

.lang-dropdown.open .lang-dropdown-menu {
    display: block;
}

.lang-dropdown-menu a {
    display: block;
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark-gray);
    border-radius: 4px;
    transition: all var(--transition);
}

.lang-dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--primary);
}

.lang-dropdown-menu a.active {
    background: var(--primary);
    color: var(--white);
}

.header-cta {
    font-size: 0.85rem !important;
    padding: 10px 20px !important;
    white-space: nowrap;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: all var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--btn-radius);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    line-height: 1;
    font-family: var(--font-family);
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 26, 26, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 18px 42px;
    font-size: 1.1rem;
}

/* ========== SECTIONS ========== */
.section {
    padding: var(--section-padding);
}

.section-light {
    background: var(--light-gray);
}

.section-dark {
    background: var(--primary);
    color: var(--white);
}

.section-parallax {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-parallax::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

.section-parallax > .container {
    position: relative;
    z-index: 2;
}

.section-parallax.parallax-dark::before {
    background: rgba(15, 26, 48, 0.82);
}

.section-parallax.parallax-accent::before {
    background: rgba(139, 26, 26, 0.8);
}

@supports (-webkit-overflow-scrolling: touch) {
    .section-parallax {
        background-attachment: scroll;
    }
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--white);
}

.section-dark p {
    color: rgba(255,255,255,0.85);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-bottom: 15px;
    position: relative;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
}

/* ========== CARDS ========== */
.cards-grid {
    display: grid;
    gap: 30px;
}

.cards-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.cards-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.cards-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.card {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(27, 42, 74, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary);
}

.card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.card-image {
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    border: none;
}

.card-image-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s ease;
}

.card-image:hover .card-image-bg {
    transform: scale(1.08);
}

.card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 26, 48, 0.92) 0%, rgba(15, 26, 48, 0.5) 50%, rgba(15, 26, 48, 0.15) 100%);
    transition: background 0.4s ease;
}

.card-image:hover .card-image-overlay {
    background: linear-gradient(to top, rgba(15, 26, 48, 0.95) 0%, rgba(15, 26, 48, 0.6) 50%, rgba(15, 26, 48, 0.25) 100%);
}

.card-image-content {
    position: relative;
    z-index: 2;
    padding: 30px 25px;
    width: 100%;
}

.card-image-content .card-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-image-content h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.card-image-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding-top: calc(var(--header-height) + var(--topbar-height));
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 26, 48, 0.45) 0%,
        rgba(15, 26, 48, 0.55) 40%,
        rgba(15, 26, 48, 0.7) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 40px 20px;
}

.hero-logo-text {
    display: inline-flex;
    align-items: baseline;
    line-height: 0.85;
    margin-bottom: 4px;
    font-family: 'Oswald', 'Arial Narrow', sans-serif;
    text-transform: uppercase;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.hero-loji {
    font-size: 9rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.hero-e {
    font-size: 7rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0;
    margin-left: -2px;
}

.hero-x {
    font-size: 7rem;
    font-weight: 700;
    color: var(--accent);
    font-style: italic;
    letter-spacing: 0;
    margin-left: -4px;
}

.hero-po {
    font-size: 7rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    margin-left: -2px;
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.hero-city {
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    font-weight: 400;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero-event-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.hero-date-box,
.hero-location-box {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.hero-date-box i,
.hero-location-box i {
    color: var(--accent-light);
    font-size: 1.1rem;
}

.hero-separator {
    color: rgba(255,255,255,0.3);
    font-size: 1.5rem;
    font-weight: 200;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== PAGE HERO ========== */
.page-hero {
    background: var(--primary);
    padding: calc(var(--header-height) + var(--topbar-height) + 60px) 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(139, 26, 26, 0.1);
}

.page-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
}

.page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* ========== FORMS ========== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: var(--font-family);
    border: 2px solid var(--border-gray);
    border-radius: var(--btn-radius);
    transition: border-color var(--transition);
    background: var(--white);
    color: var(--dark-gray);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27, 42, 74, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    padding: 15px 20px;
    border-radius: var(--btn-radius);
    margin-bottom: 20px;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ========== FOOTER ========== */
.main-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 15px;
}

.footer-logo img {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-contact-list i {
    color: var(--accent-light);
    margin-top: 4px;
    width: 16px;
    text-align: center;
}

.footer-contact-list a {
    color: rgba(255,255,255,0.7);
}

.footer-contact-list a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin: 0;
}

/* ========== WHATSAPP ========== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(139, 26, 26, 0.15);
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
}

.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* ========== WHY COLOGNE SECTION ========== */
.why-cologne-section {
    position: relative;
    padding: 100px 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.why-cologne-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 26, 48, 0.88) 0%, rgba(27, 42, 74, 0.78) 50%, rgba(139, 26, 26, 0.6) 100%);
    z-index: 1;
}

.why-cologne-section > .container {
    position: relative;
    z-index: 2;
}

.why-cologne-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-cologne-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-light);
    background: rgba(139, 26, 26, 0.25);
    border: 1px solid rgba(139, 26, 26, 0.4);
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.why-cologne-header h2 {
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.why-cologne-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.why-cologne-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-cologne-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--card-radius);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    overflow: hidden;
}

.why-cologne-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.why-cologne-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(139, 26, 26, 0.35);
}

.why-cologne-card-content h3 {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-cologne-card-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

.why-cologne-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    pointer-events: none;
}

.why-cologne-card:hover .why-cologne-number {
    color: rgba(255, 255, 255, 0.08);
}

/* ========== INCENTIVE SECTION ========== */
.incentive-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--accent);
}

.incentive-section h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 15px;
}

.incentive-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 25px;
}

/* ========== CONTACT SHORT ========== */
.contact-short {
    padding: 60px 0;
    background: var(--light-gray);
}

.contact-short-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.contact-short-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact-short-item i {
    font-size: 2rem;
    color: var(--accent);
}

.contact-short-item h4 {
    margin-bottom: 0;
}

.contact-short-item a {
    color: var(--primary);
    font-weight: 500;
}

.contact-short-item a:hover {
    color: var(--accent);
}

/* ========== FORM PAGE ========== */
.form-section {
    padding: var(--section-padding);
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.form-info h2 {
    margin-bottom: 20px;
}

.form-info p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.form-info-list {
    margin-top: 25px;
}

.form-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.form-info-list i {
    color: var(--accent);
    margin-top: 3px;
}

.form-card {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

/* ========== ABOUT / CONTENT PAGES ========== */
.content-section {
    padding: var(--section-padding);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.content-card {
    padding: 30px;
    border-left: 4px solid var(--accent);
    background: var(--white);
    border-radius: 0 var(--card-radius) var(--card-radius) 0;
    box-shadow: var(--shadow-sm);
}

.content-card h3 {
    margin-bottom: 12px;
}

.content-card p {
    margin-bottom: 0;
}

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mb-0 { margin-bottom: 0; }
.mt-30 { margin-top: 30px; }
.mb-30 { margin-bottom: 30px; }
.position-relative { position: relative; }

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.nav-overlay.active {
    display: block;
}
