* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #C99E59;
    --gold-hover: #B79256;
    --dark: #151514;
    --dark-light: #333333;
    --white: #ffffff;
    --gray: #777777;
    --gray-light: #f5f5f5;
    --border: #e5e5e5;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* ==================== TOP BAR ==================== */
.top-bar {
    background-color: var(--dark);
    padding: 12px 0;
}

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

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    letter-spacing: 0.5px;
}

.top-bar-item svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}

.top-bar-item a {
    color: rgba(255, 255, 255, 0.7);
}

.top-bar-item a:hover {
    color: var(--gold);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-social {
    display: flex;
    gap: 5px;
}

.top-bar-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.top-bar-social a:hover {
    color: var(--gold);
}

.top-bar-social svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ==================== HEADER ==================== */
.header {
    background-color: var(--white);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 65px;
    width: auto;
    margin: -5px 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border);
    padding-left: 15px;
}

.logo-text .name {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 3px;
    line-height: 1.1;
}

.logo-text .tagline {
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 3px;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-list li {
    position: relative;
}

.nav-list a {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-list a:hover {
    color: var(--gold);
}

.nav-list a:hover::after {
    width: 100%;
}

/* CTA Button */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--gold);
    color: var(--white);
    padding: 15px 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background-color: var(--gold-hover);
}

.nav-cta svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--dark);
    transition: 0.3s;
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    height: 500px;
    background: linear-gradient(rgba(58, 36, 20, 0.75), rgba(40, 25, 12, 0.8)),
                url('https://images.unsplash.com/photo-1515542622106-78bda8ba0e5b?w=1920') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-divider {
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin: 0 auto 25px;
}

.hero-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== SERVICES ==================== */
.services {
    padding: 100px 0;
    background-color: #f7f6f4;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-subtitle {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.services-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7f6f4;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: var(--gold);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--gold);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon svg {
    fill: var(--white);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: var(--gold-hover);
}

.service-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(5px);
}

/* ==================== PIO REFUND SECTION ==================== */
.pio-section {
    padding: 100px 0;
    background-color: var(--white);
}

.pio-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pio-content {
    max-width: 540px;
}

.pio-subtitle {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.pio-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 25px;
}

.pio-text {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.pio-amount {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #f7f6f4;
    padding: 20px 30px;
    margin-bottom: 30px;
}

.pio-amount-label {
    font-size: 13px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pio-amount-value {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
}

.pio-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--gold);
    color: var(--white);
    padding: 18px 35px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.pio-btn:hover {
    background-color: var(--gold-hover);
}

.pio-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.pio-features {
    background-color: #f7f6f4;
    padding: 50px;
}

.pio-features h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 25px;
}

.pio-features ul {
    list-style: none;
}

.pio-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
    font-size: 14px;
    color: var(--dark-light);
}

.pio-features li:last-child {
    border-bottom: none;
}

.pio-features li svg {
    width: 20px;
    height: 20px;
    fill: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 992px) {
    .pio-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pio-content {
        max-width: 100%;
    }

    .pio-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .pio-section {
        padding: 60px 0;
    }

    .pio-features {
        padding: 30px 20px;
    }

    .pio-amount {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .pio-amount-value {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .services {
        padding: 60px 0;
    }

    .services-title {
        font-size: 32px;
    }
}

/* ==================== TRANSPORT SECTION ==================== */
.transport {
    background-color: var(--dark);
}

.transport-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.transport-image {
    position: relative;
    overflow: hidden;
}

.transport-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.transport-image-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background-color: var(--gold);
    color: var(--white);
    padding: 25px 30px;
    text-align: center;
    z-index: 1;
}

.transport-image-badge .number {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.transport-image-badge .text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.transport-content {
    padding: 80px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.transport-subtitle {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.transport-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 25px;
}

.transport-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
}

.transport-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.transport-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.transport-feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.transport-feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
}

.transport-feature h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.transport-feature p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.transport-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--gold);
    color: var(--white);
    padding: 18px 35px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.transport-btn:hover {
    background-color: var(--gold-hover);
}

.transport-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

@media (max-width: 992px) {
    .transport-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .transport-image {
        height: 400px;
    }

    .transport-content {
        padding: 60px 30px;
    }

    .transport-title {
        font-size: 32px;
    }

    .transport-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .transport-image {
        height: 300px;
    }

    .transport-content {
        padding: 50px 20px;
    }

    .transport-image-badge {
        bottom: 20px;
        right: 20px;
        padding: 15px 20px;
    }

    .transport-image-badge .number {
        font-size: 32px;
    }
}

.transport {
    max-width: 100%;
    overflow: hidden;
}

/* ==================== POSTUPAK SECTION ==================== */
.postupak {
    padding: 100px 0;
    background-color: var(--white);
}

.postupak-header {
    text-align: center;
    margin-bottom: 60px;
}

.postupak-subtitle {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.postupak-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
}

.postupak-intro {
    max-width: 700px;
    margin: 0 auto;
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
}

.postupak-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.postupak-card {
    background-color: var(--gray-light);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.postupak-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.postupak-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.postupak-card-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--gold);
}

.postupak-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.postupak-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

.postupak-cta {
    text-align: center;
}

.postupak-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--gold);
    color: var(--white);
    padding: 18px 35px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.postupak-btn:hover {
    background-color: var(--gold-hover);
}

.postupak-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

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

    .postupak-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .postupak {
        padding: 60px 0;
    }
}

/* ==================== OPREMA SECTION ==================== */
.oprema {
    padding: 100px 0;
    background-color: var(--gray-light);
}

.oprema-header {
    text-align: center;
    margin-bottom: 60px;
}

