/* TEXT STYLING */
.about-section {
    /* CHANGED: Reduced from 80px to 40px */
    background-color: #162336;
    padding: 40px 0; 
    background: linear-gradient(145deg, var(--light-bg) 0%, var(--primary-color) 100%);
    position: relative;
}
.about-content {
    text-align: left;
    padding-left: 20px;
}

.eyebrow-text {
    display: block;
    color: var(--secondary-color); /* Gold */
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.main-heading {
    color: var(--text-color);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    margin-top: 0;
}

/* The decorative gold line */
.heading-divider {
    /* CHANGED: Reduced height from 3px to 1px or 2px */
    height: 2px; 
    width: 80px;
    background-color: var(--secondary-color);
    margin-bottom: 25px;
}

.about-content p {
    color: rgba(241, 226, 216, 0.9); /* Slightly transparent off-white */
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.about-content .lead-text {
    font-size: 1.2rem;
    color: #fff; /* Brighter white for the first paragraph */
    font-weight: 400;
}

/* IMAGE STYLING - THE "GOLD FRAME" EFFECT */


.about-img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: block;
}



/* Hover effect adjustment (Optional) */
.about-image-wrapper:hover::before {
    /* CHANGED: Reduced movement to match the tighter spacing */
    transform: translate(-12px, -12px); 
}

/* ------------------------------------------------------- */
/*  WHY CHOOSE US (FEATURES) STYLES                        */
/* ------------------------------------------------------- */

/* =========================================
   COMBINED SECTION STYLES
   (Why Choose Us + Vision Split Layout)
   ========================================= */

/* 1. SECTION & SPACING */
.why-choose-section {
    padding: 80px 0;
    background-color: var(--light-bg); /* Dark Grey/Blue Base */
}

/* Adds space between the "Why Choose" grid and the "Vision" block */
.why-choose-section .container:first-child {
    margin-bottom: 80px;
}

/* =========================================
   PART 1: TOP HEADERS & TEXT
   ========================================= */
/* =========================================
   UNIFIED SECTION STYLES
   ========================================= */

/* =========================================
   UNIFIED SECTION (Based on 'About' Style)
   ========================================= */

.unified-split-section {
    /* EXACT: Reduced padding as requested */
    padding: 40px 0; 
    /* EXACT: The specific gradient you liked */
    background: linear-gradient(145deg, var(--light-bg) 0%, var(--primary-color) 100%);
    position: relative;
}

.spacer-gap {
    height: 80px; /* Space between the two rows */
}

/* --- TYPOGRAPHY (Copied from your request) --- */
.text-content-style {
    text-align: left;
    /* padding-left handled by bootstrap cols, but we ensure alignment here */
}

.eyebrow-text {
    display: block;
    color: var(--secondary-color); /* Gold */
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.main-heading {
    color: var(--text-color);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    margin-top: 0;
}

.heading-divider {
    /* EXACT: Reduced height */
    height: 2px; 
    width: 80px;
    background-color: var(--secondary-color);
    margin-bottom: 25px;
}

/* Paragraph styling matching your 'About' section */
.text-content-style p {
    color: rgba(241, 226, 216, 0.9);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.lead-text {
    font-size: 1.2rem;
    color: #fff !important;
    font-weight: 400;
    margin-bottom: 30px;
}

/* --- LIST ITEMS (To make features look like the text) --- */
.custom-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.list-icon {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px; /* Aligns with title */
    min-width: 30px;
    text-align: center;
}

.list-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

/* --- IMAGE FRAME (The Gold Frame Effect) --- */
.gold-frame-wrapper {
    position: relative;
    z-index: 1;
    padding: 10px; /* Space for border to sit */
}

.framed-img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: block;
}

/* The Gold Border behind the image */
.gold-frame-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%;
    
    /* EXACT: 1px border as requested */
    
    border-radius: 5px;
    z-index: 0;
    
    /* EXACT: Tighter positioning (-8px) */
    transform: translate(-8px, -8px); 
    
    transition: transform 0.3s ease;
}

/* EXACT: Hover effect with reduced movement */
.gold-frame-wrapper:hover::before {
    transform: translate(-12px, -12px); 
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gold-frame-wrapper {
        margin-bottom: 30px;
    }
    .text-content-style {
        padding: 0 10px;
    }
}
/* =========================================
   1. FONTS & VARIABLES
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    /* Color Palette */
    --c-dark-blue: #0f1c24;  /* Deep Moroccan Night */
    --c-charcoal: #1a2630;   /* Card Background */
    --c-gold: #c5a059;       /* Primary Gold */
    --c-gold-light: #e6c888; /* Highlight */
    --c-sand: #f1e2d6;       /* Text Color */
    --c-white: #ffffff;
    
    /* Gradients */
    --g-gold: linear-gradient(135deg, #9e7f42 0%, #f2d893 50%, #9e7f42 100%);
    --g-overlay: radial-gradient(circle at top right, rgba(30, 45, 55, 0.9), var(--c-dark-blue));
}

/* =========================================
   2. MAIN SECTION WRAPPER
   ========================================= */
.about-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--c-dark-blue);
    color: var(--c-sand);
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

