/* =====================================================
   CİSE Ambalaj - Modern Design System
   ===================================================== */

/* CSS Variables */
:root {
    /* Primary Colors - Forest Green */
    --primary: #4a9434;
    --primary-dark: #1a3d2b;
    --primary-light: #5aaa40;

    /* Accent Colors */
    --accent: #6abd45;
    --accent-dark: #4c8c32;
    --accent-hover: #7dd456;
    --gold: #d4a832;

    /* Text Colors */
    --text-dark: #1a3d2b;
    --text-body: #4a5568;
    --text-muted: #718096;
    --text-white: #ffffff;

    /* Background Colors */
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-darker: #f1f5f9;

    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Poppins', sans-serif;

    /* Layout */
    --container-width: 1280px;
    --header-height: 80px;
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* =====================================================
   Top Info Bar
   ===================================================== */
.top-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    font-size: 13px;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.top-bar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar__left {
    display: flex;
    gap: 24px;
}

.top-bar__item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.2s;
}

.top-bar__item:hover {
    color: var(--accent);
}

.top-bar__right {
    display: flex;
    align-items: center;
}

.top-bar__social {
    display: flex;
    gap: 12px;
}

.top-bar__social a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s, transform 0.2s;
}

.top-bar__social a:hover {
    color: var(--accent);
    transform: scale(1.1);
}

/* =====================================================
   Header
   ===================================================== */
.header {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 40px;
}

.header__logo {
    flex-shrink: 0;
}

.header__logo img {
    height: 70px;
    width: auto;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: auto;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.2s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__link:hover,
.nav__link.active {
    color: var(--primary);
}

.nav__link.active {
    font-weight: 600;
}

/* Header Actions */
.header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header__search {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-dark);
    background: rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.header__search:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.header__cta {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--text-white);
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(106, 189, 69, 0.3);
}

.header__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(106, 189, 69, 0.4);
}

/* Dropdown Menu */
.nav__item--dropdown {
    position: relative;
}

.nav__link--dropdown {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    transition: transform 0.2s ease;
}

.nav__item--dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav__dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 720px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.nav__item--dropdown:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
}

.nav__dropdown-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 32px;
}

.nav__dropdown-column {
    min-width: max-content;
}

.nav__dropdown-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav__dropdown-list li {
    margin-bottom: 10px;
}

.nav__dropdown-list a {
    font-size: 14px;
    color: var(--text-body);
    transition: color 0.2s, padding-left 0.2s;
    display: block;
    white-space: nowrap;
}

.nav__dropdown-list a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.nav__dropdown-footer {
    padding: 16px 32px;
    background: var(--bg-light);
    border-radius: 0 0 16px 16px;
}

.nav__dropdown-cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

@media (max-width: 968px) {
    .nav__toggle {
        display: flex;
    }

    .nav__list {
        position: fixed;
        top: 116px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav__list.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav__dropdown {
        position: static;
        transform: none;
        min-width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .nav__item--dropdown:hover .nav__dropdown {
        display: block;
    }

    .nav__dropdown-inner {
        grid-template-columns: 1fr;
    }

    .header__cta {
        display: none;
    }
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
    min-height: auto;
    padding-top: 180px;
    padding-bottom: 120px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(106, 189, 69, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(76, 140, 50, 0.5) 0%, transparent 45%),
        radial-gradient(ellipse at 60% 20%, rgba(212, 168, 50, 0.3) 0%, transparent 40%),
        radial-gradient(ellipse at 40% 80%, rgba(90, 160, 60, 0.35) 0%, transparent 50%),
        linear-gradient(135deg, #2d5a1e 0%, #3d7a2a 30%, #4a9434 60%, #5aaa40 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: 5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 30%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -50px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(212, 168, 50, 0.35) 0%, rgba(212, 168, 50, 0.15) 35%, transparent 70%);
    border-radius: 50%;
    animation: pulse 5s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero__container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.hero__content {
    max-width: 560px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--gold);
    border: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(212, 168, 50, 0.4);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-white);
    margin-bottom: 20px;
}

.hero__title-highlight {
    position: relative;
    display: inline-block;
}

.hero__title-highlight::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold);
    border-radius: 3px;
}

.hero__subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__image {
    position: relative;
}

.hero__image img {
    transform: scale(1.5);
}

.hero__image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(106, 189, 69, 0.4) 0%, rgba(212, 168, 50, 0.2) 40%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
    animation: glow 3s ease-in-out infinite alternate;
}

.hero__image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    z-index: -1;
    filter: blur(25px);
    animation: glow 2.5s ease-in-out infinite alternate-reverse;
}

@keyframes glow {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Particles Canvas */
.hero__particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Scroll Down Arrow */
.hero__scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: bounce 2s infinite;
    z-index: 10;
    transition: color 0.2s;
}

