@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --primary-bg: #fdfbf7;
    --secondary-bg: #ffffff;
    --accent-color: #d99126;
    --dark-navy: #0f263d;
    --text-main: #0d1926;
    --text-muted: #627384;
    --text-light: #999999;
    --border-light: #f0f0f0;
    --bg-color: #FAF8F5;
    --white: #ffffff;
    --font-main: 'Inter', sans-serif;
    --font-accent: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--text-main);
    overflow-x: hidden;
}

.bg-color {
    background-color: var(--bg-color);
}

/* Section-Spacing  */
.s-space{
    padding: 80px 0px;
}

/* ====Mobile Header Start====  */
.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background-color: var(--dark-navy);
    z-index: 2000;
    transition: 0.4s ease;
    padding: 40px 30px;
    overflow-y: auto;
}

.sidebar.active {
    left: 0;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: var(--accent-color);
    background: none;
    border: none;
    cursor: pointer;
}

.sidebar-links {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    /* gap: 15px;  */
}

/* Mobile Accordion Styles */
.sidebar-links a,
.mob-drop-btn {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    padding: 10px 0;
    border: none;
    background: none;
    text-align: left;
    width: 100%;
    cursor: pointer;
    font-family: var(--font-main);
}

.sidebar-links a,
.mob-drop-btn:hover{
    color: var(--accent-color);
}

.mob-sub {
    display: none;
    padding-left: 15px;
    flex-direction: column;
    gap: 10px;
    border-left: 1px solid var(--accent-color);
    margin-bottom: 10px;
}

.mob-sub a {
    font-size: 13px;
    color: #ccc;
    text-transform: none;
    padding: 5px 0;
}

/* --- Modern Accordion Logic --- */
.sidebar .accordion-item{

}
.sidebar .accordion-content {
    display: grid;
    grid-template-rows: 0fr; /* The magic for smooth height */
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.sidebar .accordion-item.is-open > .accordion-content {
    grid-template-rows: 1fr;
}

.inner-content {
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding-left: 15px;
    border-left: 1px solid rgba(217, 145, 38, 0.2);
    margin-bottom: 5px;
}

/* UI Adjustments */
.mob-drop-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}

.chevron {
    transition: transform 0.4s ease;
}

.sidebar .accordion-item.is-open > .mob-drop-btn {
    color: var(--accent-color);
}

.sidebar .accordion-item.is-open > .mob-drop-btn .chevron {
    transform: rotate(180deg);
}

.inner-content a {
    color: #ccc;
    font-size: 14px;
    padding: 8px 0;
    text-decoration: none;
    transition: 0.3s;
}

.inner-content a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}
/* ====Mobile Header End====  */


/* ====Header Start====  */
header {
    width: 100%;
    background-color: var(--secondary-bg);
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
    border-bottom: 1px solid var(--border-light);
}

.logo {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    width: 75px;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 25px;
    height: 100%;
    align-items: center;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-item>a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color .1s ease;
}
.nav-item>a svg{
    width: 16px;
    height: 16px;
    color: var(--text-main);
    transition: color .1s ease;
}

.nav-item>a:hover{
    color: var(--accent-color);
}
.nav-item>a:hover svg{
    color: var(--accent-color);
}

/* Dropdowns Visibility Logic */
.dropdown-menu,
.mega-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 70px;
    left: 0;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    transition: 0.3s ease;
    transform: translateY(10px);
}

.nav-item:hover>.dropdown-menu,
.nav-item:hover>.mega-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* Standard/Nested Dropdown */
.dropdown-menu {
    min-width: 200px;
    padding: 10px 0;
    list-style: none;
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 12px;
    color: var(--text-main);
    text-decoration: none;
    text-transform: none;
    transition: 0.2s;
}

.dropdown-menu a:hover {
    color: var(--accent-color);
    background: var(--primary-bg);
}

/* Nested pop-out */
.nested-menu {
    position: absolute;
    left: 100%;
    top: 0;
    display: none;
    background: var(--white);
    min-width: 180px;
    border: 1px solid #eee;
    list-style: none;
}

.dropdown-menu li:hover>.nested-menu {
    display: block;
}

/* Mega Menu */
.mega-menu {
    width: 800px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.nav-item:hover>.mega-menu {
    transform: translateX(-50%) translateY(0);
}

.mega-col h4 {
    font-size: 11px;
    color: var(--accent-color);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.mega-col a {
    display: block;
    font-size: 13px;
    padding: 5px 0;
    color: var(--text-muted);
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
}

.login-btn {
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    color: var(--text-main);
    margin-right: 20px;
    font-family: var(--font-main);
    padding: 8px 20px;
    border: 1px solid #2e2e2e;
    border-radius: 4px;
    line-height: 20px;
    cursor: pointer;
}

.contact-btn {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    font-family: var(--font-main);
    border-radius: 4px;
    cursor: pointer;
    line-height: 20px;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-main);
    margin-left: 15px;
}



/* Slider  */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
    color: var(--white);
}

.hero h1 {
    font-family: var(--font-accent);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}


/* ====Search Bar Start====  */
.search-bar {
    display: flex;
    justify-content: center;
    margin-top: -40px;
    z-index: 20;
}

