:root {
    --dark-crimson: #461e29;
    --gray-orange: #c0a175;
    --text-dark: #333333;
    --text-light: #ffffff;
    --font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: #fcf6ee;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================== */
/*   ABOUT US SECTION          */
/* =========================== */
.about-us {
    padding: 40px 20px 60px;
    background-color: #fcf6ee;
}

.about-heading {
    text-align: center;
    margin-bottom: 30px;
}

.about-heading h2 {
    font-size: 2.8rem;
    color: #461e29;
    font-weight: 400;
}

/* --- TOP IMAGES --- */
.about-images {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    gap: 20px;
    margin-bottom: 50px;
    align-items: start;
}

.image-left {
    border-radius: 20px;
    overflow: hidden;
    height: 220px;
}

.image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-right {
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
}

.image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- CONTENT SECTION --- */
.about-content {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}

.content-left {
    padding-top: 5px;
}

.content-left .sub-title {
    font-size: 12px;
    color: #555;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
}

.content-left h2 {
    font-size: 3rem;
    color: #461e29;
    font-weight: 400;
    line-height: 1.1;
    margin: 0;
}

.content-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.content-col {
    display: flex;
    flex-direction: column;
}

.content-col .line {
    width: 100%;
    height: 2px;
    background-color: #461e29;
    margin-bottom: 40px;
}

.content-col p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.8;
    margin: 0;
}

/* =========================== */
/*   WELLNESS SECTION          */
/* =========================== */
.wellness {
    padding: 40px 20px 60px;
    background-color: #fcf6ee;
}

.wellness-container {
    max-width: 1100px;
    margin: 0 auto;
}

.wellness-header {
    margin-bottom: 30px;
}

.wellness-header .sub-title {
    font-size: 11px;
    color: #555;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
}

.wellness-header h2 {
    font-size: 2.8rem;
    color: #461e29;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 15px;
}

.wellness-header .header-line {
    width: 100%;
    height: 2px;
    background-color: #461e29;
}

/* --- WELLNESS ITEMS --- */
.wellness-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.wellness-item {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 50px;
    align-items: center;
    padding: 30px 0;
}

.wellness-image {
    border-radius: 20px;
    overflow: hidden;
    height: 170px;
    width: 90%;
}

.wellness-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wellness-text {
    display: flex;
    flex-direction: column;
}

.item-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.wellness-text .item-number {
    font-size: 1.8rem;
    color: #461e29;
    font-weight: 500;
}

.wellness-text h3 {
    font-size: 1.5rem;
    color: #461e29;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.wellness-text p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
    margin: 0;
    /*padding-left: 49px;*/
}

.item-divider {
    width: 100%;
    height: 1px;
    background-color: #d4c5b8;
}

/* =========================== */
/*   CTA BANNER                */
/* =========================== */
.cta-banner {
    padding: 20px 20px 40px;
    background-color: #fcf6ee;
}

