/* Fonts handled in index.html for better performance */

:root {
    --bg-color-primary: #fcfbf7;
    --bg-color-secondary: #3b5253;
    --bg-color-third: #f6f9fc;
    --text-primary: #1a1a1a;
    --text-secondary: #3b5253;
    --text-third: #fcfbf7;
    --accent-color: #ffd700;
    --accent-dark: #b08d55;
    --charcoal: #2d2d2d;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(201, 166, 107, 0.2);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Offset for sticky nav */
}

body {
    background-color: var(--bg-color-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    transition: var(--transition);
    background: var(--bg-color-primary);
}

nav.scrolled {
    padding: 1rem 0;
    background: var(--bg-color-primary);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-logo {
    width: 100px;
    margin-right: 0.8rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--accent-color);
    text-decoration: none;
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-secondary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 30%;
}

.mobile-socials {
    display: none;
}

/* Mobile Menu Button */
.mobile-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.mobile-btn span {
    width: 30px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hamburger Animation */
.mobile-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--bg-color-secondary);
    color: var(--bg-color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 10px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: var(--bg-color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(201, 166, 107, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    border-radius: 50px;
}

.btn-outline:hover {
    background: white;
    color: #1a2c42;
}

/* Hero Section */
.hero {
    min-height: 60vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-third);
    background: var(--bg-color-secondary);
    /* Fallback */
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60vh;
    background-color: var(--bg-color-secondary);
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    margin: 8rem 2.5rem 0rem 2.5rem;
    animation: fadeIn 1.5s ease;
}

.hero-subtitle {
    display: block;
    color: #fce850;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-third)
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
    color: var(--text-third);
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Section Padding & Header */
.section-padding {
    padding: 5rem 0;
    background: var(--bg-color-third);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.header-line {
    width: 80px;
    height: 3px;
    background: var(--text-secondary);
    margin: 0 auto;
}

/* Split Section (60/40) */
.split-section {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.split-content {
    flex: 0 0 60%;
}

.split-image {
    flex: 0 0 calc(40% - 4rem);
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.split-image:hover img {
    transform: scale(1.05);
}

.split-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.split-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.split-text p {
    margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
    .split-section {
        flex-direction: column;
        gap: 3rem;
    }

    .split-content,
    .split-image {
        flex: 0 0 100%;
    }

    .split-image {
        height: 400px;
        order: -1;
    }

    .split-title {
        font-size: 2rem;
        text-align: center;
    }

    .split-text {
        text-align: center;
    }
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category-card {
    position: relative;
    height: 500px;
    text-decoration: none;
    overflow: hidden;
}

.card-img-wrapper {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
    position: relative;
    background-color: #eee;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
    transition: var(--transition);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 3rem;
    color: var(--text-third);
    width: 100%;
    transition: var(--transition);
}

.card-content h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.card-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.explore {
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.category-card:hover .card-img-wrapper {
    transform: scale(1.05);
}

.category-card:hover .card-content {
    transform: translateY(-20px);
}

.category-card:hover .card-content p {
    opacity: 1;
    transform: translateY(0);
}

.premium-table tr:hover {
    background: var(--bg-color-third);
}

/* Unused sections to be removed in a major cleanup:
   .split-section, .categories-grid, .premium-table
*/

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    height: 400px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 300px;
    }
}

/* Contact Grid */
.contact-grid-premium {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-grid-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem;
}

.contact-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 0.5rem;
    transition: var(--transition);
    border-radius: 10px;
}

.contact-card:hover {
    background-color: var(--bg-color-primary);
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--bg-color-secondary);
    /* Muted Teal */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    margin-right: 1.5rem;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.contact-card:hover .icon-box {
    background-color: var(--bg-color-secondary);
    transform: scale(1.1);
}

.card-text {
    display: flex;
    flex-direction: column;
}

.contact-card h4 {
    color: #1a2c42;
    /* Dark Navy */
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.contact-card p a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.contact-card p a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .contact-grid-wrapper {
        padding: 2rem;
    }
}

.form-promo-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.6;
    border-left: 3px solid var(--accent-color);
    padding-left: 1.5rem;
    margin-top: 3rem;
}

.contact-form-premium form {
    display: grid;
    gap: 2rem;
    margin-top: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-form-premium input,
.contact-form-premium textarea {
    width: 100%;
    padding: 1.2rem;
    background: var(--bg-color-primary);
    border: 1px solid #eee;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    color: var(--text-secondary);
}

.contact-form-premium input:focus,
.contact-form-premium textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(201, 166, 107, 0.1);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.testimonial-stars {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonial-author {
    border-top: 1px solid var(--accent-color);
    padding-top: 1.5rem;
}

.testimonial-author strong {
    display: block;
    font-family: var(--text-secondary);
    color: #1a2c42;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .offer-card-img img {
        margin: 0 auto;
    }
}

/* Footer */
footer {
    padding: 5rem 0 2rem;
    background-color: var(--bg-color-secondary);
    color: var(--text-third);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 100px;
    margin-right: 15px;
    border-radius: 5px;
    /* Optional, depending on image */
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    /* Dark Navy for Wodzirej */
    line-height: 1.1;
}

.accent-text {
    color: var(--accent-color);
    /* Yellow */
}

.footer-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-third);
    max-width: 400px;
    margin-top: 1rem;
}

/* Footer Columns */
.footer-links-col h3,
.footer-contact-col h3 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links-col ul,
.contact-list {
    list-style: none;
    padding: 0;
}

.footer-links-col li,
.contact-list li {
    margin-bottom: 1rem;
}

.footer-links-col a {
    color: var(--text-third);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.footer-links-col a:hover {
    color: var(--accent-color);
}

/* Social Media Icons */
.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--text-third);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--accent-color);
}

/* Contact Info */
.contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-third);
}

