/* ============================================
   CSS Variables & Reset
   ============================================ */

   :root {
    /* Colors */
    --primary-maroon: #780000;
    --accent-blue: #669bbc; /* Secondary */
    --accent-blue-darker: #003049; /* Tertiary */
    --accent-yellow: #ffb703; /* Quaternary */
    --accent-red: #c1121f; /* Quinary */
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --white: #FFFFFF;
    --overlay: rgba(0, 0, 0, 0.5);
    
    /* Typography */
    --font-heading: 'Tinos', serif;
    --font-body: 'Tinos', serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max-width: 1200px;
    --container-padding: 0 20px;
    --navbar-height: 200px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Text Selection Highlight */
::selection {
    background: var(--primary-maroon);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-maroon);
    color: var(--white);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 200px;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: height 0.3s ease, box-shadow 0.3s ease;
}

.navbar.condensed {
    height: 100px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    justify-items: center;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    justify-self: start;
    list-style: none;
    margin: 0;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    max-height: 180px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease, max-height 0.3s ease;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-maroon);
    margin: 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
    white-space: nowrap;
}

.navbar.condensed .logo-image {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.navbar.condensed .logo-text {
    opacity: 1;
    max-height: 100px;
    font-size: 1.3rem;
    display: block;
}

.navbar.condensed .logo {
    display: flex;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
}

.nav-social {
    display: flex;
    gap: 1.5rem;
    justify-self: end;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition);
    width: 32px;
    height: 32px;
}

.social-icon:hover {
    color: var(--primary-maroon);
    transform: scale(1.1);
}

.email-link {
    color: var(--accent-blue);
    text-decoration: underline;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-maroon);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-maroon);
    transition: var(--transition);
}

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

.nav-link.active {
    color: var(--primary-maroon);
    position: relative;
}

.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-blue);
    transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: calc(var(--navbar-height, 200px) + 50px);
    transition: margin-top 0.3s ease;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(120, 0, 0, 0.05), rgba(255, 183, 3, 0.1));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.hero-cart-image {
    width: 70%;
    height: auto;
    object-fit: contain;
    max-height: 100%;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-body);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-blue-darker);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 48, 73, 0.4);
}

.btn-primary:hover {
    background: var(--accent-blue-darker);
    /*transform: translateY(-2px);*/
    box-shadow: 0 6px 20px rgba(0, 48, 73, 0.6);
}

.btn-secondary {
    background: var(--white);
    color: var(--accent-blue);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: var(--white);
    /*transform: translateY(-2px);*/
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
}

/* ============================================
   Section Styles
   ============================================ */

section {
    padding: var(--section-padding);
}

/* Decorative Logo Images */
.decorative-logo {
    position: fixed;
    z-index: 999;
    pointer-events: none;
    opacity: 0.2;
    object-fit: contain;
}

.decorative-logo-top-right {
    top: -70px;
    right: -200px;
    height: 140vh;
    width: auto;
    min-height: 1000px;
}

.decorative-logo-bottom-left {
    bottom: -150px;
    left: -250px;
    height: 160vh;
    width: auto;
    min-height: 1200px;
}

.coming-soon-section {
    padding: var(--section-padding);
    margin-top: calc(var(--navbar-height, 200px) - 5px);
    transition: margin-top 0.3s ease;
    background: var(--white);
    text-align: center;
    position: relative;
    z-index: 1;
}

.coming-soon-intro {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 840px;
    margin: -70px auto 0.5rem;
    text-align: left;
    text-indent: 3em;
}

.coming-soon-section .section-header {
    margin-bottom: 3.25rem;
    margin-top: 38px;
}

.coming-soon-title {
    font-size: 32px !important;
}

.coming-soon-subtitle {
    margin-bottom: calc(2rem - 20px);
}

.coming-soon-subtitle p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

.coming-soon-newsletter {
    display: flex;
    justify-content: center;
    margin-top: 0;
}

