/*
 * Meghnathi Construction - Premium Single-Page Website Stylesheet
 * Brand Colors: Teal (#18B6C8) and Dark Navy (#24364B)
 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-teal: #18B6C8;
    --primary-teal-rgb: 24, 182, 200;
    --dark-navy: #24364B;
    --dark-navy-rgb: 36, 54, 75;
    --navy-light: #2c425c;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --text-dark: #2d3748;
    --text-muted: #718096;
    --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    --card-shadow-hover: 0 20px 40px rgba(24, 182, 200, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 12px;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-navy);
    font-weight: 700;
    letter-spacing: -0.5px;
}

a {
    color: var(--primary-teal);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: #128a99;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--light-gray);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-teal);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--dark-navy);
}

/* Helper Classes */
.section-padding {
    padding: 100px 0;
}

.bg-light-gray {
    background-color: var(--light-gray);
}

.bg-dark-navy {
    background-color: var(--dark-navy);
    color: var(--white);
}

.text-teal {
    color: var(--primary-teal) !important;
}

/* Section Title */
.section-title-wrapper {
    margin-bottom: 60px;
}

.section-pretitle {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-teal);
    display: inline-block;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.section-pretitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 2px;
    background-color: var(--primary-teal);
}

.section-title {
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 20px;
}

.section-title span {
    font-weight: 300;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
}

/* Header & Navigation */
.navbar {
    padding: 15px 0;
    transition: var(--transition-smooth);
    z-index: 1050;
    background: transparent;
}

.navbar.navbar-sticky {
    padding: 10px 0;
    background: rgba(36, 54, 75, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-brand {
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.navbar.navbar-sticky .navbar-brand {
    padding: 0;
}

.navbar-brand img {
    height: 48px;
    transition: var(--transition-smooth);
}

.navbar.navbar-sticky .navbar-brand img {
    height: 40px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-align: left;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
}

.brand-sub {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-teal);
    letter-spacing: 2.2px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 20px !important;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background-color: var(--primary-teal);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-teal) !important;
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon-custom {
    width: 24px;
    height: 18px;
    position: relative;
    display: inline-block;
}

.navbar-toggler-icon-custom span {
    display: block;
    position: absolute;
    height: 2.5px;
    width: 100%;
    background: var(--white);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.navbar-toggler-icon-custom span:nth-child(1) { top: 0px; }
.navbar-toggler-icon-custom span:nth-child(2) { top: 8px; }
.navbar-toggler-icon-custom span:nth-child(3) { top: 16px; }

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(2) {
    opacity: 0;
    left: -60px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--dark-navy);
        padding: 20px;
        margin-top: 15px;
        border-radius: var(--border-radius);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .nav-link {
        padding: 10px 0 !important;
    }
    .nav-link::after {
        left: 0;
        right: 80%;
    }
}

/* Buttons */
.btn-custom {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-custom-teal {
    background-color: var(--primary-teal);
    color: var(--white);
    border: 2px solid var(--primary-teal);
}

.btn-custom-teal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--white);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-custom-teal:hover {
    color: var(--primary-teal);
    border-color: var(--white);
    box-shadow: 0 5px 20px rgba(24, 182, 200, 0.3);
}

.btn-custom-teal:hover::before {
    width: 100%;
}

.btn-custom-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-custom-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-teal);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-custom-outline:hover {
    color: var(--white);
    border-color: var(--primary-teal);
    box-shadow: 0 5px 20px rgba(24, 182, 200, 0.3);
}

.btn-custom-outline:hover::before {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(36, 54, 75, 0.95) 0%, rgba(36, 54, 75, 0.8) 50%, rgba(24, 182, 200, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-pretitle {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-teal);
    margin-bottom: 15px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
}

.hero-title span {
    font-weight: 300;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-bottom: 40px;
}

/* Floating Logo Container */
.hero-logo-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    animation: floatAnimation 6s ease-in-out infinite;
    max-width: 380px;
    width: 100%;
}

.hero-logo-card img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.15));
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        padding-top: 150px;
        padding-bottom: 100px;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-logo-container {
        margin-top: 60px;
    }
}

/* About Section */
.about-features .about-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.about-feature-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: rgba(24, 182, 200, 0.1);
    color: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-right: 20px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.about-feature-item:hover .about-feature-icon {
    background-color: var(--primary-teal);
    color: var(--white);
    transform: rotateY(180deg);
}

.about-feature-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.about-feature-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Stats Counter Grid */
.stat-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    text-align: center;
    border-top: 4px solid var(--primary-teal);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-navy);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Company Overview Grid */
.overview-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.02);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--dark-navy), var(--primary-teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.overview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.overview-card:hover::before {
    transform: scaleX(1);
}

.overview-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    background-color: var(--light-gray);
    color: var(--dark-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.overview-card:hover .overview-icon {
    background-color: var(--primary-teal);
    color: var(--white);
}

.overview-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.overview-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Vision & Mission Symmetrical Section */
.vision-mission-wrapper {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.vision-card, .mission-card {
    padding: 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.vision-card {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #1c2b3d 100%);
    color: var(--white);
}

.mission-card {
    background: var(--light-gray);
    color: var(--text-dark);
}

.vm-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.vision-card .vm-icon-wrapper {
    background-color: rgba(24, 182, 200, 0.15);
    color: var(--primary-teal);
    border: 1px solid rgba(24, 182, 200, 0.3);
}

.mission-card .vm-icon-wrapper {
    background-color: rgba(36, 54, 75, 0.1);
    color: var(--dark-navy);
    border: 1px solid rgba(36, 54, 75, 0.2);
}

.vision-card h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 20px;
}

.mission-card h3 {
    color: var(--dark-navy);
    font-size: 2rem;
    margin-bottom: 20px;
}

.vision-card p, .mission-card p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin: 0;
}

.vision-card:hover .vm-icon-wrapper i {
    animation: rotateScale 0.6s ease-in-out;
}

.mission-card:hover .vm-icon-wrapper i {
    animation: pulse 0.6s ease-in-out;
}

@keyframes rotateScale {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
    100% { transform: scale(1) rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.25); }
    100% { transform: scale(1); }
}

@media (max-width: 767.98px) {
    .vision-card, .mission-card {
        padding: 40px;
    }
}

/* Redevelopment Expertise Cards */
.redev-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 35px 25px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.redev-icon-box {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: rgba(24, 182, 200, 0.08);
    color: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.redev-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(24, 182, 200, 0.3);
}

.redev-card:hover .redev-icon-box {
    background-color: var(--primary-teal);
    color: var(--white);
    transform: scale(1.1);
}

.redev-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.redev-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin: 0;
}