.contact-list a {
    color: var(--text-third);
    text-decoration: none;
    transition: var(--transition);
}

.contact-list a:hover {
    color: var(--accent-color);
}

.contact-icon {
    color: var(--accent-color);
    width: 20px;
}

/* Footer Bottom */
.footer-bottom-container {
    padding-top: 2rem;
    margin-top: 3rem;
    /* Optional: border-top: 1px solid rgba(255,255,255,0.1); */
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #ddd;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-logo-container {
        justify-content: center;
    }

    .footer-brand {
        padding-right: 0;
    }

    .footer-desc {
        margin: 1rem auto;
    }

    .footer-socials {
        justify-content: center;
    }

    .contact-list li {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
}

.lightbox-img-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 90vh;
}

.lightbox-content {
    max-width: 100%;
    max-height: 85vh;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2100;
}

.lightbox-close:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.lightbox-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    padding: 2rem;
    transition: var(--transition);
    z-index: 2100;
}

.lightbox-btn:hover {
    color: var(--accent-color);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .lightbox {
        padding: 0 1rem;
    }

    .lightbox-btn {
        font-size: 2rem;
        padding: 1rem;
    }

    .lightbox-close {
        top: 1rem;
        right: 1.5rem;
        font-size: 2.5rem;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-links {
        background: var(--bg-color-secondary);
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        padding: 100px 3rem;
        gap: 2.5rem;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        z-index: 1000;
        backdrop-filter: blur(15px);
    }

    .nav-links.active {
        right: 0;
        color: var(--text-secondary);
    }

    .mobile-socials {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: auto;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-socials a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--accent-color);
        border-radius: 50%;
        font-size: 1.2rem;
        transition: var(--transition);
    }

    .mobile-socials a:hover {
        background-color: var(--accent-color);
        color: var(--charcoal);
        transform: translateY(-3px);
    }

    .nav-links a {
        font-size: 1.2rem;
        color: var(--text-third);
    }

    .mobile-btn {
        display: flex;
    }

    .categories-grid,
    .footer-grid,
    .contact-grid-premium,
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-promo-text {
        margin-top: 0;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .gallery-grid-masonry {
        columns: 1;
    }

    .section-padding {
        margin: 0 auto;
        background-color: var(--bg-color-third);
    }
}

/* Menu Split Image Adjustment */
.menu-split {
    align-items: flex-end;
}



/* Menu Dish Grid */
.menu-dish-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.menu-dish-item {
    border-radius: 12px;
    overflow: hidden;
    height: 180px;
    box-shadow: var(--shadow);
}

.menu-dish-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.menu-dish-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 480px) {
    .menu-dish-grid {
        grid-template-columns: 1fr;
    }
}

/* Profile Section */
.profile-section {
    background-color: var(--bg-color-secondary);
    /* Teal color matching screenshot */
    color: var(--text-third);
    padding: 5rem 0;
    position: relative;
}

.profile-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.profile-image-col {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
}

.profile-image-wrapper {
    position: relative;
    border-radius: 20px;
    z-index: 1;
}


.profile-img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.profile-content-col {
    flex: 1;
}

.profile-title {
    color: var(--text-third);
    /* Dark Navy for Heading matches screenshot */
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.profile-desc {
    color: var(--text-third);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

@media (max-width: 992px) {
    .profile-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .profile-title {
        text-align: center;
    }

    .profile-desc {
        text-align: justify;
        /* Or center if preferred */
    }

    .profile-image-wrapper::before {
        left: 10px;
        right: -10px;
        bottom: -10px;
    }
}

/* Features Grid Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 1rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--bg-color-secondary);
    /* Light grey/cyan bg */
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-third);
    /* Muted teal icon color */
    font-size: 2rem;
    transition: var(--transition);
}

.feature-item h3 {
    color: #1a2c42;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 700;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Offer Grid Section */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.offer-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.offer-card-img {
    height: 250px;
    width: 100%;
    overflow: hidden;
}

.offer-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.offer-card:hover .offer-card-img img {
    transform: scale(1.05);
}

.offer-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.offer-card-content h3 {
    color: var(--text-secondary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.offer-card-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.offer-features {
    list-style: none;
    margin-top: auto;
    padding: 0;
}

.offer-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.offer-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #0b0c2a;
    /* Dark Navy Checkmark */
    font-weight: 900;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .offer-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(59, 82, 83, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid var(--glass-border);
    color: var(--text-third);
    padding: 1.5rem 0;
    z-index: 2000;
    transition: var(--transition);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-container p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-container a {
    color: var(--accent-color);
    text-decoration: underline;
}

.btn-cookies {
    padding: 0.8rem 2rem;
    background: var(--accent-color);
    color: var(--charcoal);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.btn-cookies:hover {
    background: white;
    color: var(--bg-color-secondary);
}

@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .cookie-consent {
        padding: 2rem 0;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bg-color-secondary);
    color: var(--accent-color);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-color);
    color: var(--charcoal);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 100px;
        /* Offset to avoid overlapping with cookie banner if both are visible */
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Extreme Responsiveness (Down to 200px) */
@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 350px) {
    :root {
        scroll-padding-top: 60px;
    }

    .container {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .offer-card-content {
        padding: 1.5rem;
    }

    .contact-grid-wrapper {
        padding: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid-premium {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 250px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .nav-logo {
        width: 80px;
    }

    .mobile-btn {
        padding: 5px;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.75rem;
    }

    .cookie-container p {
        font-size: 0.8rem;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 120px;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .profile-title {
        font-size: 1.8rem;
    }

    .profile-desc {
        font-size: 0.95rem;
    }
}