:root {
    --primary-red: #ea0b0b;
    --text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Merriweather', serif;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
    width: 100%;
}

.top-nav {
    background-color: #fff;
    /* Padding moved to container/inner wrapper if needed, or kept minimal */
    padding: 15px 0; 
}

.top-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
      width: 80px;
    height: 60px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Beau Rivage', cursive;
    color: var(--primary-red);
    font-size: 2rem;
    font-weight: 400;
}

.hamburger {
    display: none;
    background: transparent;
    border: 0;
    font-size: 26px;
    cursor: pointer;
    padding: 6px;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-red);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    background-image: url('images/hero.webp');
    background-size: cover;
    background-position: center;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 0; /* Adjusted padding */
    color: white;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Hero top (first CTA + assistance) positioned top-left */
.hero-top {
    position: absolute;
    top: 24px;
    left: 20px; /* Align with container padding */
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    
}

.hero-cta {
    padding: 8px 18px;
    border-radius: 6px;
}

@media (max-width: 800px) {
    .hero-top { top: 12px; left: 12px; }
    .hero-cta { padding: 8px 14px; }
    .assistance-text { font-size: 13px; max-width: 220px; }
    .assistance-text span { padding: 3px 6px; }
}

/* ============================================
   CALL TO ACTION BOXES
   ============================================ */