/* Why Choose Us Icon Boxes */
.why-choose-card {
    display: flex;
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    height: 100%;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: rgba(24, 182, 200, 0.1);
    color: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 25px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.why-choose-card:hover .why-icon {
    background-color: var(--dark-navy);
    color: var(--white);
    transform: scale(1.05);
}

.why-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.why-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin: 0;
}

@media (max-width: 575.98px) {
    .why-choose-card {
        flex-direction: column;
        text-align: center;
    }
    .why-icon {
        margin: 0 auto 20px auto;
    }
}

/* Leadership Profile Section */
.leadership-feature-card {
    background: var(--white);
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    border-left: 4px solid var(--primary-teal);
    transition: var(--transition-smooth);
    height: 100%;
}

.leadership-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.lf-icon {
    font-size: 1.5rem;
    color: var(--primary-teal);
    margin-right: 18px;
    flex-shrink: 0;
}

.lf-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-navy);
}

/* Quality Control Timeline */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background-color: var(--medium-gray);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 100%;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-node {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    border: 4px solid var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark-navy);
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-node {
    background-color: var(--primary-teal);
    color: var(--white);
    box-shadow: 0 0 20px rgba(24, 182, 200, 0.4);
}

.timeline-content-wrapper {
    width: 50%;
    padding: 0 40px;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content-wrapper {
    margin-left: 50%;
    text-align: left;
}

.timeline-item:nth-child(odd) .timeline-content-wrapper {
    margin-left: 0;
    text-align: right;
}

.timeline-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    display: inline-block;
    max-width: 100%;
    text-align: left;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.02);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-navy);
}

.timeline-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 767.98px) {
    .timeline::before {
        left: 25px;
    }
    .timeline-node {
        left: 25px;
        transform: translateX(-50%);
    }
    .timeline-content-wrapper {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        margin-left: 0 !important;
        text-align: left !important;
    }
    .timeline-content {
        width: 100%;
    }
}

/* Safety & Compliance Section */
.compliance-stat-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 40px 20px;
    text-align: center;
    transition: var(--transition-smooth);
}

.compliance-stat-wrapper:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
}

.compliance-icon {
    font-size: 2.5rem;
    color: var(--primary-teal);
    margin-bottom: 20px;
}

.compliance-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}

.compliance-label {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Section */
.contact-info-card {
    background-color: var(--dark-navy);
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 50px 40px;
    height: 100%;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(24, 182, 200, 0.05);
    z-index: 0;
}

.contact-info-title {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-info-text h5 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.contact-info-text p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 50px 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0,0,0,0.02);
}

.form-group-custom {
    position: relative;
    margin-bottom: 25px;
}

.form-control-custom {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid var(--medium-gray);
    background-color: var(--light-gray);
    color: var(--text-dark);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--primary-teal);
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(24, 182, 200, 0.05);
}

.form-control-custom::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

textarea.form-control-custom {
    resize: none;
    min-height: 120px;
}

/* Map Container */
.map-container {
    height: 380px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0,0,0,0.02);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer styling */
.footer-top {
    background-color: #172432;
    padding: 80px 0 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    height: 60px;
    background-color: var(--white);
    padding: 8px 18px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.footer-title {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-teal);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    display: inline-block;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary-teal);
    transform: translateX(5px);
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact-info li i {
    color: var(--primary-teal);
    margin-right: 15px;
    margin-top: 5px;
    font-size: 1rem;
}

.footer-bottom {
    background-color: #121d28;
    padding: 25px 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

.footer-bottom-links li {
    margin-left: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
    color: var(--primary-teal);
}

@media (max-width: 767.98px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    .footer-bottom {
        text-align: center;
    }
}

/* Contact Form Input Icon Styles */
.input-icon-wrapper {
    position: relative;
    width: 100%;
}

.input-icon-wrapper .input-icon {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: var(--primary-teal);
    font-size: 1rem;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 5;
}

.input-icon-wrapper .textarea-icon {
    top: 20px;
    transform: none;
}

.input-icon-wrapper .form-control-custom {
    padding-left: 52px;
}

.form-control-custom {
    border: 1px solid #d1d5db !important;
    background-color: #f9fafb !important;
}

.form-control-custom:focus {
    border-color: var(--primary-teal) !important;
    box-shadow: 0 0 0 4px rgba(24, 182, 200, 0.15) !important;
    background-color: var(--white) !important;
}

/* Responsive Scaling Adjustments */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 60px 0;
    }
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 575.98px) {
    .brand-name {
        font-size: 1.1rem;
    }
    .brand-sub {
        font-size: 0.55rem;
        letter-spacing: 1px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-tagline {
        font-size: 1.15rem;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    .form-group-custom {
        margin-bottom: 20px;
    }
}
