/* ===================================
   GLAMIFY - Beauty Salon CSS
   EXACT DESIGN MATCH
   =================================== */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* ===================================
   ROOT VARIABLES - EXACT COLORS
   =================================== */
:root {
    --brown-bg: #7a6960;
    --light-beige: #f5e6e8;
    --light-cream: #f9f3f0;
    --pink-bg: #e8b4d0;
    --light-purple: #d8b4d8;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --text-gray: #666666;
    --white: #ffffff;
    --font-main: 'Montserrat', sans-serif;
}

/* ===================================
   GLOBAL STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    background-color: var(--black);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--white) !important;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin: 0 15px;
    text-transform: uppercase;
}

.navbar-nav .nav-link:hover {
    opacity: 0.8;
}

.navbar-toggler {
    border-color: var(--white);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    height: 80vh;
    background: url('../images/hero.png') center/cover no-repeat;
    /* display: flex; */
    /* align-items: bottom; */
    /* justify-content: center; */
    position: relative;
    background-attachment: fixed;
}

.hero-title {
    font-size: 120px;
    font-weight: 900;
    letter-spacing: 8px;
    color: var(--white);
    text-align: bottom;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 16px;
    letter-spacing: 4px;
    color: var(--white);
    text-align: center;
    font-weight: 400;
}

/* ===================================
   SECTION LABELS
   =================================== */
.section-label {
    display: block;
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--text-gray);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 600;
}

.section-label-light {
    display: block;
    font-size: 10px;
    letter-spacing: 3px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 600;
}

.section-label-dark {
    display: block;
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--black);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 600;
}

