* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    scroll-behavior: smooth;
    background-color: #fff;
}

.sticky{
    position: sticky;
    top: 0;
    z-index: 1000;
}
/* ===== HEADER PART 1: PHONE NUMBER ===== */
.header-part-1 {
    background-color: rgb(168, 17, 17);
    width: 100%;
}

.phone-container {
    text-align: center;
    padding: 4px;
    font-size: 48px;
    color: rgb(26, 26, 26);
    font-weight: bold;
}

/* ===== HEADER PART 2: LOGO AND NAVBAR ===== */
.header-part-2 {
    background-color: white;
    width: 100%;
}

.header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    gap: 40px;
}

/* Logo Section */
.logo-section {
    display: flex;
    justify-content: center;
    flex: 1;
}

.logo {
    width: 210px;
    height: auto;
    font-size: 24px;
}
.logo img {
    width: 100%;
    height: auto;
}

/* Desktop Navigation */
.navbar-desktop {
    display: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: rgb(26, 26, 26);
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 8px;
    border-bottom: 3px solid transparent;
    transition: border-bottom 0.3s ease;
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    border-bottom: 3px solid rgb(168, 17, 17);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    position: absolute;
    right: 20px;
    cursor: pointer;
    font-size: 32px;
    color: rgb(26, 26, 26);
    background: none;
    border: none;
    padding: 10px;
    transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

.menu-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Mobile Navigation */
.navbar-mobile {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: white;
    border-top: 1px solid #e0e0e0;
}

.navbar-mobile.active {
    max-height: 300px;
    position: fixed;
    width: 100%;
    z-index: 99;
}

.nav-links-mobile {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 20px;
    text-align: center;
    gap: 15px;
}

.nav-link-mobile {
    text-decoration: none;
    color: rgb(26, 26, 26);
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 8px;
    border-bottom: 3px solid transparent;
    transition: border-bottom 0.3s ease;
    cursor: pointer;
    display: block;
}

.nav-link-mobile:hover,
.nav-link-mobile.active {
    border-bottom: 3px solid rgb(168, 17, 17);
}

/* ===== DESKTOP LAYOUT (SCREENS >= 768px) ===== */
@media (min-width: 768px) {
    .navbar-desktop {
        display: block;
    }

    .mobile-menu-btn {
        display: none;
    }

    .navbar-mobile {
        display: none;
    }

    .header-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    .logo-section {
        flex: 0 0 auto;
        order: 1;
    }

    .navbar-desktop {
        order: 2;
        width: 100%;
    }

    .nav-links {
        justify-content: center;
    }

    .phone-container {
        font-size: 48px;
        padding: 4px;
    }
}

/* ===== MOBILE LAYOUT (SCREENS < 768px) ===== */
@media (max-width: 767px) {
    .header-content {
        justify-content: space-between;
        flex-direction: row;
        padding: 16px 24px;
        gap: 10px;
    }
    .main-content {
    padding: 00;
}

    .logo-section {
        flex: 1;
        order: 2;
    }

    .mobile-menu-btn {
        order: 3;
    }

    .logo {
        width: 100px;
        font-size: 16px;
    }

    .phone-container {
        font-size: 32px;
        padding: 4px;
        word-break: break-word;
    }

    .nav-links-mobile {
        padding: 15px;
        gap: 12px;
    }

    .nav-link-mobile {
        font-size: 16px;
        display: inline-block;
    }
    .logo-section{
        justify-content: flex-start;
    }
}

/* ===== MAIN CONTENT ===== */
.main-content {
    margin: 0 auto;
}

section {
    padding: 40px;
}

section h1 {
    color: rgb(168, 17, 17);
    margin-bottom: 20px;
    font-size: 36px;
}

section p {
    color: rgb(26, 26, 26);
    line-height: 1.6;
    font-size: 18px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: auto;
    overflow: visible;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 30, 32, 0.5);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Hero Row: 2 Columns */
.hero-row {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.hero-col {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.hero-col-left {
    flex: 0 0 40%;
}

.hero-col-right {
    flex: 1;
    border-radius: 8px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.hero-description {
    color: rgb(255, 0, 21);
    font-size: 32px;
    line-height: 1.8;
    font-weight: 500;
    margin: 0;
    background-color: rgba(168, 17, 17, 0.1);
    padding: 16px;
}

/* Hero Heading */
.hero-heading {
    text-align: center;
    color: rgb(255, 0, 21);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
        margin: 60px 0;
}

/* Buttons Container */
.buttons-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border: none;
        border-radius: 36px;
    cursor: pointer;
    font-size: 32px;
    font-weight: 600;
    transition: all 0.3s 
ease;
    height: 72px;
    font-family: 'Playfair Display', serif;
    line-height: 100%;
}

.btn-whatsapp {
    background-color: transparent;
    padding: 0;
    border-radius: 36px;
    width: 320px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.btn-whatsapp img {
    width: 100%;
    height: auto;
}

.btn-call {
    background-color: rgb(168, 17, 17);
    color: black;
    border: 2px solid rgb(168, 17, 17);
}

.btn-call:hover {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

/* Info Section */
.info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    padding: 30px;
    border-radius: 8px;
}

.info-image {
    flex: 0 0 250px;
    height: 300px;
    width: 420px;
    object-fit: cover;
    border-radius: 8px;
}

.info-text-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-title {
    color: white;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.info-description {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* ===== HERO RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-heading {
        font-size: 36px;
    }

    .info-title {
        font-size: 36px;
    }

    .hero-row {
        flex-direction: column;
    }

    .hero-col-left {
        flex: 1;
    }

    .info-section {
        flex-direction: column;
    }

    .info-image {
        flex: 1;
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 24px;
    }

    .hero-content {
        gap: 20px;
    }

    .hero-row {
        gap: 15px;
    }

    .hero-col-right {
        padding: 20px 0;
    }

    .hero-heading {
        font-size: 36px;
        margin: 0 0 16px;
    }

    .buttons-container {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .btn-whatsapp {
        margin: 0 auto;
    }

    .btn-call {
        width: 100%;
    }

    .info-section {
        flex-direction: column;
        padding: 0;
        gap: 20px;
    }

    .info-title {
        font-size: 24px;
    }

    .info-description {
        font-size: 14px;
    }

    .hero-description {
        font-size: 20px;
        text-align: center;
    }
}

/* ===== ACASA SECTION INSIDE HERO ===== */
.acasa-section {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 60px 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 40px;
}

.acasa-section h2 {
    color: rgb(168, 17, 17);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
}

.acasa-section p {
    color: rgb(26, 26, 26);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.acasa-section p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .acasa-section {
        padding: 40px 20px;
        margin-top: 20px;
    }

    .acasa-section h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .acasa-section p {
        font-size: 16px;
    }

}

/* ===== HOPE SECTION ===== */
.hope-section {
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 8px;
    margin-top: 0;
}

.hope-container {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hope-content {
    flex: 1;
}

.hope-heading {
    color: #FF0011;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hope-subtitle {
    color: #FF0011;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 40px;
}
.hope-text{
     color: #FF0011;
    font-size: 16px;
    line-height: 2;
}
.stats-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.stat-number {
    color: rgb(26, 26, 26);
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    color: rgb(26, 26, 26);
    font-size: 14px;
    line-height: 1.6;
}

.hope-image {
        display: grid;
    max-width: 500px;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hope-image img {
    width: 100%;
    height: auto;
    border-radius: 100px;
    object-fit: cover;
}

.hope-image iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
}

@media (max-width: 1024px) {
    .hope-container {
        flex-direction: column;
        gap: 30px;
    }

    .hope-heading {
        font-size: 36px;
    }

    .stats-row {
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .hope-section {
        padding: 40px 24px;
        margin-top: 0;
    }

    .hope-heading {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hope-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .stats-row {
        gap: 15px;
        flex-direction: column;
    }

    .stat-item {
        min-width: 100px;
    }

    .stat-number {
        font-size: 40px;
    }

    .stat-label {
        font-size: 12px;
    }

    .hope-image {
        min-width: 100%;
        grid-template-columns: 1fr;
    }
    .hope-image img{
        height: 250px;
        object-fit: cover;
    }
    .hope-image iframe {
    aspect-ratio: 16 / 9;
    background-color: black;
}
}

/* ===== TAROT CARDS SECTION ===== */
.tarot-cards-section {
    background-color: #fff;
}

.section-container{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.tarot-cards-title {
    color: #FF0011;
    font-size: 48px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 50px;
    line-height: 1.4;
}

.tarot-card {
    display: flex;
    gap: 50px;
    align-items: center;
    background-color: white;
}

.card-image {
    flex: 0 0 40%;
    min-width: 600px;
}

.card-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
}

.card-heading {
    color: #FF0011;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.card-text {
    color: rgb(26, 26, 26);
    font-size: 24px;
    line-height: 1.4;
    margin: 0;
}
 .tarot-card:first-of-type {
        margin-bottom: 60px;
    }

@media (max-width: 1024px) {
    .tarot-cards-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .tarot-card {
        flex-direction: column;
        gap: 30px;
    }

    .tarot-card:first-of-type {
        margin-bottom: 20px;
    }

    .card-image {
        flex: 1;
        min-width: 100%;
    }

    .card-heading {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .tarot-cards-section {
        padding: 40px 20px;
    }

    .tarot-cards-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .tarot-card {
        padding: 00px;
        gap: 20px;
    }

    .card-heading {
        font-size: 22px;
    }

    .card-text {
        font-size: 16px;
    }
}

/* ===== TESTIMONIALS / REVIEWS ===== */
.testimonials-section {
    background-color: #ffd6d8; /* soft pink */
    padding: 80px 20px;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-title {
    font-size: 48px;
    color: rgb(39, 39, 39);
    margin-bottom: 8px;
    font-weight: 700;
}

.testimonials-subtitle {
    color: rgba(39,39,39,0.7);
    margin-bottom: 36px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    text-align: left;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card .stars {
    color: #111;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: #333;
    line-height: 1.8;
    margin-bottom: 18px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    color: #222;
}

@media (max-width: 1024px) {
    .testimonials-title { font-size: 40px; }
    .testimonials-grid { gap: 28px; }
}

@media (max-width: 768px) {
    .testimonials-section { padding: 40px 16px; }
    .testimonials-title { font-size: 28px; }
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* ===== TIKTOK / VIDEOS SECTION ===== */
.contact-section {
    background: #ffd6d8;
    padding: 80px 20px;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    color: #FF0011;
    margin: 0 0 10px 0;
    text-align: center;
    font-family: 'Playfair Display', serif;
    max-width: 600px;
    margin: 0 auto;
}

.contact-sub {
    font-size: 18px;
    color: rgb(100, 100, 100);
    text-align: center;
    margin: 0 0 40px 0;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 0;
    align-items: center;
}

.contact-form-card {
    background: #F4F4F4;
    padding: 40px;
    border-radius: 14px;
    z-index: 2;
}

.contact-form-card label { display:block; font-size:14px; color:#444; margin-bottom:8px; }
.contact-form-card input, .contact-form-card textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    margin-bottom: 16px;
    font-family: inherit;
}

.contact-form-card textarea { min-height: 130px; resize: vertical; }

.btn-submit {
        background: #1a1a1a;
    color: #fff;
    padding: 18px 32px;
    border-radius: 28px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-family: inherit;
    font-size: 16px;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    object-fit: cover;
    transform: translateX(-24px);
    z-index: 1;
    position: relative;
}

.contact-note { font-size:14px; color:#666; margin-top:12px; }

.tiktok-section {
    background:#fff;
    padding: 80px 20px;
}

.tiktok-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tiktok-title {
    font-size: 48px;
    font-weight: 700;
    color: rgb(26, 26, 26);
    margin: 0 0 16px 0;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.tiktok-subtitle {
    font-size: 18px;
    color: rgb(100, 100, 100);
    text-align: center;
    margin: 0 0 50px 0;
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    align-items: center;
}

.video-item {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    aspect-ratio: 9 / 16;
}

.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 1024px) {
    .tiktok-title { font-size: 40px; }
    .tiktok-subtitle { font-size: 16px; }
    .videos-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
}

@media (max-width: 768px) {
    .tiktok-section { padding: 40px 16px; }
    .tiktok-title { font-size: 28px; }
    .tiktok-subtitle { font-size: 14px; margin-bottom: 30px; }
    .videos-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* Responsive rules for Contact section */
@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr 420px; gap: 30px; }
}

@media (max-width: 768px) {
    .contact-section { padding: 40px 16px; }
    .contact-title { font-size: 28px; }
    .contact-sub { font-size: 14px; margin-bottom: 20px; }
    .contact-grid { grid-template-columns: 1fr; gap: 20px; }
    .contact-image { order: 2; }
    .contact-form-card { order: 1; padding: 24px;  }
}

/* ===== WHATSAPP GALLERY ===== */
.whatsapp-section {
    background-color: #ffffff;
    padding: 60px 20px;
}

.whatsapp-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.whatsapp-title {
    font-size: 40px;
    color: rgb(26,26,26);
    margin-bottom: 60px;
    font-weight: 700;
}/* ===== WHATSAPP SECTION ===== */
.whatsapp-section {
    padding: 80px 20px;
    background: #fff;
}

.whatsapp-container {
    max-width: 1200px;
    margin: 0 auto;
}

.whatsapp-title {
    font-size: 48px;
    font-weight: 700;
    color: rgb(26, 26, 26);
    margin: 0 0 40px 0;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

/* Swiper Container */
.mySwiper {
    width: 100%;
    padding-bottom: 20px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    height: auto;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    background: rgba(168, 17, 17, 0.9);
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 24px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(168, 17, 17, 1);
}

@media (max-width: 1024px) {
    .whatsapp-title { font-size: 36px; }
}

@media (max-width: 768px) {
    .whatsapp-section { padding: 40px 16px; }
    .whatsapp-title { font-size: 24px; margin-bottom: 24px; }
    
    .swiper-slide img {
        object-fit: cover;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 60px;
        height: 60px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 32px;
    }
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background-color: #E5525F;
    padding: 80px 20px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: rgb(229,82,95);
    color: #fff;
    padding: 60px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 360px;
    gap: 24px;
    align-items: start;
}

.footer-left .footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 12px;
}

.footer-desc { color: rgba(255,255,255,0.92); margin-bottom: 20px; }
.footer-socials { display:flex; gap:18px; margin-bottom:26px; }
.social-icon { color: #fff; text-decoration:none; padding:6px 8px; border:1px solid rgba(255,255,255,0.18); border-radius:6px; }
.footer-copy { font-size:13px; opacity:0.9; margin-top: 18px; }

.footer-middle { display:flex; gap:40px; }
.footer-col h4 { font-size:14px; letter-spacing:1px; margin-bottom:10px; }
.footer-col p { margin:6px 0; opacity:0.95; }
.footer-right{
    display: flex;
    flex-direction: column;
}
.footer-right .footer-form { display:flex; flex-direction: column; gap:14px; }
.footer-right input[type="email"] { height: 56px; padding:12px 14px; border-radius:8px; border: none; min-width:240px; }
.footer-right .btn-submit { height: 52px; background:#111; color:#fff; padding:12px 22px; border-radius:28px; border:none; cursor:pointer; }

.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Fixed WhatsApp button */
.whatsapp-fixed {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    z-index: 1200;
    text-decoration: none;
}

.whatsapp-fixed svg { display:block; }

@media (max-width: 768px) {
    .footer-container { grid-template-columns: 1fr; }
    .footer-right .footer-form { justify-content: flex-start; }
    .footer-right input[type="email"] { min-width: 180px; }
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    text-align: center;
}

.services-title {
    color:#fff;
    font-size: 64px;
    line-height: 1.05;
    margin-bottom: 10px;
    font-weight: 700;
}

.services-subtitle {
  font-size: 32px;
    margin-top: 24px;
    margin-bottom: 80px;
    color: #fff;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #ffffff;
    color: rgb(26,26,26);
    padding: 28px;
    text-align: left;
    min-height: 200px;
}

.service-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 12px;
    color: rgb(26,26,26);
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

@media (max-width: 1024px) {
    .services-title { font-size: 48px; }
    .services-subtitle { font-size: 18px; }
    .services-cards { gap: 20px; }
}

@media (max-width: 768px) {
    .services-section { padding: 48px 16px; }
    .services-title { font-size: 36px; }
    .services-subtitle { font-size: 16px; margin-bottom: 24px; }
    .services-cards { grid-template-columns: 1fr; }
    .service-card { padding: 20px; }
    .contact-image img{
        transform: none;
    }
}

/* ===== BLOG / ARTICLES SECTION ===== */
.blog-section {
    background: #fff;
    padding: 80px 20px;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: stretch;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}
.services-subtitle-2{
    font-size: 18px;
    margin-bottom: 20px;
}

.blog-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f5f5f5;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    color: rgb(26, 26, 26);
    margin: 0 0 12px 0;
    font-family: 'Playfair Display', serif;
    line-height: 1.4;
}

.blog-text {
    font-size: 15px;
    color: rgb(80, 80, 80);
    line-height: 1.6;
    margin: 12px 0;
}

.blog-meta {
    font-size: 13px;
    color: rgb(150, 150, 150);
    margin-top: auto;
}

@media (max-width: 1024px) {
    .blog-grid { gap: 32px; }
    .blog-image { height: 240px; }
    .blog-content { padding: 20px; }
    .blog-title { font-size: 18px; }
}

@media (max-width: 768px) {
    .blog-section { padding: 40px 16px; }
    .blog-grid { grid-template-columns: 1fr; gap: 24px; }
    .blog-image { height: 240px; }
    .blog-content { padding: 16px; }
    .blog-title { font-size: 16px; }
    .blog-text { font-size: 14px; }
    .blog-meta { font-size: 12px; }
}

/* ===== ABOUT ANA MARIA SECTION ===== */
.about-ana-section {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 20px;
}

.about-ana-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-ana-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-ana-content {
    padding-right: 20px;
}

.about-ana-title {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px 0;
    line-height: 1.3;
}

.about-ana-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #e0e0e0;
    margin: 0 0 28px 0;
}

.about-ana-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.about-ana-benefits li {
    font-size: 15px;
    line-height: 2;
    color: #d0d0d0;
    margin: 8px 0;
}

.about-ana-closing {
    font-size: 16px;
    line-height: 1.8;
    color: #e0e0e0;
    margin: 0;
    font-weight: 600;
}

.about-ana-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-ana-image img {
    --p: 150px;
    width: 100%;
    aspect-ratio: 2/2.5;
    clip-path: polygon(0 0, calc(100% - var(--p)) 0, 100% 100%, var(--p) 100%);
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

@media (max-width: 1024px) {
    .about-ana-title { font-size: 40px; }
    .about-ana-intro { font-size: 15px; }
    .about-ana-benefits li { font-size: 14px; line-height: 1.8; }
    .about-ana-grid { gap: 40px; }
}

@media (max-width: 768px) {
    .about-ana-section { padding: 40px 16px; }
    .about-ana-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-ana-content { padding-right: 0; }
    .about-ana-title { font-size: 28px; }
    .about-ana-intro { font-size: 14px; }
    .about-ana-benefits li { font-size: 13px; line-height: 1.6; }
    .about-ana-image img { max-width: 100%; aspect-ratio: 1/1; }
}

.about-story-section {
    background: #fde3e3;
    padding: 100px 20px;
}

.about-story-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-story-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 80px;
}

.about-story-content h2 {
    font-size: 64px;
    margin: 0 0 24px;
    color: #1c0f0f;
}

.about-story-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #3f2a2a;
    margin-bottom: 0;
}

.about-story-label {
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 14px;
    color: #b15b5b;
    margin-bottom: 18px;
}

.about-story-btn {
    padding: 16px 40px;
    border-radius: 40px;
    border: 1px solid #1c0f0f;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    font-family: 'Playfair Display', serif;
    min-width: 250px;
    margin-top: 32px;
}

.about-story-btn:hover {
    background: #1c0f0f;
    color: #fde3e3;
}

.about-story-figure {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-story-image {
    width: 100%;
}

.about-story-image img {
    width: 100%;
    display: block;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.about-story-stats {
    position: absolute;
    left: 120px;
    bottom: 60px;
    transform: translateX(-50%);
    display: flex;
    gap: 60px;
    background: rgb(255, 209, 209);
    padding: 24px 48px;
    border-radius: 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    text-align: center;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #d06c6c;
}

.stat-label {
    margin: 6px 0 0;
    font-size: 16px;
    color: #412727;
}

@media (max-width: 1024px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-story-content h2 {
        font-size: 44px;
    }

    .about-story-stats {
       margin-top: 24px;
        width: 100%;
        justify-content: center;
        bottom: -160px;
        left: 50%;
    }
}

@media (max-width: 640px) {
    .about-story-section { padding: 70px 16px; }
    .about-story-content h2 { font-size: 34px; }
    .about-story-content p { font-size: 16px; }
    .about-story-image { padding: 16px; }
    .about-story-stats {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }
    .stat-number { font-size: 30px; }
    .about-story-container{
        padding-bottom: 120px;
    }
}

.faq-section {
    background: #f7c9c9;
    padding: 80px 20px;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) 1.1fr;
    gap: 60px;
    align-items: start;
}

.faq-heading {
    position: sticky;
    top: 120px;
}

.faq-heading .faq-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 16px;
    color: #7a3838;
}

.faq-heading h2 {
    font-size: 64px;
    line-height: 1.1;
    color: #1c0f0f;
    margin-bottom: 24px;
}

.faq-heading p {
    font-size: 18px;
    color: #3c1d1d;
    line-height: 1.7;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.75);
    padding: 28px 32px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(190, 92, 92, 0.12);
}

.faq-item h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #2b1212;
}

.faq-item p {
    font-size: 18px;
    line-height: 1.6;
    color: #4b2626;
}

@media (max-width: 1023px) {
    .faq-container {
        grid-template-columns: 1fr;
    }

    .faq-heading {
        position: static;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .faq-section { padding: 60px 16px; }
    .faq-heading h2 { font-size: 38px; }
    .faq-item {
        padding: 20px;
        border-radius: 18px;
    }
    .faq-item h3 { font-size: 22px; }
    .faq-item p { font-size: 16px; }
}