.search-container {
    background: var(--white);
    width: 46%;  
    /* max-width: 1100px;  */
    display: flex;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    /* overflow: hidden;  */
    align-items: stretch;
}

.s-field {
    flex: 1 1 0%;
    padding: 16px;
    border-right: 1px solid #e0e6eb;
}
.s-field .s-drope{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.s-field .s-drope svg{
    color: #627384;
        width: 16px;
    height: 16px;
    
}
.s-field .s-drope p{
    margin-bottom: 0px;
    font-size: 14px;
}

.s-field span {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 10px;
    letter-spacing: 1px;
}

.btn-search {
    background-color: var(--dark-navy);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    font-weight: 600;
    cursor: pointer;
    height: 100%;
    font-family: var(--font-main);
    line-height: 20px;
    letter-spacing: 0.35px;
    text-transform: uppercase;
    font-size: 14px;
    transition: all .3s ease;
    border-radius: 0px 5px 5px 0px;
}

.btn-search:hover{
    background-color: #264059;
}


.s-field {
    position: relative; /* Essential for dropdown positioning */
    cursor: pointer;
    transition: background 0.2s ease;
}

.s-field:hover {
    background-color: #fcfcfc;
}

/* The Modern Dropdown Menu */
.s-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 0 0 8px 8px;
    z-index: 100;
    display: none; /* Hidden by default */
    border: 1px solid var(--border-light);
    border-top: none;
}

/* Show menu when field is active */
.s-field.active .s-menu {
    display: block;
}

/* Rotate icon on click */
.s-field.active .s-drope svg {
    transform: rotate(180deg);
}

.s-field .s-drope svg {
    transition: transform 0.3s ease;
}

/* Dropdown Item Styling */
.s-menu li {
    padding: 12px 20px;
    font-size: 13px;
    color: var(--text-main);
    transition: all 0.2s;
}

.s-menu li:hover {
    background-color: var(--primary-bg);
    color: var(--accent-color);
}


@media (max-width: 1024px) {

    .nav-links,
    .login-btn {
        display: none;
    }

    .hamburger {
        display: block;
    }

    header {
        height: 60px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .search-bar {
        width: 100%;
        flex-direction: column;
        padding: 20px;
        border-radius: 10px;
    }

    .s-field {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 15px 0;
    }

    .btn-search {
        width: 100%;
        margin: 20px 0;
        padding: 15px;
    }
}
/* ====Header End====  */


/* ====Category Section Start====  */
.categories {
    display: flex;
    gap: 20px;
    padding: 64px 0px;
}

.categories .row {
    gap: 25px;
    justify-content: center;
}

.card {
    width: 190px;
    height: 130px;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
    gap: 8px;
}

.icon {
    font-size: 28px;
}

.icon svg{
    width: 32px; 
    height: 32px;
    color: var(--font-main) !important;
    transition: color 0.2s ease;
}

.card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color) !important;
}
.card:hover svg{
    color: var(--accent-color) !important;
}

.categories .title {
    font-weight: 600;
    font-size: 14px;
    font-family: var(--font-main);
    color: var(--text-main);
}

.count {
    font-size: 12px;
    color: var(--text-muted);
}

.button-container {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.btn-all-categories {
    background-color: #122b3d;
    color: #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.8px;
    border-radius: 4px;
    display: inline-block;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    line-height: 16px;
}

.btn-all-categories:hover {
    background-color: #1a3e58;
}
/* ====Category Section End====  */


/* ====About Section Start====  */
.about-section{
    width: 100%;
    overflow: hidden;
}
.main-title {
    font-family: 'Times New Roman', serif;
    font-weight: 900;
    font-size: 2.8rem;
    line-height: 1.1;
    color: #0a1d2e;
    letter-spacing: -0.5px;
}

.description {
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    max-width: 90%;
}

.stat-number {
    font-family: 'Times New Roman', serif;
    color: #c59d5f;
    /* Gold color from image */
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.image-wrapper img {
    width: 100%;
    border-radius: 12px !important;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .main-title {
        font-size: 2rem;
    }

    .content-box {
        text-align: center;
        padding-left: 0 !important;
    }

    .description {
        max-width: 100%;
    }
}
/* ====About Section End====  */


/* ====Property Section Start====  */
.property{
    width: 100%;
}
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header small {
    color: #999;
    letter-spacing: 2px;
    font-size: 12px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 600;
}

.carousel-inner {
    padding: 20px;
}

.property-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.4s ease;
}

.property-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.property-img {
    position: relative;
    overflow: hidden;
}

.property-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.5s ease;
}

.property-card:hover img {
    transform: scale(1.1);
}

.badge-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    font-size: 11px;
    color: #fff;
    border-radius: 20px;
}