.cta-banner-wrapper {
    width: 100%;
    height: 300px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    background-image: url('../img/about5.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-banner-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 50px 40px 50px;
}

.cta-banner-content h2 {
    font-size: 2rem;
    color: #461e29;
    font-weight: 500;
    line-height: 1.1;
    max-width: 50%;
}

.cta-btn {
    background-color: #461e29;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
    white-space: nowrap;
}

.cta-btn:hover {
    background-color: #5e2a37;
    transform: translateY(-2px);
}

/* =========================== */
/*   WHATSAPP BUTTON           */
/* =========================== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: 0.3s;
    text-decoration: none;
}

.whatsapp-btn ion-icon {
    font-size: 32px;
    color: #fff;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* =========================== */
/*   FOOTER                    */
/* =========================== */
.footer {
    background-color: #461e29;
    padding: 60px 20px 0;
    border-radius: 30px 30px 0 0;
    margin: 0 20px;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col.about-col {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 32px;
    color: #fff;
}

.footer-logo .logo-text h3 {
    font-size: 20px;
    color: #fff;
    line-height: 1;
    font-weight: 700;
}

.footer-logo .logo-text span {
    font-size: 10px;
    letter-spacing: 1px;
    display: block;
    color: #ccc;
}

.footer-col.about-col p {
    font-size: 0.9rem;
    color: #ddd;
    line-height: 1.6;
}

.footer-col h4 {
    color: #c0a175;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col.contact-col .contact-item {
    margin-bottom: 15px;
}

.footer-col.contact-col .contact-item p {
    font-size: 0.9rem;
    color: #ddd;
    line-height: 1.5;
    margin: 0;
}

.footer-col.contact-col .contact-item .highlight {
    color: #c0a175;
    font-size: 0.9rem;
    display: block;
    margin-top: 3px;
    font-weight: 500;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #c0a175;
}

.footer-bottom {
    position: relative;
    margin-top: 20px;
}

.big-text {
    font-size: 17rem;
    font-weight: 700;
    color: rgba(192, 161, 117, 0.08);
    line-height: 0.8;
    letter-spacing: -5px;
    text-align: left;
    transform: translateY(20px);
    user-select: none;
}

/* ======================================== */
/*   RESPONSIVE - TABLET                    */
/* ======================================== */
@media (max-width: 992px) {
    .about-images {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .image-left {
        height: 180px;
    }
    .image-right {
        height: 250px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .content-left h2 {
        font-size: 2.8rem;
    }
    
    .content-right {
        grid-template-columns: 1fr 1fr;
    }
    
    .wellness-item {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px 0;
    }
    
    .wellness-image {
        height: 180px;
        width: 100%;
    }
    
    .wellness-text h3 {
        font-size: 1.3rem;
    }
    
    .wellness-text p {
        padding-left: 0;
    }
    
    .item-heading {
        flex-direction: row;
    }
    
    .cta-banner-wrapper {
        height: 250px;
        border-radius: 15px;
    }
    
    .cta-banner-content {
        padding: 0 30px 30px 30px;
    }
    
    .cta-banner-content h2 {
        font-size: 1.5rem;
        max-width: 100%;
    }
    
    .footer {
        border-radius: 20px 20px 0 0;
        margin: 0 10px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-col.about-col {
        grid-column: 1 / -1;
        max-width: 100%;
    }
    
    .big-text {
        font-size: 10rem;
    }
}

/* ======================================== */
/*   RESPONSIVE - MOBILE (FIXED)            */
/* ======================================== */
@media (max-width: 576px) {
    .about-us {
        padding: 30px 15px 40px;
    }
    
    .about-heading h2 {
        font-size: 2rem;
    }
    
    .about-images {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .image-left {
        height: 200px;
    }
    .image-right {
        height: 220px;
    }
    
    .about-content {
        gap: 20px;
    }
    
    .content-left {
        text-align: left;
    }
    
    .content-left h2 {
        font-size: 2.2rem;
    }
    
    .content-right {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .content-col .line {
        margin-bottom: 15px;
    }
    
    .content-col p {
        font-size: 0.85rem;
    }
    
    .wellness {
        padding: 30px 15px 40px;
    }
    
    .wellness-header {
        margin-bottom: 20px;
    }
    
    .wellness-header h2 {
        font-size: 1.8rem;
    }
    
    .wellness-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 0;
    }
    
    /* FIX 1: Image height properly reduced for mobile */
    .wellness-image {
        height: 160px; 
        width: 100%;
    }
    
    .item-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .wellness-text .item-number {
        font-size: 1.4rem;
    }
    
    .wellness-text h3 {
        font-size: 1.2rem;
    }
    
    .wellness-text p {
        padding-left: 0;
        font-size: 0.85rem;
    }
    
    .cta-banner {
        padding: 15px 15px 30px;
    }
    
    .cta-banner-wrapper {
        height: 200px;
        border-radius: 12px;
    }
    
    .cta-banner-content {
        padding: 0 20px 25px 20px;
        flex-direction: column;
        align-items: flex-end; /* FIX 2: Button ko Right side le gaya */
        gap: 12px;
    }
    
    .cta-banner-content h2 {
        font-size: 1.3rem;
        align-self: flex-start; /* Text ko Left side rakhne ke liye */
        max-width: 100%;
    }
    
    .cta-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-btn ion-icon {
        font-size: 26px;
    }
    
    .footer {
        border-radius: 15px 15px 0 0;
        margin: 0 5px;
        padding: 40px 15px 0;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-col h4 {
        margin-bottom: 12px;
    }
    
    .big-text {
        font-size: 5rem;
        letter-spacing: -2px;
        transform: translateY(10px);
    }
}