/* Background Pattern (Subtle Geometric) */
.bg-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.03;
    background-image: radial-gradient(var(--c-gold) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* Giant Watermark 'R' */
.bg-watermark {
    position: absolute;
    top: -5%;
    right: -2%;
    font-family: 'Cormorant Garamond', serif;
    font-size: 35rem;
    line-height: 1;
    color: var(--c-gold);
    opacity: 0.02;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 2;
}

/* =========================================
   3. TYPOGRAPHY HELPERS
   ========================================= */
.eyebrow {
    display: block;
    color: var(--c-gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--c-white);
    line-height: 1.1;
    margin: 0 0 20px 0;
}

.gold-divider {
    height: 2px;
    width: 80px;
    background: var(--g-gold);
    margin-bottom: 30px;
}
.gold-divider.center { margin: 0 auto 30px auto; }

/* =========================================
   4. STORY SECTION (Split Layout)
   ========================================= */
.story-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Text takes more space than image */
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.story-text p {
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(241, 226, 216, 0.9);
}

.lead-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--c-white) !important;
    line-height: 1.5 !important;
}

/* Drop Cap "W" */
.drop-cap {
    float: left;
    font-size: 4rem;
    line-height: 0.75;
    margin-right: 12px;
    margin-top: 5px;
    color: var(--c-gold);
    font-weight: 700;
}

/* Image Frame Effect */
.story-image {
    position: relative;
}

.image-frame {
    position: relative;
    z-index: 2;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    /* Optional: Sepia tone for style */
    filter: sepia(20%) contrast(1.1); 
    transition: filter 0.5s ease;
}

/* The Gold Border behind the image */
.image-frame::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border: 1px solid var(--c-gold);
    transform: translate(15px, 15px); /* Offset */
    z-index: -1;
    transition: transform 0.4s ease;
}

.story-image:hover .image-frame::before {
    transform: translate(8px, 8px); /* Moves closer on hover */
}
.story-image:hover img {
    filter: sepia(0%) contrast(1.0);
}

/* =========================================
   5. PHILOSOPHY BLOCKQUOTE
   ========================================= */
.philosophy-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px auto;
    padding: 60px 40px;
    background: linear-gradient(180deg, var(--primary-color), transparent);
    border-top: 1px solid rgba(197, 160, 89, 0.3);
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    position: relative;
}

.quote-icon {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    color: var(--c-gold);
    opacity: 0.5;
    line-height: 0;
    margin-bottom: 30px;
    display: block;
}

.philosophy-block h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-style: italic;
    color: var(--c-white);
    margin-bottom: 20px;
}

.signature span {
    display: block;
    margin-top: 30px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--c-gold);
}

/* =========================================
   6. PROMISE GRID SECTION
   ========================================= */
.promise-section {
    text-align: center;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--c-white);
}

.sub-header {
    margin-bottom: 50px;
    font-style: italic;
    color: rgba(255,255,255,0.6);
}

/* Grid Layout */
.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.promise-card {
    background: var(--primary-color);
    padding: 40px 30px;
    border-radius: 6px;
    text-align: left;
    border-top: 3px solid transparent; /* Prepare for hover */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.promise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border-top-color: var(--c-gold);
}
.card-icon{
    text-align: center;
}
.card-icon svg {
    width: 40px;
    height: 40px;
    color: var(--c-gold);
    margin-bottom: 20px;
}

.promise-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--c-white);
    margin-bottom: 15px;
}

.promise-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* =========================================
   7. CTA BUTTON
   ========================================= */
.cta-wrapper p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--c-white);
}

.gold-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--g-gold);
    color: #fff; /* Or dark blue depending on contrast preference */
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: filter 0.3s ease, transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.gold-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* =========================================
   8. RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
    .story-wrapper {
        grid-template-columns: 1fr; /* Stack vertically */
    }
    
    .story-image {
        order: -1; /* Image first on mobile? or remove to keep text first */
        margin-bottom: 40px;
        max-width: 100%;
    }
    
    .image-frame {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .main-title { font-size: 2.5rem; }
    .philosophy-block h3 { font-size: 1.5rem; }
}

.section-header p { 
    text-align: center;
}
.cta-wrapper p{
    text-align: center;
}
.hero-text-wrapper p{
    text-align: center;
}