.green { background: #2ecc71; }
.orange { background: #f39c12; }
.red { background: #e74c3c; }

.property-content {
    padding: 15px;
}

.property-title {
    font-size: 16px;
    font-weight: 600;
}

.property-location {
    font-size: 12px;
    color: #777;
}

.property-price {
    color: #d99126;
    font-weight: 600;
    margin-top: 5px;
}

.divider {
    border-top: 1px solid #eee;
    margin: 10px 0;
}

.property-details {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
}
/* ====Property Section End====  */


/* ====Features Section Start====  */
.features-section {
    width: 100%;
    text-align: center;
}

.header-container {
    margin-bottom: 60px;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2.5rem;
    color: var(--navy);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap; 
}

.feature-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 8px;
    padding: 50px 30px;
    width: 320px; /* Fixed width for desktop */
    /* min-height: 350px;  */
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #f1f4f6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.icon-circle i {
    color: var(--gold);
    font-size: 16px;
    color: #fff;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .feature-card {
        width: 100%; 
        max-width: 400px;
        min-height: auto;
    }
}
/* ====Feature Section End====  */


/* ====Featured Estates Section Start====  */
.estates-section {
    width: 100%;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: #0a1d2e;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.estates-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.estate-card {
    flex: 1;
    min-width: 300px; 
}

.image-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px; 
    margin-bottom: 20px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.estate-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #0a1d2e;
    font-weight: 900;
}

.price {
    color: #c59d5f; 
    font-size: 0.9rem;
    font-weight: 600;
}

.description {
    font-size: 0.85rem;
    color: #718096; 
    font-weight: 400;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .estates-grid {
        flex-direction: column;
    }
    
    .section-title {
        text-align: center;
        font-size: 1.5rem;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}
/* ====Featured Estates Section End====  */


/* ====Testimonial Section Start====  */
.testimonial-section {
    width: 100%;
    text-align: center;
}

.header-container {
    margin-bottom: 60px;
}

.section-tagline {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--navy);
    letter-spacing: 1px;
}

.testimonial-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 12px;
    padding: 40px 30px;
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    text-align: left;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    margin-bottom: 25px;
}

.stars i {
    color: var(--gold);
    font-size: 14px;
    margin-right: 2px;
}

.quote {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 30px;
    flex-grow: 1; 
}

.author-info .name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.author-info .role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsiveness */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        min-width: 100%;
        max-width: 100%;
    }
}
/* ====Testimonial Section End====  */


/* ====FAQ'S Section Start====  */
.faq-section {
    width: 100%;
}

.tagline {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--text-grey);
    font-weight: 600;
}

.title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 40px;
    color: var(--navy);
}

.faq-section .accordion {
    max-width: 850px;
    margin: 0 auto;
}

.faq-section .accordion-item {
    border: 1px solid var(--border-light) !important;
    border-radius: 8px !important;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-section .accordion-button {
    font-weight: 700;
    color: var(--navy) !important;
    font-size: 16px;
    padding: 25px 30px;
    background-color: transparent !important;
    box-shadow: none !important;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: var(--border-light);
}

.faq-section .accordion-button::after {
    background-size: 14px;
    transition: transform 0.3s ease;
}

.faq-section .accordion-body {
    padding: 0 30px 25px 30px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* Responsiveness */
@media (max-width: 768px) {
    .title { font-size: 28px; }
    .faq-section .accordion-button { padding: 20px; font-size: 14px; }
}
/* ====FAQ'S Section End====  */



/* ==== Consultation Section Start====  */
.consultation-section {
    width: 100%;
}

.tagline {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-accent);
    font-weight: 900;
    font-size: 46px;
    line-height: 1.1;
    color: var(--dark-navy);
    margin-bottom: 30px;
}

.description {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 90%;
}

.info-item {
    display: flex;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background-color: var(--dark-navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 14px;
}

.info-content h6 {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 3px;
    color: var(--text-main);
}

.info-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.contact-card {
    background: var(--secondary-bg);
    padding: 60px;
    border-radius: 4px;
    border: 1px solid var(--border-light);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03);
}

.custom-field {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-main);
    outline: none;
    transition: 0.3s ease;
}

.custom-field:focus {
    border-color: var(--dark-navy);
}

.btn-submit {
    width: 100%;
    background-color: var(--dark-navy);
    color: var(--white);
    border: none;
    padding: 18px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #1a3a54;
}

/* Responsive */
@media (max-width: 991px) {
    .section-title { font-size: 34px; }
    .contact-card { padding: 30px; }
}

/* ====Consultation Section End====  */


/* ====Footer Section Start====  */
.footer-section {
    background-color: #0a1d2e; 
    color: #ffffff;
    padding-top: 64px;
}

.footer-container {
    padding-bottom: 64px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-weight: 700;
}

.small-title {
    font-size: 0.95rem;
    font-family: 'Playfair Display', serif;
}

.footer-text {
    font-size: 0.85rem;
    line-height: 1.8;
    color: #a0aec0; 
    font-style: normal;
}

.contact-info {
    margin-top: 15px;
}

.footer-links {
    list-style: none;
    padding-left: 0px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(0, 0, 0, 0.1);
    padding: 16px 12px;
    text-align: center;
}

.copyright-bar p {
    font-size: 0.75rem;
    color: #718096;
    letter-spacing: 0.5px;
    margin-bottom: 0px;
}

/* Responsiveness */
@media (max-width: 991px) {
    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col {
        min-width: 100%;
    }
}
/* ====Footer Section End====  */