/* --- NAVIGATION & HAMBURGER --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

.menu-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
}

/* Mobile Nav Logic */
@media (max-width: 768px) {
    .menu-toggle { display: flex; z-index: 1001; }

    .nav-links {
        position: absolute;
        top: 100%;
        left: -100%; /* Hidden by default */
        width: 100%;
        background: #fff;
        transition: 0.5s;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-links.active { left: 0; }

    .nav-links ul {
        flex-direction: column;
        padding: 20px;
    }

    .nav-links ul li { margin: 15px 0; text-align: center; }

    /* Hamburger Animation to 'X' */
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* --- MOBILE RESPONSIVENESS FOR ALL SECTIONS --- */

@media (max-width: 768px) {
    .container { width: 92%; }

    /* Home & Service Hero */
    h1 { font-size: 2rem !important; }
    .hero-section { padding: 60px 0; }

    /* Grid to Single Column (Services & Projects) */
    .srv-top-grid, .srv-item, .srv-feedback-wrapper, 
    .estates-grid, .contact-grid, .location-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    /* Images */
    .srv-item-img, .feat-img-col, .estate-img-wrap {
        width: 100% !important;
        height: 250px !important;
    }

    /* Portfolio Gallery */
    .gallery-grid {
        grid-template-columns: 1fr !important;
        grid-auto-rows: auto !important;
    }
    .gal-img-main { grid-column: 1 !important; grid-row: auto !important; }

    /* Text & Padding Adjustments */
    .srv-item-info, .feat-txt-col, .contact-info, .location-info {
        padding: 30px 15px !important;
        text-align: center;
    }
    .feat-btn, .srv-btn, .btn-submit {
        width: 100%;
        text-align: center;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* Ensure the grid containers switch to a centered column layout */
    .contact-grid, .location-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; /* Centers items horizontally */
        text-align: center; /* Centers text for mobile */
        gap: 40px !important;
    }

    /* Remove the max-width constraint so text doesn't look squashed to one side */
    .contact-info p, .location-info p {
        max-width: 100% !important;
        margin-left: auto;
        margin-right: auto;
    }

    /* Ensure the form and its wrapper take up the full available width */
    .contact-form-wrapper {
        width: 100% !important;
    }

    .contact-form {
        width: 100%;
    }

    /* Left-align labels inside the centered form for better readability */
    .input-group label {
        text-align: left;
    }

    /* Ensure the button stretches to full width on small screens */
    .btn-submit {
        width: 100%;
        padding: 15px;
    }

    /* Map container should also be full width */
    .map-container {
        width: 100%;
        height: 300px; /* Slightly shorter for mobile screens */
    }
}


/* --- VARIABLES & RESET --- */
:root {
    --primary-blue: #357df9;
    --dark-navy: #1d1e20;
    --text-gray: #727586;
    --white: #ffffff;
    --overlay: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    --bg-gray: #f8f9fa;
    --bg-footer-dark: #1e282d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark-navy);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- NAVIGATION --- */
header {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--dark-navy);
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--dark-navy);
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover { color: var(--primary-blue); }

/* --- HERO SECTION WITH VIDEO BACKGROUND --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden; /* Clips the video to the section */
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2; /* Sends video behind everything */
    transform: translate(-50%, -50%); /* Centers the video */
    object-fit: cover; /* Ensures video fills the screen without stretching */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: -1; /* Placed between text and video */
}

.hero-content {
    position: relative;
    z-index: 1; /* Brings text to the front */
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* --- BUTTON STYLES --- */
.btn {
    padding: 15px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: 0.3s;
    cursor: pointer;
    display: inline-block;
}

.btn-primary { 
    background: var(--primary-blue); 
    color: var(--white); 
    border: none; 
}

.btn-demo { 
    border: 2px solid var(--white); 
    color: var(--white); 
}

.btn-demo:hover { 
    background: var(--white); 
    color: var(--dark-navy); 
}

/* --- OTHER SECTIONS --- */
.redefined { padding: 100px 0; background: #f9f9f9; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.redefined-img img { width: 100%; border-radius: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.stats { display: flex; gap: 40px; margin-top: 20px;}
.stat-item h4 { font-size: 2.5rem; color: var(--primary-blue); }

.services { padding: 100px 0; text-align: center; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.service-card { padding: 30px; background: var(--white); border: 1px solid #eee; border-radius: 8px; transition: 0.3s; }
.service-img { width: 100%; height: 200px; object-fit: cover; border-radius: 5px; margin-bottom: 20px; }

.projects { padding: 100px 0; background: var(--bg-gray); }
.project-row { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; }
.project-img img { width: 100%; border-radius: 10px; }

footer { background: var(--bg-footer-dark); color: var(--white); padding: 80px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 50px; }
input[type="email"] { width: 100%; padding: 12px; background: #2c3539; border: 1px solid #444; color: white; margin-bottom: 10px; border-radius: 4px; }
.footer-bottom { border-top: 1px solid #333; margin-top: 50px; padding-top: 20px; font-size: 0.8rem; color: #777; text-align: center; }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .two-col, .project-row, .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .stats { justify-content: center; }
}




/* --- VARIABLES & RESET --- */
:root {
    --primary-blue: #357df9;
    --dark-navy: #1d1e20;
    --text-gray: #727586;
    --white: #ffffff;
    --overlay: rgba(0, 0, 0, 0.5);
    --bg-gray: #f8f9fa;
    --bg-dark-reviews: #3e4a52;
    --bg-footer-dark: #1e282d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark-navy);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- NAVIGATION --- */
header {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--dark-navy);
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--dark-navy);
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover { color: var(--primary-blue); }

/* --- HERO SECTION WITH VIDEO --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: -1;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: 0.3s;
    cursor: pointer;
}

.btn-primary { background: var(--primary-blue); color: var(--white); border: none; }
.btn-primary:hover { background: #265ab2; }

.btn-demo { border: 2px solid var(--white); color: var(--white); }
.btn-demo:hover { background: var(--white); color: var(--dark-navy); }

/* --- REDEFINED SECTION --- */
.redefined { padding: 100px 0; background: #f9f9f9; }

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.redefined h2 { font-size: 2.2rem; margin-bottom: 20px; }
.redefined p { color: var(--text-gray); margin-bottom: 30px; }

.stats { display: flex; gap: 40px; }
.stat-item h4 { font-size: 2.5rem; color: var(--primary-blue); }
.stat-item p { font-size: 0.9rem; margin-top: -5px; font-weight: bold; }

.redefined-img img { 
    width: 100%; 
    border-radius: 8px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
}

/* --- SERVICES --- */
.services { padding: 100px 0; text-align: center; }
.services h2 { margin-bottom: 10px; }
.service-sub { color: var(--text-gray); margin-bottom: 50px; }

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 30px;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 8px;
    transition: 0.3s;
}

.service-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* --- PROJECTS --- */
.projects { padding: 100px 0; background: var(--bg-gray); }
.project-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.project-row.reverse { direction: rtl; }
.project-row.reverse .project-text { direction: ltr; }

.project-img img { width: 100%; border-radius: 10px; }

/* --- REVIEWS --- */
.reviews {
    background: var(--bg-dark-reviews);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.review-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.review-card {
    max-width: 400px;
}

.stars { color: #ffcd35; margin-bottom: 15px; }
.client-meta {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.client-meta img { width: 60px; height: 60px; border-radius: 50%; border: 2px solid var(--primary-blue); }

/* --- FOOTER --- */
footer {
    background: var(--bg-footer-dark);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 50px;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #777;
}

input[type="email"] {
    width: 100%;
    padding: 12px;
    background: #2c3539;
    border: 1px solid #444;
    color: white;
    margin-bottom: 10px;
    border-radius: 4px;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .two-col, .project-row, .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .review-grid { flex-direction: column; align-items: center; }
    .stats { justify-content: center; }
}


/* --- SERVICES PAGE REFINED STYLES --- */
.services-page { background-color: #ffffff; }

.srv-intro { padding: 80px 0 40px; text-align: center; }
.srv-intro h1 { font-size: 2.5rem; margin-bottom: 15px; }
.srv-intro p { color: #666; max-width: 700px; margin: 0 auto; line-height: 1.6; }

.srv-top-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 60px; }
.srv-card-half { background-color: #f1f5f9; border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; }
.srv-card-text { padding: 35px; flex-grow: 1; }
.srv-card-text h3 { margin-bottom: 10px; font-size: 1.3rem; }
.srv-card-text p { font-size: 0.95rem; color: #444; }
.srv-card-img img { width: 100%; height: 300px; object-fit: cover; display: block; }

.srv-item { display: flex; background-color: #f1f5f9; margin-bottom: 40px; border-radius: 8px; overflow: hidden; }
.srv-item-img { flex: 1; min-height: 400px; }
.srv-item-img img { width: 100%; height: 100%; object-fit: cover; }
.srv-item-info { flex: 1; padding: 60px; display: flex; flex-direction: column; justify-content: center; }
.srv-item-info h3 { font-size: 1.8rem; margin-bottom: 15px; }
.srv-item-info p { color: #555; font-size: 1rem; }

.srv-price { margin: 25px 0; }
.srv-price small { color: #888; letter-spacing: 1px; font-weight: 700; }
.srv-price p { font-size: 1.4rem; font-weight: 700; color: #333; margin-top: 5px; }

.srv-btn { 
    background-color: #537fe7; 
    color: #fff; 
    text-decoration: none; 
    padding: 12px 45px; 
    border-radius: 30px; 
    display: inline-block; 
    width: fit-content;
    font-weight: 600;
    transition: 0.3s;
}
.srv-btn:hover { background-color: #3b66c4; }

.srv-feedback { padding: 100px 0; text-align: center; }
.srv-feedback-sub { color: #666; margin-bottom: 50px; }
.srv-feedback-wrapper { display: flex; gap: 30px; }
.srv-feedback-box { flex: 1; background-color: #f1f5f9; padding: 40px; border-radius: 8px; text-align: left; }
.srv-stars { color: #333; margin-bottom: 15px; font-size: 0.8rem; letter-spacing: 2px; }
.srv-feedback-box p { font-size: 0.95rem; line-height: 1.7; font-style: italic; }

.srv-user { display: flex; align-items: center; gap: 15px; margin-top: 30px; }
.srv-user img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.srv-user div { display: flex; flex-direction: column; }
.srv-user strong { font-size: 0.9rem; }
.srv-user span { font-size: 0.8rem; color: #777; }

/* Responsive */
@media (max-width: 900px) {
    .srv-top-grid, .srv-item, .srv-feedback-wrapper { flex-direction: column; grid-template-columns: 1fr; }
    .srv-item-img { min-height: 300px; }
    .srv-item-info { padding: 40px; }
}


/* --- PORTFOLIO PAGE STYLES --- */
.portfolio-page {
    background-color: #ffffff;
    padding-bottom: 80px;
}

.port-section {
    padding: 80px 0 20px;
}

/* Headers */
.port-header {
    text-align: center;
    margin-bottom: 50px;
}

.port-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    text-transform: capitalize;
}

.port-header p {
    color: #666;
    font-size: 0.95rem;
}

/* --- GALLERY GRID --- */
.gallery-grid {
    display: grid;
    /* Creates 3 columns: Left (1 part), Center (2 parts), Right (1 part) */
    grid-template-columns: 1fr 2fr 1fr;
    grid-auto-rows: 250px;
    gap: 20px;
}

.gal-item {
    border-radius: 12px;
    overflow: hidden;
}

.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gal-item:hover img {
    transform: scale(1.05);
}

/* Specific Grid Placements */
.gal-img-1 { grid-column: 1; grid-row: 1; }
.gal-img-2 { grid-column: 1; grid-row: 2; }
.gal-img-main { grid-column: 2; grid-row: 1 / 3; } /* Center image spans 2 rows */
.gal-img-4 { grid-column: 3; grid-row: 1; }
.gal-img-5 { grid-column: 3; grid-row: 2; }


/* --- LUXURY ESTATES GRID --- */
.estates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.estate-card {
    display: flex;
    flex-direction: column;
}

.estate-img-wrap {
    width: 100%;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 25px;
}

.estate-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.estate-card:hover .estate-img-wrap img {
    transform: scale(1.03);
}

.estate-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.estate-title-row h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    text-transform: capitalize;
}

.estate-arrow {
    font-size: 1.5rem;
    color: #666;
    transition: transform 0.3s;
}

.estate-card:hover .estate-arrow {
    transform: translateX(5px);
    color: #1a1a1a;
}

.estate-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 900px) {
    /* Collapse Gallery to 2 columns, then 1 */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
    }
    .gal-img-main {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }
    .gal-img-1 { grid-column: 1; grid-row: 3; }
    .gal-img-2 { grid-column: 1; grid-row: 4; }
    .gal-img-4 { grid-column: 2; grid-row: 3; }
    .gal-img-5 { grid-column: 2; grid-row: 4; }

    /* Collapse Estates to 1 column */
    .estates-grid {
        grid-template-columns: 1fr;
    }
    .estate-img-wrap {
        height: 280px;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    .gal-img-main { grid-column: 1; grid-row: auto; }
    .gal-img-1, .gal-img-2, .gal-img-4, .gal-img-5 {
        grid-column: 1;
        grid-row: auto;
    }
}


/* --- FEATURED ESTATES SECTION --- */
.featured-estates-section {
    padding: 40px 0 80px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feat-estate-row {
    display: flex;
    background-color: #eef4f9; /* Light blue background from image */
    border-radius: 4px;
    overflow: hidden;
    min-height: 350px;
}

.feat-img-col {
    flex: 0 0 45%; /* Image takes up 45% of the row */
}

.feat-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feat-txt-col {
    flex: 0 0 55%; /* Text takes up 55% of the row */
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feat-txt-col h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.feat-txt-col p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 90%;
}

.feat-price-block {
    margin-bottom: 25px;
}

.feat-price-block small {
    display: block;
    color: #777;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.feat-price-block span {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
}

.feat-btn {
    background-color: #4a78e8; /* Vibrant blue button */
    color: #ffffff;
    text-decoration: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

.feat-btn:hover {
    background-color: #365dbb;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 900px) {
    .feat-estate-row {
        flex-direction: column;
    }
    
    .feat-img-col, .feat-txt-col {
        flex: 1 1 auto;
    }

    .feat-img-col {
        height: 300px;
    }
    
    .feat-txt-col {
        padding: 40px 30px;
    }
    
    .feat-txt-col p {
        max-width: 100%;
    }
}

/* --- CONTACT PAGE STYLES --- */
.contact-page {
    padding: 80px 0;
    color: #333;
}

.contact-grid, .location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 100px;
}

/* Info Side */
.contact-info h1, .location-info h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-info p, .location-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
    max-width: 500px;
}

.detail-item {
    margin-bottom: 25px;
}

.detail-item strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Form Side */
.contact-form-wrapper {
    background: #fff;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.95rem;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.btn-submit {
    background-color: #537fe7; /* Blue color matching the theme */
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background-color: #3b66c4;
}

/* Map Side */
.map-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.open-maps-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    color: #537fe7;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid, .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info h1, .location-info h2 {
        font-size: 2.2rem;
    }
}