.oprema-subtitle {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.oprema-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
}

.oprema-intro {
    max-width: 700px;
    margin: 0 auto;
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
}

.oprema-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.oprema-card {
    position: relative;
    overflow: hidden;
    background-color: var(--white);
}

.oprema-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.oprema-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.oprema-card:hover .oprema-card-image img {
    transform: scale(1.1);
}

.oprema-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.oprema-card:hover .oprema-card-overlay {
    opacity: 1;
}

.oprema-card-content {
    padding: 25px;
}

.oprema-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.oprema-card:hover h3 {
    color: var(--gold);
}

.oprema-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.oprema-cta {
    text-align: center;
}

.oprema-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--gold);
    color: var(--white);
    padding: 18px 35px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.oprema-btn:hover {
    background-color: var(--gold-hover);
}

.oprema-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

@media (max-width: 992px) {
    .oprema-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .oprema-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .oprema {
        padding: 60px 0;
    }

    .oprema-grid {
        grid-template-columns: 1fr;
    }

    .oprema-card-image {
        height: 220px;
    }
}

/* ==================== CONTACT CTA SECTION ==================== */
.contact-cta {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(rgba(58, 36, 20, 0.7), rgba(40, 25, 12, 0.75)),
                url('../images/contact-bg.jpg') center/cover no-repeat fixed;
    text-align: center;
}

.contact-cta-content {
    position: relative;
    z-index: 1;
}

.contact-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.contact-cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.contact-cta-phones {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-cta-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.contact-cta-phone:hover {
    color: var(--gold);
}

.contact-cta-phone svg {
    width: 28px;
    height: 28px;
    fill: var(--gold);
}

.contact-cta-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .contact-cta-title {
        font-size: 28px;
    }

    .contact-cta-phones {
        flex-direction: column;
        gap: 20px;
    }

    .contact-cta-divider {
        display: none;
    }

    .contact-cta-phone {
        font-size: 20px;
    }
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--dark);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
}

.footer-logo {
    margin-bottom: 20px;
    text-align: center;
}

.footer-logo img {
    height: 90px;
    width: auto;
}

.footer-about p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--gold);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    fill: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item p,
.footer-contact-item a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-contact-item a:hover {
    color: var(--gold);
}

.footer-info-item {
    margin-bottom: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-info-item span {
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 60px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==================== CONTAINER ==================== */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
    .nav-list {
        gap: 25px;
    }

    .nav {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .top-bar {
        display: none;
    }

    .nav-list,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 15px;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .header {
        padding: 20px 0;
    }

    .logo img {
        height: 75px;
    }

    .logo-text .name {
        font-size: 22px;
    }

    .hero {
        height: 400px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 12px;
    }
}

/* ==================== PAGE HEADER (INNER PAGES) ==================== */
.page-header {
    background: linear-gradient(rgba(58, 36, 20, 0.8), rgba(40, 25, 12, 0.85)),
                url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1920') center/cover no-repeat;
    padding: 80px 0;
    text-align: center;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.breadcrumb a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 1px;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== CONTENT SECTION ==================== */
.content-section {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.content-main h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 25px;
}

.content-main h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--dark);
    margin: 40px 0 20px;
}

.content-main p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-main ul {
    list-style: none;
    margin-bottom: 30px;
}

.content-main ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--dark-light);
    border-bottom: 1px solid var(--border);
}

.content-main ul li:last-child {
    border-bottom: none;
}

.content-main ul li svg {
    width: 20px;
    height: 20px;
    fill: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight-box {
    background-color: var(--gray-light);
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid var(--gold);
}

.highlight-box p {
    margin-bottom: 0;
    color: var(--dark);
}

.highlight-box .amount {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-top: 10px;
}

/* ==================== SIDEBAR ==================== */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-box {
    background-color: var(--gray-light);
    padding: 35px;
    margin-bottom: 30px;
}

.sidebar-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
}

.sidebar-box p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.sidebar-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--dark);
    font-weight: 500;
}

.sidebar-contact a:hover {
    color: var(--gold);
}

.sidebar-contact svg {
    width: 20px;
    height: 20px;
    fill: var(--gold);
}

.sidebar-btn {
    display: block;
    background-color: var(--gold);
    color: var(--white);
    padding: 18px 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.sidebar-btn:hover {
    background-color: var(--gold-hover);
}

/* ==================== DOWNLOADS SECTION ==================== */
.downloads-section {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.downloads-header {
    text-align: center;
    margin-bottom: 50px;
}

.downloads-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.downloads-header p {
    font-size: 15px;
    color: var(--gray);
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.download-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
}

.download-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--white);
    padding: 18px 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.download-item:hover {
    border-color: var(--gold);
    transform: translateX(5px);
}

.download-item svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
    flex-shrink: 0;
}

.download-item span {
    font-size: 14px;
    color: var(--dark);
}

/* ==================== INNER PAGE RESPONSIVE ==================== */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .downloads-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
    }

    .page-title {
        font-size: 30px;
    }

    .content-section,
    .downloads-section {
        padding: 60px 0;
    }

    .content-main h2 {
        font-size: 26px;
    }

    .downloads-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .highlight-box .amount {
        font-size: 28px;
    }
}

/* ==================== MOBILE NAVIGATION ==================== */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--dark);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
}

.mobile-nav-list li {
    margin-bottom: 20px;
}

.mobile-nav-list a {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--white);
    transition: color 0.3s ease;
}

.mobile-nav-list a:hover {
    color: var(--gold);
}

/* Menu Toggle Animation */
.menu-toggle {
    z-index: 1000;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: var(--white);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background-color: var(--white);
}

body.menu-open {
    overflow: hidden;
}