.coming-soon-newsletter .footer-newsletter-form {
    max-width: 500px;
    width: 100%;
    border: 2px solid rgba(0, 0, 0, 0.2);
    background: var(--white);
}

.coming-soon-newsletter .footer-newsletter-form:focus-within {
    border-color: var(--primary-maroon);
    background: var(--white);
}

.coming-soon-newsletter .footer-newsletter-input {
    color: var(--text-dark);
}

.coming-soon-newsletter .footer-newsletter-input::placeholder {
    color: var(--text-light);
}

.coming-soon-newsletter .footer-newsletter-btn {
    color: var(--white);
    background: var(--accent-blue-darker);
    border-left: 2px solid rgba(0, 0, 0, 0.1);
}

.coming-soon-newsletter .footer-newsletter-btn:hover,
.coming-soon-newsletter .footer-newsletter-btn:active {
    background: var(--accent-blue-darker);
    color: var(--white);
    opacity: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: center;
    line-height: 1.8;
}

/* ============================================
   Elevate Section
   ============================================ */

.elevate-section {
    background: var(--white);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    aspect-ratio: 4/3;
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 2rem;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
}

/* ============================================
   Services Section
   ============================================ */

.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: var(--accent-blue);
    font-weight: 600;
    transition: var(--transition);
}

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

/* ============================================
   Features Section
   ============================================ */

.features-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--white) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials-section {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
    color: var(--accent-yellow);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
    color: var(--accent-blue);
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-darker) 100%);
    color: var(--white);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.signup-section,
.social-section,
.quick-contact {
    margin-bottom: 3rem;
}

.signup-title,
.social-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.signup-description,
.social-description {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-input {
    padding: 1rem;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    color: var(--text-dark);
}

.form-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: var(--transition);
    font-weight: 600;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.quick-contact-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* ============================================
   About Page Sections
   ============================================ */

.about-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: calc(var(--navbar-height, 200px) + 50px);
    transition: margin-top 0.3s ease;
    overflow: hidden;
}

.about-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(120, 0, 0, 0.8) 0%, rgba(120, 0, 0, 0.9) 100%);
    z-index: 2;
}

.about-hero .hero-content {
    position: relative;
    z-index: 3;
}

.story-section {
    padding: var(--section-padding);
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.story-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-section {
    padding: var(--section-padding);
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--text-dark);
    line-height: 1.6;
}

.unique-section {
    padding: var(--section-padding);
    background: var(--white);
}

.unique-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.unique-item {
    padding: 1.5rem;
}

.unique-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 0.75rem;
}

.unique-item p {
    color: var(--text-dark);
    line-height: 1.6;
}

.service-areas-section {
    padding: var(--section-padding);
    background: var(--white);
}

.areas-content {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: center;
}

.areas-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.areas-list li {
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    color: var(--accent-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.areas-content a {
    color: var(--primary-maroon);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.areas-content a:hover {
    text-decoration: underline;
    color: var(--primary-maroon);
}

/* Responsive About Sections */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .unique-content {
        grid-template-columns: 1fr;
    }

    .areas-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   FAQ Page Sections
   ============================================ */

.faq-hero {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-darker) 100%);
    color: var(--white);
    padding: 120px 0 60px;
    text-align: center;
    margin-top: calc(var(--navbar-height, 200px) + 50px);
    transition: margin-top 0.3s ease;
}

.faq-hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.faq-cta-section {
    padding: var(--section-padding);
    background: var(--white);
}

.faq-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.faq-cta-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.faq-cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.faq-link-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 3px solid var(--accent-yellow);
    text-align: center;
}

.faq-link-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.faq-link-text {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-hero-title {
        font-size: 2rem;
    }
}

/* ============================================
   Contact Section
   ============================================ */

.contact-section {
    padding: var(--section-padding);
    background: var(--white);
    margin-top: calc(var(--navbar-height, 200px) - 100px);
    transition: margin-top 0.3s ease;
}

