/* General Styles */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

.glass-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.text-stroke {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
}

.clip-slant {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

/* About Section Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --ma-primary: #5a1e1e;
    /* Dark Red/Brown */
    --ma-secondary: #c5a059;
    /* Gold */
    --ma-text-dark: #1a1a1a;
    --ma-text-light: #666666;
}

/* Reusable Container - Matches About Us Width */
.ma-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fdfdfd 100%);
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
}

/* Updated to use the shared class logic, but keeping selector for specificity if needed, 
   though moving to utility class in HTML is preferred. */
.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

/* Image Styling */
.about-image {
    flex: 1;
    min-width: 320px;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

.decorative-pattern {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60%;
    height: 80%;
    border: 2px solid var(--ma-secondary);
    border-radius: 16px;
    z-index: 1;
    opacity: 0.6;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: url("../images/fav.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

/* Content Styling */
.about-content {
    flex: 1;
    min-width: 320px;
}

.sub-title {
    color: var(--ma-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 12px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--ma-secondary);
}

.main-title {
    font-size: 24px;
    line-height: 1.1;
    color: var(--ma-text-dark);
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.highlight-title {
    font-size: 1.1rem;
    color: var(--ma-primary);
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    padding-left: 15px;
    border-left: 4px solid var(--ma-primary);
}

.desc {
    color: var(--ma-text-light);
    line-height: 1.8;
    margin-bottom: 35px;
    font-size: 1.05rem;
}

/* Button Styling */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background-color: var(--ma-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(90, 30, 30, 0.4);
}

.btn-primary:hover {
    background-color: #3e0e0e;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(90, 30, 30, 0.5);
}

/* Journey Section - Cityscape */
.cityscape {
    background-image:
        linear-gradient(to bottom, transparent 95%, #e2e8f0 95%),
        linear-gradient(to top, #cbd5e1 5%, transparent 5%),
        /* Ground line */
        repeating-linear-gradient(90deg,
            transparent 0%,
            transparent 2%,
            #e2e8f0 2%,
            #e2e8f0 4%,
            transparent 4%);
    background-size: 100% 100%, 100% 100%, 50px 100%;
    mask-image: linear-gradient(to top, black, transparent);
    -webkit-mask-image: linear-gradient(to top, black, transparent);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-wrapper {
        gap: 40px;
        flex-direction: column;
    }

    .about-image,
    .about-content {
        min-width: 100%;
    }

    .about-image::after {
        width: 100px;
        height: 100px;
        bottom: -20px;
        right: -20px;
    }

    .main-title {
        font-size: 20px;
    }

    .highlight-title {
        font-size: 1rem;
        padding-left: 10px;
        border-left-width: 3px;
    }

    .btn-primary {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}