/* ==========================================================================
   GuruGhar Estate - About Us Component Styles (Premium Redesign)
   ========================================================================== */

:root {
    --about-dark-blue: #403f46;  /* Deep slate grey from corporate theme */
    --about-gold: #d4af37;       /* Luxury gold accent from corporate theme */
    --about-text: #555555;
    --about-bg: #fcfcfc;
}

.about-section {
    padding: 90px 40px;
    background: var(--about-bg);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

/* ==========================================================================
   CENTERED TITLE HEADER
   ========================================================================== */
.about-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.about-title-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 46px;
    font-weight: 600;
    color: var(--about-dark-blue);
    letter-spacing: 0.5px;
    margin: 0;
}

.about-title-italic span {
    color: var(--about-gold);
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.about-title-underline {
    width: 70px;
    height: 3px;
    background: var(--about-gold);
    margin: 18px auto 0;
    border-radius: 2px;
}

/* Container Split Columns */
.about-container {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* ==========================================================================
   LEFT COLUMN - SINGLE PREMIUM IMAGE WITH FLOATING BADGE
   ========================================================================== */
.about-left {
    flex: 1.1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

/* Watermark architectural overlay */
.about-left::before {
    content: '';
    position: absolute;
    top: -40px; 
    left: -40px; 
    width: calc(100% + 80px); 
    height: calc(100% + 80px);
    background: url('../../assets/2.png') center/cover no-repeat; 
    opacity: 0.04;
    filter: grayscale(100%);
    mask-image: radial-gradient(circle at center, black 40%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 70%);
    z-index: 1;
}

/* Visual Wrapper */
.about-image-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 540px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.about-single-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 45px rgba(30, 26, 34, 0.12);
    border: 6px solid #ffffff;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: block;
}

/* Gold Frame Offset Container */
.about-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -15px;
    border: 2px solid var(--about-gold);
    border-radius: 16px;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.about-image-wrapper:hover .about-single-img {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(30, 26, 34, 0.22);
}

.about-image-wrapper:hover::before {
    inset: -8px;
    border-color: var(--about-dark-blue);
}

/* Experience Floating Badge */
.about-image-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--about-dark-blue);
    border-left: 5px solid var(--about-gold);
    padding: 16px 26px;
    border-radius: 0 10px 10px 10px;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    z-index: 15;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.about-image-wrapper:hover .about-image-card {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-number {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--about-gold);
    line-height: 1.1;
}

.card-text {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
    font-weight: 500;
}

/* ==========================================================================
   RIGHT COLUMN - CONTENT & CTAS
   ========================================================================== */
.about-right {
    flex: 1;
    position: relative;
    z-index: 5;
}

.about-lead {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--about-dark-blue);
    margin-bottom: 20px;
}

.about-right p {
    color: var(--about-text);
    font-size: 15.5px;
    line-height: 1.85;
    margin-bottom: 20px;
    font-weight: 300;
}

.about-right p strong {
    font-weight: 600;
    color: var(--about-dark-blue);
}

.about-right p:last-of-type {
    margin-bottom: 35px;
}

/* CTA Buttons styling */
.about-cta-wrapper {
    display: block;
}

.about-btn {
    background: var(--about-gold);
    color: #ffffff;
    padding: 14px 38px;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-block;
    border: 2px solid var(--about-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

.about-btn:hover {
    background: var(--about-dark-blue);
    border-color: var(--about-dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(64, 63, 70, 0.25);
}

.about-btn:active {
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */

@media screen and (max-width: 1200px) {
    .about-section {
        padding: 70px 30px;
    }
    
    .about-title-italic {
        font-size: 40px;
    }
    
    .about-container {
        gap: 50px;
    }
    
    .about-single-img {
        height: 400px;
    }
    
    .about-lead {
        font-size: 19px;
    }
}

@media screen and (max-width: 992px) {
    .about-section {
        padding: 60px 20px;
    }
    
    .about-container { 
        flex-direction: column;
        gap: 50px;
    }
    
    .about-left, .about-right {
        width: 100%;
        text-align: center;
    }
    
    .about-image-wrapper {
        margin: 0 auto;
    }
    
    .about-right p {
        max-width: 100%;
        text-align: justify;
    }
    
    .about-lead {
        text-align: center;
    }
    
    .about-cta-wrapper {
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .about-section {
        padding: 50px 15px;
    }
    
    .about-title-italic {
        font-size: 32px;
    }
    
    .about-single-img {
        height: 320px;
        border-width: 4px;
    }
    
    .about-image-wrapper::before {
        inset: -10px;
    }
    
    .about-image-card {
        padding: 12px 20px;
        bottom: -15px;
        right: -10px;
    }
    
    .card-number {
        font-size: 30px;
    }
    
    .card-text {
        font-size: 10px;
    }
    
    .about-lead {
        font-size: 17px;
    }
    
    .about-right p {
        font-size: 14.5px;
        line-height: 1.8;
    }
}