.contact-content {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-item strong {
    color: var(--accent-blue);
    font-weight: 600;
}

.contact-item a {
    color: var(--primary-maroon);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    text-decoration: underline;
    color: var(--primary-maroon);
}

.contact-social {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--white);
}

.contact-social h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    width: 50%;
    max-width: 600px;
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: inline-block;
    margin-right: 0.5rem;
}

.contact-form-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-dark);
    display: inline-block;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form .form-group-row {
    flex-direction: row;
    gap: 1rem;
}

.contact-form .form-group-half {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form label {
    font-weight: 400;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    font-family: var(--font-body);
    color: var(--text-light);
}

.contact-date-input {
    font-family: var(--font-body);
    cursor: pointer;
}

.contact-date-input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.7;
    filter: invert(0.3);
}

.contact-date-input::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.booking-fields {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(0, 0, 0, 0.3);
    background: #f5f5f5;
    box-shadow: 0 0 0 3px rgba(255, 183, 3, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    align-self: center;
    margin: 0 auto;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background: var(--white);
}

.faq-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-blue);
    text-align: center;
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Success Message */
.contact-success-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.contact-success-message .success-content {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.contact-success-message .success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-yellow);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
    font-weight: bold;
}

.contact-success-message h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.contact-success-message p {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* Responsive Contact Section */
@media (max-width: 768px) {
    .contact-content {
        display: flex;
        justify-content: center;
    }

    .contact-image img {
        height: 250px;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 100%;
    }

    .contact-form .form-group-row {
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .contact-success-message .success-content {
        padding: 2rem 1.5rem;
    }
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--primary-maroon);
    color: var(--white);
    padding: 3rem 0 1rem;
    font-family: var(--font-body);
}

.footer-contact-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-contact-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    flex: 1;
    min-width: 150px;
    justify-content: center;
}

.footer-contact-item::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.1rem;
    opacity: 0.8;
    display: inline-block;
}

.footer-phone::before {
    content: "\f095"; /* fa-phone */
}

.footer-email::before {
    content: "\f0e0"; /* fa-envelope */
}

.footer-location::before {
    content: "\f3c5"; /* fa-location-dot (map marker) */
}

.footer-contact-item strong {
    font-weight: 600;
    opacity: 0.9;
}

.footer-contact-item a,
.footer-contact-item span {
    opacity: 0.8;
    transition: var(--transition);
    color: var(--white);
    text-decoration: none;
}

.footer-contact-item a:hover {
    opacity: 1;
    color: var(--primary-maroon);
}

.footer-newsletter {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-newsletter-form {
    display: flex;
    max-width: 500px;
    width: 100%;
    align-items: stretch;
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.footer-newsletter-form:focus-within {
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.15);
}

.footer-newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
}

.footer-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-body);
}

.footer-newsletter-btn {
    padding: 0.75rem 2rem;
    white-space: nowrap;
    border-radius: 0;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    margin: 0;
    background: transparent;
    color: var(--white);
    opacity: 0.8;
    box-shadow: none;
    font-family: var(--font-body);
}

.footer-newsletter-btn:hover,
.footer-newsletter-btn:active {
    background: var(--accent-blue);
    color: var(--white);
    opacity: 1;
    box-shadow: 0 4px 15px rgba(102, 155, 188, 0.4);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    margin-left: -60px;
}

