:root {
    --primary-dark: #1a1a1a;
    --primary-light: #f5f5f5;
    --accent-silver: #c0c0c0;
    --accent-gold: #d4af37;
    --accent-steel: #71797e;
    --border-color: #333333;
    --text-dark: #2a2a2a;
    --text-light: #ffffff;
    --transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Courier New', monospace;
    color: var(--text-dark);
    background: var(--primary-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============ HEADER ============ */
.site-header,
header {
    background: var(--primary-dark);
    padding: 4px clamp(16px, 4vw, 32px);
    min-height: 98px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--accent-silver);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(24px, 5vw, 56px);
    flex-wrap: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    line-height: 0;
    text-decoration: none;
}

.logo img {
    display: block;
    width: clamp(140px, 14vw, 170px);
    height: auto;
    aspect-ratio: 170 / 90;
    object-fit: contain;
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 3vw, 32px);
}

nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 2px;
    color: var(--primary-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.2;
    position: relative;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.35s ease;
}

nav a:hover::after {
    width: 100%;
}

.hamburger {
    appearance: none;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--accent-silver);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============ SLIDER ============ */
.slider-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: var(--primary-dark);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.5) 0%, rgba(26, 26, 26, 0.2) 100%);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem 2rem;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.95), transparent);
    color: var(--text-light);
    animation: slideUp 0.8s ease-out 0.2s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-content h1,
.slide-content h2 {
    font-family: 'Courier New', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-silver);
    letter-spacing: 1px;
}