.hero__scroll-down:hover {
    color: var(--gold);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Fade In Animations */
.animate-fadeInUp {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fadeInRight {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Typewriter Effect */
.typewriter::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold);
    border-radius: 3px;
    animation: typewriterUnderline 1.5s ease forwards;
}

@keyframes typewriterUnderline {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@media (max-width: 968px) {
    .hero {
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__image {
        max-width: 350px;
        margin: 0 auto;
    }

    .hero__scroll-down {
        display: none;
    }
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn svg {
    flex-shrink: 0;
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(106, 189, 69, 0.3);
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(106, 189, 69, 0.4);
}

.btn--outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--lg {
    padding: 18px 40px;
    font-size: 16px;
}

.btn--dark {
    background: var(--primary-dark);
    color: var(--text-white);
}

.btn--full {
    width: 100%;
}

/* =====================================================
   Products Carousel
   ===================================================== */
.products-carousel {
    padding: 60px 0;
    background: var(--bg-white);
}

.products-carousel__header {
    text-align: center;
    margin-bottom: 40px;
}

.products-carousel__title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.products-carousel__subtitle {
    font-size: 16px;
    color: var(--text-muted);
}

.products-carousel__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.product-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.product-circle:hover {
    transform: translateY(-8px);
}

.product-circle__image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
    border: 3px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-circle:hover .product-circle__image {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(106, 189, 69, 0.2);
}

.product-circle__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-circle__name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.product-circle__category {
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 968px) {
    .products-carousel__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .products-carousel__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-circle__image {
        width: 100px;
        height: 100px;
    }
}

/* =====================================================
   Section Headers
   ===================================================== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header__badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(106, 189, 69, 0.1);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header__title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-header__description {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   Services Section
   ===================================================== */
.services {
    padding: 80px 0;
    background: var(--bg-light);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.service-card__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-card__description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 968px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services__grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   Stats Section
   ===================================================== */
.stats {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.stats__container {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.stat-item {
    text-align: center;
}

.stat-item__number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item__label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 640px) {
    .stats__container {
        flex-direction: column;
        gap: 32px;
    }
}

/* =====================================================
   Products Grid Section
   ===================================================== */
.products-grid-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card__image {
    height: 200px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.1);
}

.product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: var(--gold);
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
}

.product-card__content {
    padding: 24px;
}

.product-card__category {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.product-card__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.product-card__description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: gap 0.2s;
}

.product-card__link:hover {
    gap: 12px;
    color: var(--accent);
}

@media (max-width: 968px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 0;
}

.footer__container {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    margin-bottom: 20px;
}

.footer__logo img {
    height: 50px;
    width: auto;
}

.footer__description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    transition: all 0.2s;
}

.footer__social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s, padding-left 0.2s;
}

.footer__links a:hover {
    color: var(--accent);
    padding-left: 8px;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer__contact-item svg {
    flex-shrink: 0;
    color: var(--accent);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 968px) {
    .footer__container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer__container {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   Utilities
   ===================================================== */
.text-center {
    text-align: center;
}

.mt-8 {
    margin-top: 32px;
}

/* =====================================================
   FAQ Section
   ===================================================== */
.faq {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq__container {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.faq__item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq__question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    background: white;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq__question:hover {
    color: var(--primary);
}

.faq__question svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq__item.active .faq__question svg {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq__item.active .faq__answer {
    max-height: 200px;
}

.faq__answer p {
    padding: 0 24px 20px;
    color: var(--text-body);
    line-height: 1.7;
}

/* =====================================================
   Blog Section
   ===================================================== */
.blog-section {
    padding: 80px 0;
    background: var(--bg-darker);
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.blog-card__image {
    height: 180px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card__placeholder {
    font-size: 48px;
}

.blog-card__content {
    padding: 24px;
}

.blog-card__date {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}

.blog-card__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card__excerpt {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: color 0.2s;
}

.blog-card__link:hover {
    color: var(--accent);
}

@media (max-width: 968px) {
    .blog__grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   Quick Quote Section
   ===================================================== */
.quick-quote {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.quick-quote__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quick-quote__title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin: 16px 0;
}

.quick-quote__description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.quick-quote__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-quote__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.quick-quote__feature svg {
    color: var(--gold);
}

.quick-quote__form {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(106, 189, 69, 0.1);
}

@media (max-width: 968px) {
    .quick-quote__container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   Scroll Reveal
   ===================================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   Cookie Banner
   ===================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 61, 43, 0.98);
    color: white;
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner__container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner__text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-banner__text a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-banner__buttons {
    display: flex;
    gap: 12px;
}

.cookie-banner__btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-banner__btn--accept {
    background: var(--accent);
    color: white;
    border: none;
}

.cookie-banner__btn--accept:hover {
    background: var(--accent-hover);
}

.cookie-banner__btn--reject {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-banner__btn--reject:hover {
    border-color: white;
}

/* =====================================================
   Back to Top Button
   ===================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(106, 189, 69, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* =====================================================
   Page Content (Non-Home Pages) - Fix Header Overlap
   ===================================================== */
.page-content {
    padding-top: 140px;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 60px 0 40px;
    margin-bottom: 40px;
    margin-top: 116px;
}

.page-header__title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.page-header__subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    margin-top: 8px;
}