.section-heading {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.content-heading {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* ===================================
   WELCOME SECTION
   =================================== */
.welcome-section {
    background-color: var(--light-cream);
    padding: 80px 0;
    text-align: center;
}

.welcome-content {
    max-width: 700px;
    margin: 0 auto;
}

.section-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 35px;
}

/* ===================================
   BUTTONS
   =================================== */
.btn-outline-dark {
    display: inline-block;
    padding: 12px 40px;
    border: 2px solid var(--black);
    color: var(--black);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background-color: var(--black);
    color: var(--white);
}

.btn-black {
    display: inline-block;
    padding: 12px 40px;
    background-color: var(--black);
    color: var(--white);
    border: 2px solid var(--black);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.btn-black:hover {
    background-color: transparent;
    color: var(--black);
}

.btn-outline-black {
    display: inline-block;
    padding: 12px 40px;
    border: 2px solid var(--black);
    color: var(--black);
    background-color: transparent;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-outline-black:hover {
    background-color: var(--black);
    color: var(--white);
}

.btn-book-now {
    display: inline-block;
    padding: 12px 50px;
    background-color: var(--black);
    color: var(--white);
    border: 2px solid var(--black);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.btn-book-now:hover {
    background-color: transparent;
    color: var(--black);
}

.btn-follow {
    display: inline-block;
    padding: 12px 50px;
    background-color: var(--black);
    color: var(--white);
    border: 2px solid var(--black);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-follow:hover {
    background-color: transparent;
    color: var(--black);
}

/* ===================================
   BACKGROUND COLORS
   =================================== */
.bg-brown {
    background-color: var(--brown-bg) !important;
}

.bg-light-beige {
    background-color: var(--light-beige) !important;
}

.bg-light-cream {
    background-color: var(--light-cream) !important;
}

.bg-pink {
    background-color: var(--pink-bg) !important;
}

.bg-light-purple {
    background-color: var(--light-purple) !important;
}

.bg-light {
    background-color: #f9f9f9 !important;
}

/* ===================================
   TEAM GRID
   =================================== */
.team-grid-container {
    padding: 40px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    background-color: var(--white);
}

.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-info {
    background-color: var(--white);
    padding: 15px;
    text-align: left;
}

.team-info i {
    font-size: 18px;
    color: var(--black);
    margin-bottom: 8px;
}

.team-info h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
}

.team-info p {
    font-size: 12px;
    color: var(--text-gray);
    margin: 0;
}

/* ===================================
   BOOKING CARD
   =================================== */
.booking-card {
    padding: 60px 40px;
    border: 2px solid var(--black);
    text-align: center;
    max-width: 600px;
    margin: 100px auto;
}

.booking-heading {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.booking-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 35px;
}

.booking-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   ABOUT SECTION (HOMEPAGE) - EXACT MATCH
   =================================== */
.about-main-section {
    background-color: var(--white);
    /* padding-left: 60px; */
    /* padding-right: 60px; */
}

.about-hero-image {
    position: relative;
    height: 100%;
    min-height: 800px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('https://images.unsplash.com/photo-1602369941643-75102d682d7a?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=689') center/cover no-repeat;
    background-color: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}
.bg-base{
    background-color: #f7d9c9;
}

.about-text-overlay {
    font-size: 150px;
    font-weight: 900;
    letter-spacing: 8px;
    color: var(--white);
    text-transform: uppercase;
    text-align: center;
}

.about-content-wrapper {
    padding: 100px 80px;
    background-color: #f7d9c9;
    height: 84vh;
    
}

.about-text-section {
    margin-bottom: 60px;
    height: 60vh;
}

.about-section-title {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--dark-gray);
}

.about-paragraph {
    font-size: 14px;
    line-height: 2;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.about-values-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.about-value-box {
    text-align: center;
}

.about-value-icon {
    font-size: 50px;
    color: var(--brown-bg);
    margin-bottom: 25px;
}

.about-value-icon i {
    display: block;
}

.about-value-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.about-value-text {
    font-size: 13px;
    line-height: 1.9;
    color: var(--text-gray);
    margin: 0;
}

/* Responsive - About Section */
@media (max-width: 1199px) {
    .about-text-overlay {
        font-size: 120px;
    }
    
    .about-content-wrapper {
        padding: 80px 60px;
    }
}

@media (max-width: 991px) {
    .about-text-overlay {
        font-size: 90px;
    }
    
    .about-hero-image {
        min-height: 600px;
    }
    
    .about-content-wrapper {
        padding: 60px 40px;
    }
    
    .about-values-row {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 575px) {
    .contact-details-box {
        text-align: center;
    }
}


@media (max-width: 767px) {
    .about-text-overlay {
        font-size: 70px;
        letter-spacing: 4px;
    }
    
    .about-hero-image {
        min-height: 400px;
    }
    
    .about-content-wrapper {
        padding: 40px 20px;
    }
    
    .about-section-title {
        font-size: 24px;
    }
    
    .about-text-section {
        margin-bottom: 40px;
    }
    
    .about-values-row {
        margin-top: 60px;
    }
}

@media (max-width: 575px) {
    .about-text-overlay {
        font-size: 50px;
    }
    
    .about-section-title {
        font-size: 20px;
    }
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-main-section {
    background-color: var(--white);
}

.services-hero {
    background: url('https://images.unsplash.com/photo-1487412947147-5cebf100ffc2?w=1920') center/cover no-repeat;
    background-color: var(--black);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero-title {
    font-size: 100px;
    font-weight: 900;
    letter-spacing: 8px;
    color: var(--white);
    text-transform: uppercase;
}

.service-image-container {
    height: 100%;
    min-height: 700px;
}

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

.service-content-box {
    padding: 80px 60px;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-tag {
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: clip;
}

.service-tag-dark {
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    overflow: hidden;
    white-space: nowrap;
}

.service-heading {
    font-size: 50px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--black);
}

.service-heading-dark {
    font-size: 50px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--black);
}

.service-text {
    font-size: 18px;
    line-height: 1.9;
    color: var(--dark-gray);
    margin-bottom: 25px;
}

.service-text-dark {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.service-extra-info {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 25px;
    border-radius: 3px;
    margin-top: 30px;
}

.service-extra-info p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin: 0;
}

.service-description-box {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 25px;
    border-radius: 3px;
    margin: 25px 0;
}

.service-description-box p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0;
}

/* ===================================
   PRICING TABLE
   =================================== */
.pricing-table {
    margin: 30px 0;
    font-size: 16px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.price-row:last-child {
    border-bottom: none;
}

.service-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
}

.service-duration {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-gray);
}

.service-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-gray);
}

/* ===================================
   INSTAGRAM SECTION
   =================================== */
.instagram-section {
    padding: 100px 0;
    background-color: #fafafa;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 50px 0;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    aspect-ratio: 1/1;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

/* ===================================
   FOOTER
   =================================== */
.footer-section {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-brand {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-description,
.footer-info {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.newsletter-section {
    margin: 60px 0 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background-color: transparent;
    color: var(--white);
    font-size: 14px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--white);
    background-color: transparent;
}

.btn-subscribe {
    padding: 12px 40px;
    background-color: var(--white);
    color: var(--black);
    border: 2px solid var(--white);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background-color: transparent;
    color: var(--white);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 90px;
    }
    
    .services-hero-title {
        font-size: 80px;
    }
    
    .about-overlay-text {
        font-size: 90px;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 70px;
    }
    
    .section-heading {
        font-size: 32px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-icons {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .service-content-box {
        padding: 60px 40px;
        min-height: auto;
    }
    
    .services-hero-title {
        font-size: 60px;
    }
    
    .about-overlay-text {
        font-size: 70px;
    }
    
    .mission-story-content {
        padding: 60px 40px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: 70vh;
    }
    
    .hero-title {
        font-size: 50px;
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .section-heading {
        font-size: 28px;
    }
    
    .booking-heading {
        font-size: 28px;
    }
    
    .service-heading,
    .service-heading-dark {
        font-size: 32px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .team-card img {
        height: 200px;
    }
    
    .booking-card {
        padding: 40px 20px;
        margin: 40px 20px;
    }
    
    .booking-buttons {
        flex-direction: column;
    }
    
    .btn-black {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .service-content-box {
        padding: 40px 20px;
    }
    
    .services-hero {
        height: 300px;
    }
    
    .services-hero-title {
        font-size: 40px;
    }
    
    .about-image-col {
        min-height: 400px;
    }
    
    .about-overlay-text {
        font-size: 50px;
    }
    
    .mission-story-content {
        padding: 40px 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .service-image-container {
        min-height: 400px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 40px;
    }
    
    .section-heading {
        font-size: 24px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-hero-title {
        font-size: 32px;
    }
    
    .service-heading,
    .service-heading-dark {
        font-size: 28px;
    }
}

/* ===================================
   ABOUT PAGE STYLES
   =================================== */
.about-hero-section {
    height: 50vh;
    background: url('https://images.unsplash.com/photo-1516975080664-ed2fc6a32937?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=1470') center/cover no-repeat;
    background-color: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-page-section {
    margin-top: 0;
}

.about-detail-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}

.about-detail-content {
    padding: 40px;
}

.about-detail-content p {
    font-size: 14px;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.team-full-section {
    padding: 100px 0;
    background-color: var(--light-cream);
}

.team-intro-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.team-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.about-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--brown-bg) 0%, var(--dark-gray) 100%);
}

.about-cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.cta-heading {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 25px;
}

.cta-description {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.about-cta-box .btn-black {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.about-cta-box .btn-black:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* Responsive - About Page */
@media (max-width: 991px) {
    .team-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-detail-content {
        padding: 20px 0;
    }
    
    .about-hero-section {
        height: 40vh;
    }
}

@media (max-width: 767px) {
    .about-hero-section {
        height: 40vh;
    }
    
    .team-full-section {
        padding: 60px 0;
    }
    
    .about-cta-section {
        padding: 60px 0;
    }
    
    .about-cta-box {
        padding: 40px 20px;
    }
    
    .cta-heading {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .team-full-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */
.contact-hero-section {
    height: 50vh;
    background: url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?w=1920') center/cover no-repeat;
    background-color: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-title {
    font-size: 100px;
    font-weight: 900;
    letter-spacing: 8px;
    color: var(--white);
    text-transform: uppercase;
}

.contact-info-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-details-box {
    background-color: var(--light-cream);
    padding: 60px 40px;
    border-radius: 3px;
    height: 100%;
}

.contact-box-heading {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-item i {
    font-size: 24px;
    color: var(--brown-bg);
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 5px;
    line-height: 1.8;
}

.map-wrapper {
    height: 100%;
    min-height: 500px;
    border-radius: 3px;
    overflow: hidden;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--light-cream);
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--brown-bg);
}

.faq-icon {
    font-size: 24px;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 0 25px 0;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0;
}

/* ===================================
   BLOG PAGE STYLES
   =================================== */
.blog-hero-section {
    height: 50vh;
    background: url('https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?w=1920') center/cover no-repeat;
    background-color: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-main-section {
    padding: 100px 0;
    background-color: var(--white);
}

.blog-post-item {
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.blog-post-item:last-child {
    border-bottom: none;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.blog-badge {
    background-color: var(--black);
    color: var(--white);
    padding: 5px 15px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-date {
    font-size: 12px;
    color: var(--text-gray);
}

.blog-post-heading {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.3;
}

.blog-post-image {
    margin-bottom: 25px;
    border-radius: 3px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    transition: transform 0.3s ease;
}

.blog-post-item:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-excerpt {
    font-size: 14px;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.blog-read-more {
    color: var(--black);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--brown-bg);
}

.blog-read-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    margin-bottom: 50px;
}

.sidebar-widget-title {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.sidebar-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-category-list li {
    margin-bottom: 0;
}

.sidebar-category-list a {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.sidebar-category-list a:hover {
    color: var(--brown-bg);
    padding-left: 10px;
}

.sidebar-category-list span {
    color: var(--text-gray);
    font-weight: 400;
}

.sidebar-recent-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-post-item {
    display: flex;
    gap: 15px;
}

.sidebar-post-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}

.sidebar-post-item h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.4;
}

.sidebar-post-item span {
    font-size: 11px;
    color: var(--text-gray);
}

.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    display: inline-block;
    padding: 8px 18px;
    background-color: var(--light-cream);
    color: var(--dark-gray);
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background-color: var(--black);
    color: var(--white);
}

/* ===================================
   RESPONSIVE - CONTACT & BLOG
   =================================== */
@media (max-width: 991px) {
    .page-hero-title {
        font-size: 70px;
    }
    
    .contact-details-box {
        padding: 40px 30px;
    }
    
    .map-wrapper {
        min-height: 400px;
    }
    
    .blog-sidebar {
        position: static;
        margin-top: 60px;
    }
}

@media (max-width: 767px) {
    .contact-hero-section,
    .blog-hero-section {
        height: 40vh;
    }
    
    .page-hero-title {
        font-size: 50px;
        letter-spacing: 4px;
    }
    
    .contact-details-box {
        padding: 30px 20px;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .blog-post-heading {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .page-hero-title {
        font-size: 40px;
    }
    
    .blog-post-heading {
        font-size: 20px;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}