.slide-content p {
    font-size: 1.1rem;
    max-width: 500px;
    line-height: 1.8;
    color: rgba(245, 245, 245, 0.9);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.slider-dots .dot {
    display: inline-block;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    margin: 0 8px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.slider-dots .dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--accent-silver);
    border-radius: 50%;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.slider-dots .dot.active::after,
.slider-dots .dot:hover::after {
    background-color: #ffffff;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

/* ============ SECTIONS ============ */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

h1,
h2 {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    letter-spacing: 1px;
}

h2 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 2px;
}

h3 {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

/* ============ ABOUT SECTION ============ */
.about-section {
    background: #f5f5f5;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
}

.about-wrapper {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.about-text {
    flex: 2;
    min-width: 260px;
}

.about-text p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    text-align: left;
}

.about-text strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.about-image {
    flex: 1;
    min-width: 220px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.02);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0 1rem;
}

.feature-box {
    background: var(--text-light);
    padding: 1.2rem 1.5rem;
    border-radius: 6px;
    border-left: 4px solid var(--accent-gold);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-box h3 {
    font-size: 1rem;
    letter-spacing: 0.3px;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.feature-box p {
    font-size: 0.9rem;
    color: #333333;
    line-height: 1.5;
}

/* ============ OFFER SECTION ============ */
.offer-section {
    background: #ffffff;
}

.section-title {
    font-family: 'Courier New', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1rem;
    color: #2d3748;
    margin-bottom: 2.5rem;
    max-width: 700px;
    line-height: 1.7;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-bottom: 2rem;
}

.offer-card {
    background: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent-steel);
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-left-color: var(--accent-gold);
}

.offer-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #e8e8e8;
    position: relative;
}

.offer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.offer-card:hover .offer-img img {
    transform: scale(1.05);
}

.offer-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.offer-info h3 {
    font-family: 'Courier New', monospace;
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.offer-info p {
    font-size: 0.9rem;
    color: #333333;
    line-height: 1.6;
    flex: 1;
}

.single-offer {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.single-offer .offer-card {
    max-width: 350px;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: var(--accent-gold);
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--accent-gold);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    z-index: -1;
    transition: left 0.4s ease;
}

.btn:hover {
    color: var(--accent-gold);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn:hover::before {
    left: 0;
}

.btn-center {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* ============ FAQ SECTION ============ */
.faq-section {
    background: #f5f5f5;
}

.faq-container {
    max-width: 800px;
    margin: 2rem auto;
}

.faq-item {
    background: var(--text-light);
    margin-bottom: 1.2rem;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent-gold);
}

.faq-question {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    transition: var(--transition);
    font-weight: 600;
    color: var(--text-dark);
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-toggle {
    color: #8B6914;
    background-color: #F9F9F9;
    font-size: 1.2rem;
    font-weight: 700;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 1.2rem 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* ============ CONTACT SECTION ============ */
.contact-section {
    background: #ffffff;
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-radius: 0 0 20px 20px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1100px;
}

.contact-item {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-bottom: 3px solid var(--accent-gold);
}

.contact-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.contact-item h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-item p,
.contact-section p {
    color: #52595B;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-item strong,
.contact-section strong {
    color: #4E5556;
}

.contact-item a,
.contact-section a {
    display: inline-block;
    min-height: 44px;
    line-height: 44px;
    padding: 0 4px;
    color: #655215;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1rem;
}

.contact-item a:hover,
.contact-section a:hover {
    color: #8B6914;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border: 1px solid var(--accent-silver);
    border-radius: 50%;
    text-decoration: none;
    color: #ffffff;
    background: #2a2a2a;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.social-icon[title="Facebook"] {
    background-color: #1877F2;
}

.social-icon[title="YouTube"] {
    background-color: #FF0000;
}

.social-icon[title="Google Maps"] {
    background-color: #34A853;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* ============ FLAGS SECTION ============ */
.flags-section {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 2.5rem 2rem;
}

.flags-section h3 {
    text-align: center;
    color: var(--accent-silver);
    margin-bottom: 1.8rem;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

.flags-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    max-width: 1100px;
    margin: 0 auto;
}

.flag-card {
    background: transparent;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
}

.flag-card:hover {
    transform: translateY(-2px);
    background: rgba(212, 175, 55, 0.12);
    border-radius: 24px;
}

.flag-card img {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.flag-card:hover img {
    transform: scale(1.05);
}

.flag-card a {
    color: var(--accent-silver);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.7rem;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.flag-card:hover a {
    color: var(--accent-gold);
}

/* ============ FOOTER ============ */
.site-footer {
    background: #1a1a1a;
    color: #cccccc;
    width: 100%;
    border-top: 4px solid #2c5a7a;
}

.footer-main {
    padding: 50px 0 30px;
    text-align: left;
}

.footer-main .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-col {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col strong {
    color: #ffffff;
    display: block;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.footer-col a {
    display: inline-block;
    min-height: 44px;
    line-height: 44px;
    padding: 0 4px;
    color: #dddddd;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #5a9fd4;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #999999;
    line-height: 1.7;
}

.footer-copyright .copyright-main {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.footer-copyright p {
    margin: 0.5rem 0;
}

.footer-copyright a,
.footer-main a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-copyright a:hover,
.footer-main a:hover {
    color: #5a9fd4;
}

.ai-meta {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #888888;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .site-header,
    header {
        min-height: 76px;
        padding: 4px 16px;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
    }

    .logo img {
        width: clamp(120px, 36vw, 140px);
        height: auto;
    }

    nav {
        display: none;
        order: 3;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0 10px;
    }

    nav.active {
        display: flex;
    }

    nav a {
        justify-content: center;
        min-height: 44px;
    }

    .hamburger {
        display: flex;
    }

    .slider-section {
        height: 400px;
    }

    .slide-content {
        padding: 2rem 1rem;
    }

    .slide-content h1,
    .slide-content h2 {
        font-size: 1.6rem;
    }

    .slide-content p {
        font-size: 0.9rem;
        max-width: none;
    }

    h2 {
        font-size: 1.6rem;
    }

    section {
        padding: 3rem 1rem;
    }

    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .flags-grid {
        gap: 0.4rem;
    }

    .flag-card {
        padding: 0.2rem 0.4rem;
    }

    .flag-card img {
        width: 20px;
        height: 14px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: clamp(112px, 42vw, 130px);
    }

    .slide-content h1,
    .slide-content h2 {
        font-size: 1.3rem;
    }

    .offer-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .flags-grid {
        gap: 0.3rem;
    }

    .flag-card a {
        font-size: 0.6rem;
    }

    .flag-card img {
        width: 18px;
        height: 12px;
    }

    .feature-box {
        padding: 1rem;
    }
}
/* ========== IKONA GOOGLE MAPS ========== */
.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.social-icon.social-maps {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-height: 48px;
    border: 2px solid #e0e0e0;
}

.social-icon.social-maps:hover {
    background-color: #34A853;
    color: #ffffff;
    border-color: #34A853;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 168, 83, 0.3);
}

.social-icon-maps {
    font-size: 1.3rem;
}

.social-label {
    letter-spacing: 0.3px;
}