.cta-box {
    background-color: var(--primary-red);
    color: white;
    padding: 10px 25px;
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.cta-box span {
    display: block;
    line-height: 1.2;
}

.cta-title {
    font-size: 1.1rem;
    text-transform: uppercase;
}

.cta-phone {
    font-size: 1.2rem;
        text-decoration: none;
    color: #fff;
}

.assistance-text {
    /* background-color: rgba(247, 0, 0, 0.32); Removed background from container */
    font-size: 14px;
    font-weight: 600;
    font-family: 'Lora', serif;
    text-align: center;
    max-width: 600px;
    line-height: 1.6; /* Increased line height for spacing */
    max-width: 174px;
    font-style: italic;
}

.assistance-text span {
    background-color: rgba(247, 0, 0, 0.32);
    color: #fff;
    padding: 4px 8px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1 {
    font-size: 1.5rem;
    line-height: 1.6;
    text-shadow: var(--text-shadow);
    margin: 10px 0;
}

h1 span {
    background-color: rgba(247, 0, 0, 0.32);
    color: white;
       font-family: 'Lora', serif;
    font-weight: 800;
    padding: 2px 8px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    font-style: italic;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.cta-sub{
    display: flex;
    flex-direction: column;
    width: 250px;
    gap: 12px;
}
.cta-sub img{
    width: 100%;
}
/* ============================================
   INFO BAR SECTION
   ============================================ */

.info-bar {
    gap: 20px;
}

.info-bar-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.info-item {
    color: var(--primary-red);
    font-family: 'Merriweather', serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.15rem;
    max-width: 320px;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.info-item svg {
    width: 90px;
    height: 90px;
    display: block;
    fill: var(--primary-red);
}
.content-section {
    background-color: #fff;
    padding: 40px 0;
}

.content-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    text-align: center;
}

.whatsapp-btn img {
    max-width: 250px;
    height: auto;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover img {
    transform: scale(1.05);
}

.content-img {
    width: 100%;
    max-width: 400px;
    height: 500px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

/* ============================================
   VIDEO SECTION
   ============================================ */

.video-section {
    padding: 60px 0;
}

.video-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.video-wrapper {
    width: 100%;
    max-width: 500px;
    position: relative; /* For absolute positioning of button */
    cursor: pointer;
}

.video-wrapper video {
    width: 100%;
    aspect-ratio: 9 / 12;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    display: block;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    cursor: pointer;
    width: 68px;
    height: 48px;
    z-index: 10;
    transition: opacity 0.3s ease, transform 0.2s ease;
    padding: 0;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-wrapper.playing .play-btn {
    opacity: 0;
    pointer-events: none;
}

.text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.section-heading {
    color: var(--primary-red);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.4;
    font-size: 1.3rem;
    font-family: 'Open Sans', sans-serif;
}

.text-wrapper p {
      font-family: 'Lora', serif;
    line-height: 1.6;
    color: #333;
    font-size: 18px;
}

/* ============================================
   ITALIA SECTION
   ============================================ */

.italia-section {
    padding: 0 0 60px;
    background-color: #fff;
}

.italia-container {
    text-align: center;
}

.italia-heading {
    color: var(--primary-red);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.4;
    font-size: 1.8rem;
}

.italia-intro {
    font-family: 'Lora', serif;
    line-height: 1.6;
    color: #333;
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-red {
    color: #ff0000;
}

.italia-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: left;
}

.italia-img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.italia-text {
    flex: 1;
}

.italia-text p {
    font-family: 'Lora', serif;
    line-height: 1.6;
    color: #333;
    font-size: 18px;
    margin-bottom: 15px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    padding: 60px 0;
    background-color: #fff;
}

.services-heading {
    color: var(--primary-red);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 40px;
    line-height: 1.4;
    font-size: 1.8rem;
    text-align: center;
}

.services-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.services-image-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.section-image {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.service-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.service-card img{
    width: 64px;
    height: 64px;
}

.service-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    fill: var(--primary-red);
}

.service-content {
    flex: 1;
}

.service-title {
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
    color: #ea0b0b;
}

.service-text {
    font-family: 'Lora', serif;
    line-height: 1.6;
    color: #333;
    font-size: 16px;
}

/* ============================================
   IMAGE CTA SECTION
   ============================================ */

.image-cta-section {
    padding: 60px 0;
    background-color: #fff;
}

.image-cta-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.section-image {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

/* ============================================
   SERVICES LIST SECTION
   ============================================ */

.services-list-section {
    padding: 60px 0;
    background-color: #fff;
}

.services-list-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.services-list-img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.services-list-content {
    flex: 1;
}

.services-list-title {
    color: var(--primary-red);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.services-list {
    list-style: none;
    padding-left: 0;
}

.services-list li {
    font-family: 'Lora', serif;
    line-height: 1.8;
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.services-list li::before {
    content: "*";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 20px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    padding: 0px 0;
}

.testimonials-container {
    max-width: 900px;
}

.testimonials-heading {
    color: var(--primary-red);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 40px;
    line-height: 1.4;
    font-size: 1.8rem;
    text-align: center;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.testimonial-img {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.testimonial-name {
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.testimonial-location {
    font-family: 'Lora', serif;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    font-style: italic;
}

.testimonial-text {
    font-family: 'Lora', serif;
    line-height: 1.6;
    color: #333;
    font-size: 16px;
}

/* ============================================
   SLIDER SECTION
   ============================================ */

.slider-section {
    padding: 60px 0;
    background-color: #fff;
}

.slider-container {
    position: relative;
    width: 100%;
    padding: 0;
}

.slider-wrapper {
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.3s ease;
}

.slide {
    min-width: 100%;
    flex-shrink: 0;
}

.slide-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(247, 0, 0, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    z-index: 10;
    transition: background 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(192, 0, 0, 0.9);
}

.slider-arrow-left {
    left: 20px;
}

.slider-arrow-right {
    right: 20px;
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   DEVOTION SECTION
   ============================================ */

.devotion-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.devotion-container {
    text-align: center;
    max-width: 900px;
}

.devotion-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto 30px;
    display: block;
    border-radius: 8px;
}

.devotion-title {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 20px;
    line-height: 1.4;
}

.devotion-text {
    font-family: 'Lora', serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    text-align: center;
}

/* ============================================
   VISITORS SECTION
   ============================================ */

.visitors-section {
    padding: 60px 0;
    background-color: #fff;
}

.visitors-container {
    text-align: center;
    max-width: 900px;
}

.visitors-title {
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-red);
    text-transform: uppercase;
    margin-bottom: 30px;
}

.visitors-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto 30px;
    display: block;
    border-radius: 8px;
}

.visitors-text {
    font-family: 'Lora', serif;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

@media (min-width: 801px) {
    .hamburger {
        display: none;
    }

    .nav-links {
        display: flex;
        max-height: none;
        opacity: 1;
        pointer-events: auto;
        margin-left: auto;
    }
}
/* ============================================
   MOBILE RESPONSIVENESS (MAX 800PX)
   ============================================ */

@media (max-width: 800px) {
    .hero{
        min-height: 700px;
        justify-content: end;
    }
    .top-nav {
        position: relative;
        z-index: 100;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        padding: 0;
        width: 100%;
        text-align: center;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        background: #fff;
        border-top: 1px solid #f0f0f0;
        transform: translateY(-10px);
        transition: max-height 320ms cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 280ms ease,
                    transform 320ms cubic-bezier(0.4, 0, 0.2, 1);
        display: none;
    }

    .nav-links.open {
        display: flex;
        max-height: 600px;
        opacity: 1;
        pointer-events: auto;
        padding: 12px 0;
        transform: translateY(0);
    }

    .nav-links a {
        padding: 12px 0;
        display: block;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .hamburger {
        display: block;
        order: 2;
        margin-left: auto;
        z-index: 101;
    }

    .logo {
        order: 1;
    }

    .logo-text {
        display: inline;
        max-width: 175px;
        font-size: 22px;
        text-align: center;
    }

    .info-bar {
        flex-direction: column;
        align-items: center;
    }

    h1 {
        font-size: 1.2rem;
        font-weight: 400;
    }

    h2 {
        font-size: 1rem;
    }
    .top-nav {
    padding: 8px 20px;
}
.cta-box{
    padding: 6px 14px;
    text-align: center;
}
.top-nav .container{
    padding: 0;
}
.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
}
    .service-title {
    font-size: 1.2rem;
}
}
.m-auto{
    margin: 0 auto;
}

/* ============================================
   DESKTOP RESPONSIVENESS (MIN 801PX)
   ============================================ */

@media (min-width: 801px) {
    .content-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 25px;
        text-align: center;
    }

    /* Video Section Desktop */
    .video-container {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 60px;
    }

    .text-wrapper {
        flex: 1;
        text-align: left;
    }

    .video-wrapper {
        flex: 0 0 400px;
    }

    /* Italia Section Desktop */
    .italia-content {
        flex-direction: row;
        gap: 40px;
        align-items: center;
    }

    .italia-img {
        flex: 0 0 400px;
    }

    /* Services Section Desktop - Merged Layout */
    .services-wrapper {
        flex-direction: row;
        gap: 60px;
        align-items: flex-start;
    }

    .services-grid {
        flex: 1;
    }

    .services-image-side {
        flex: 0 0 400px;
    }
.service-card img{
    width: 90px;
    height: 90px;
}
.services-heading,.italia-heading{
    font-size: 2.5rem;
}

    /* Services List Section Desktop */
    .services-list-container {
        flex-direction: row;
        gap: 40px;
        align-items: flex-start;
    }

    .services-list-img {
        flex: 0 0 500px;
    }

    /* Testimonials Section Desktop */
    .testimonial-card {
        flex-direction: row;
         align-items: start;
        text-align: left;
        gap: 25px;
    }

    .testimonial-img {
        flex-shrink: 0;
    }

    /* Slider Section Desktop */
    .slider-container {
        padding: 0 20px;
    }

    .slide {
        min-width: calc(33.333% - 14px);
        margin-right: 20px;
    }

    .slide:last-child {
        margin-right: 0;
    }

    .slide-img {
        border-radius: 8px;
    }

    .slider-track {
        transform: none !important;
    }

    /* Devotion Section Desktop */
    .devotion-title {
        font-size: 2.2rem;
    }

    /* Visitors Section Desktop */
    .visitors-title {
        font-size: 2.5rem;
    }
}

/* ============================================
   SPIRITUALITY SECTION
   ============================================ */
.spirituality {
    width: 100%;
    padding: 40px 20px;
}

.spirituality-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.spirituality-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 0;
    border-radius: 8px;
}

.spirituality-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.spirituality-title {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    color: #ea0b0b;
    margin-bottom: 20px;
    font-weight: 600;
    font-style: italic;
}

.spirituality-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* ============================================
   VISITORS SECTION (FOOTER)
   ============================================ */
.visitors {
    width: 100%;
    padding: 40px 20px;
}

.visitors-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.visitors-title {
    font-family: 'Titillium Web', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.visitors-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.visitors-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: center;
    word-break: break-word;
}

@media (min-width: 801px) {
    .spirituality-content {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 40px;
    }

    .spirituality-image {
        flex-shrink: 0;
        max-width: 350px;
        width: 350px;
    }

    .spirituality-text-wrapper {
        flex: 1;
        justify-content: flex-start;
    }
}

@media (max-width: 800px) {
    .spirituality {
        padding: 30px 15px;
    }

    .spirituality-image {
        max-width: 70%;
        margin: 0 auto;
    }

    .spirituality-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .spirituality-text {
        font-size: 0.95rem;
    }

    .visitors {
        padding: 30px 15px;
    }

    .visitors-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .visitors-image {
        max-width: 100%;
        margin-bottom: 15px;
    }

    .visitors-text {
        font-size: 0.8rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: #333;
    color: #fff;
    padding: 50px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Titillium Web', sans-serif;
    text-transform: uppercase;
}

/* Column 1: CTA & Social */
.footer-cta-sub {
    margin-bottom: 30px;
}

.footer-cta-sub .cta-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-cta-sub .cta-title {
    color: #fff;
    font-size: 1rem;
    font-family: 'Titillium Web', sans-serif;
}

.footer-cta-sub .cta-phone {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
}

.footer-social {
    margin-bottom: 30px;
}

.footer-social h4 {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}
.social-icon img{
    width: 20px;
    height: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0%;
    color: #fff;
    text-decoration: none;
    border: 1px solid #ddd;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    background-color: rgb(224, 162, 80);
    color: #333;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.footer-links a:hover {
    color: rgb(224, 162, 80);
}

/* Column 2: Menu */
.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #ddd;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.footer-menu a:hover {
    color: rgb(224, 162, 80);
}

/* Column 3: Contact Info */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-info p {
    font-size: 0.95rem;
    color: #ddd;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.footer-contact-info a {
    color: rgb(224, 162, 80);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Column 4: Contact Form */
.footer-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid #555;
    color: #333;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgb(224, 162, 80);
}

.footer-btn {
    padding: 12px 24px;
    background-color: rgb(224, 162, 80);
    color: #333;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    font-family: 'Titillium Web', sans-serif;
}

.footer-btn:hover {
    background-color: #dea660;
    transform: translateY(-2px);
}

.footer-btn:active {
    transform: translateY(0);
}

/* Desktop - 4 columns layout */
@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
}

/* Tablet - 2 columns layout */
@media (max-width: 1023px) and (min-width: 769px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile - 1 column layout */
@media (max-width: 768px) {
    .footer {
        padding: 30px 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-col h4 {
        font-size: 1rem;
    }

    .footer-col {
        padding-bottom: 20px;
        border-bottom: 1px solid #555;
        text-align: center;
    }

    .footer-col:last-child {
        border-bottom: none;
    }

    .footer-col h4 {
        text-align: center;
    }

    .footer-cta-sub,
    .footer-social {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer-contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer-links {
        flex-direction: row;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-menu li {
        margin-bottom: 0;
    }

    .footer-form {
        max-width: 100%;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }

    .footer-form {
        gap: 12px;
    }

    .footer-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ============================================
   DESPRE NOI PAGE
   ============================================ */

/* Hero Title Section with Background Image */
.despre-hero {
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.despre-hero-bg {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    min-height: 300px;
    background-image: url('images/bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.despre-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.despre-hero-title {
    
    font-size: 3.5rem;
    color: #fff;
    text-shadow: var(--text-shadow);
    font-weight: 400;
    position: relative;
    z-index: 3;
}

/* Content Section */
.despre-content-section {
    width: 100%;
    padding: 60px 20px;
}

.despre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.despre-image {
    width: 100%;
}

.despre-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.despre-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.despre-title {
    font-family: 'Beau Rivage', serif;
    font-size: 2rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
    color: #ea0b0b;
    margin-bottom: 32px;
}

.despre-text p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.despre-text p strong {
    color: #ea0b0b;
}

/* Responsive - Tablet */
@media (max-width: 1023px) and (min-width: 769px) {
    .despre-hero-title {
        font-size: 2.8rem;
    }

    .despre-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 40px 20px;
    }

    .despre-title {
        font-size: 1.8rem;
    }

    .despre-text p {
        font-size: 0.95rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .despre-hero {
        min-height: 120px;
    }

    .despre-hero-title {
        font-size: 2rem;
    }
    .despre-hero-bg{
        min-height: 120px;
    }

    .despre-content-section {
        padding: 40px 15px;
    }

    .despre-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .despre-image {
        order: 1;
    }

    .despre-text {
        order: 2;
    }

    .despre-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .despre-text p {
        font-size: 0.9rem;
        text-align: center;
    }
    .despre-text .cta-sub{
        margin: 0 auto;
    }
    .c-text{
        font-size: 1.5rem;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-sec {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-main-title {
    font-family: 'Titillium Web', sans-serif;
    font-size: 2.5rem;
    color: #ea0b0b;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: underline;
    margin-bottom: 15px;
}

.contact-phone-link {
    display: inline-block;
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.8rem;
    color: #ea0b0b;
    text-decoration: underline;
    font-weight: 700;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-subtitle {
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.2rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-list li {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #555;
    padding-left: 0;
}

.contact-list li::before {
    content: '- ';
    color: #666;
    font-weight: 600;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #333;
    resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgb(224, 162, 80);
    box-shadow: 0 0 8px rgba(224, 162, 80, 0.2);
}

.contact-btn {
    padding: 14px 32px;
    background-color: rgb(224, 162, 80);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    font-family: 'Titillium Web', sans-serif;
    letter-spacing: 1px;
}

.contact-btn:hover {
    background-color: #dea660;
    transform: translateY(-2px);
}

.contact-btn:active {
    transform: translateY(0);
}

/* Responsive - Tablet */
@media (max-width: 1023px) and (min-width: 769px) {
    .contact-sec {
        padding: 30px;
    }

    .contact-main-title {
        font-size: 2rem;
    }

    .contact-phone-link {
        font-size: 1.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .contact-sec {
        padding: 0px;
    }

    .contact-main-title {
        font-size: 1.8rem;
    }

    .contact-phone-link {
        font-size: 1.3rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    

    .contact-right {
        order: 1;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .contact-list li {
        font-size: 0.9rem;
    }

    .contact-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}