.footer-logo-image {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links,
.footer-contact,
.footer-areas {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a,
.footer-contact li,
.footer-areas li {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-maroon);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    font-size: 1.5rem;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-social-link:hover {
    opacity: 1;
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .coming-soon-intro {
        font-size: 1rem;
        padding: 0 1rem;
        margin-top: -30px;
        text-align: left;
        text-indent: 3em;
    }
    
    .coming-soon-section .section-header {
        padding-top: 60px;
        margin-top: -32px;
        margin-bottom: 2.75rem;
    }
    
    .coming-soon-title {
        font-size: 40px !important;
    }
    
    .navbar {
        height: 80px;
    }

    .navbar.condensed {
        height: 80px;
    }
    
    .navbar.condensed .nav-container {
        min-height: 80px;
        padding: 0.5rem 20px;
        gap: 0.5rem;
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto;
        align-items: center;
    }
    
    .navbar.condensed .nav-toggle {
        grid-row: 1;
        grid-column: 1;
        justify-self: start;
        align-self: center;
    }
    
    .navbar.condensed .logo {
        grid-row: 1;
        grid-column: 2;
        justify-self: center;
    }
    
    .navbar.condensed .nav-social {
        grid-row: 1;
        grid-column: 3;
        justify-self: end;
    }

    .nav-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 0.5rem;
        padding: 0.75rem 20px;
        min-height: 200px;
        align-content: center;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--navbar-height);
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition), top 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        justify-self: stretch;
    }

    .nav-menu.active {
        left: 0;
    }

    .logo {
        grid-row: 1;
        grid-column: 1;
        justify-self: center;
    }

    .logo-image {
        max-height: 100px;
        transition: opacity 0.8s ease, max-height 0.8s ease;
    }

    .logo-text {
        font-size: 1.1rem;
        transition: opacity 0.8s ease, max-height 0.8s ease;
    }

    .navbar.condensed .logo-text {
        font-size: 1rem;
    }
    

    .nav-social {
        grid-row: 2;
        grid-column: 1;
        justify-self: center;
        margin-top: 0;
        padding-top: 0;
    }

    .nav-toggle {
        display: flex;
        position: absolute;
        top: 1rem;
        left: 1rem;
        grid-row: 1;
        grid-column: 1;
        justify-self: start;
        align-self: start;
    }
    
    .navbar.condensed .nav-toggle {
        position: relative;
        top: auto;
        left: auto;
        grid-row: 1;
        grid-column: 1;
        justify-self: start;
        align-self: center;
    }

    .hero-section,
    .about-hero,
    .faq-hero {
        margin-top: 250px;
    }

    .hero-cart-image {
        width: 90%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

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

    .services-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .form-group {
        flex-direction: column;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-contact-item {
        min-width: auto;
    }

    .footer-newsletter-form {
        flex-direction: row;
        max-width: 100%;
        border-radius: 50px;
    }

    .footer-newsletter-input {
        flex: 1;
        min-width: 0;
        width: auto;
    }

    .footer-newsletter-btn {
        flex-shrink: 0;
        padding: 0.75rem 1rem;
        border-left: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 0 50px 50px 0;
        white-space: nowrap;
        max-width: 120px;
        min-width: 80px;
        font-size: 0.9rem;
    }
    
    .coming-soon-newsletter .footer-newsletter-form {
        flex-direction: row;
        max-width: 100%;
    }
    
    .coming-soon-newsletter .footer-newsletter-input {
        flex: 1;
        min-width: 0;
        width: auto;
    }
    
    .coming-soon-newsletter .footer-newsletter-btn {
        flex-shrink: 0;
        padding: 0.75rem 1rem;
        white-space: nowrap;
        max-width: 120px;
        min-width: 80px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}

/* ============================================
   Notification Popup
   ============================================ */

.notification-popup {
    position: fixed;
    top: 35%;
    left: 50%;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    max-width: 400px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.notification-popup.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.notification-success {
    background: var(--accent-blue);
    color: var(--white);
}

.notification-error {
    background: var(--accent-red);
    color: var(--white);
}

@media (max-width: 768px) {
    .notification-popup {
        left: 50%;
        right: auto;
        max-width: calc(100% - 40px);
        transform: translate(-50%, -50%) scale(0.8);
    }
    
    .notification-popup.show {
        transform: translate(-50%, -50%) scale(1);
    }
}
