/* 
* Disha Engineers Main Stylesheet
* Version: 1.0
*/

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

/* ========== VARIABLES ========== */
:root {
    --primary: #0056b3;
    --primary-dark: #00448d;
    --secondary: #f8f9fa;
    --accent: #ffc107;
    --accent-dark: #e0a800;
    --dark: #343a40;
    --light: #f8f9fa;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    --body-bg: #ffffff;
    --text: #333333;
    --text-light: #6c757d;
    --border: #dee2e6;
    --shadow: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    
    /* Spacing variables */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
    
    /* Container sizes */
    --container-width: 85%;
    --container-max-width: 75rem; /* 1200px equivalent */
}

/* ========== RESET & BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 100%; /* 16px by default, allows rem scaling */
}

body {
    line-height: 1.6;
    color: var(--text);
    background-color: var(--body-bg);
    font-size: 1rem;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-md);
}

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

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style-position: inside;
    margin-bottom: var(--spacing-md);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========== LAYOUT ========== */
.container {
    width: var(--container-width);
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.section {
    padding: var(--spacing-xxl) 0;
}

/* ========== HEADER ========== */
header {
    background-color: white;
    box-shadow: 0 2px 5px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-bar {
    background-color: var(--primary);
    color: white;
    padding: 0.625rem 0;
    font-size: 0.875rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.logo-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.logo {
    display: flex;
    align-items: center;
    max-width: 12.5rem; /* 200px equivalent */
    width: auto;
}

.logo img {
    width: auto;
    height: auto;
    max-height: 6rem;
    object-fit: contain;
    max-width: 100%;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.02);
}

/* ========== NAVIGATION ========== */
nav ul {
    display: flex;
    list-style: none;
    gap: 1.875rem; /* 30px equivalent */
    margin-bottom: 0;
    align-items: center;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    padding: var(--spacing-xs) 0;
}

nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

nav a:hover:after, 
nav a.active:after {
    width: 100%;
}

nav a:hover, 
nav a.active {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

/* ========== HERO SECTION ========== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg') center/cover no-repeat;
    height: 70vh;
    min-height: 30rem;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 50rem; /* 800px equivalent */
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.875rem; /* 30px equivalent */
    font-weight: 300;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.875rem; /* 12px 30px equivalent */
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0.3125rem; /* 5px equivalent */
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: var(--accent);
    color: var(--dark);
}

.btn-secondary:hover {
    background-color: var(--accent-dark);
    color: var(--dark);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

/* ========== SECTION TITLES ========== */
.section-title {
    text-align: center;
    margin-bottom: 3.125rem; /* 50px equivalent */
    font-size: 2.2rem;
    color: var(--primary);
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 5rem; /* 80px equivalent */
    height: 0.25rem; /* 4px equivalent */
    background-color: var(--accent);
    bottom: -0.625rem; /* 10px equivalent */
    left: 50%;
    transform: translateX(-50%);
}

/* ========== ABOUT SECTION ========== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem; /* 40px equivalent */
    align-items: center;
}

.about-img {
    width: 100%;
    border-radius: 0.5rem; /* 8px equivalent */
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

.about-img:hover {
    transform: scale(1.02);
}

.about-content h2 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: var(--spacing-md);
}

.about-content p {
    margin-bottom: var(--spacing-md);
}

.highlight {
    font-weight: 600;
    color: var(--primary);
}

/* ========== MISSION & VISION ========== */
.mission-vision {
    background-color: var(--secondary);
}

.mv-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem; /* 40px equivalent */
}

.mv-card {
    background-color: white;
    padding: 2.5rem; /* 40px equivalent */
    border-radius: 0.5rem; /* 8px equivalent */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.mv-card h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 0.625rem; /* 10px equivalent */
}

.mv-icon {
    font-size: 1.8rem;
    color: var(--accent);
}

.mv-card ul {
    list-style-position: inside;
    margin-top: var(--spacing-md);
}

.mv-card li {
    margin-bottom: 0.625rem; /* 10px equivalent */
}

/* ========== QUALITY SECTION ========== */
.quality {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/quality-bg.jpg') center/cover no-repeat fixed;
    color: white;
}

.quality .section-title {
    color: white;
}

.quality-content {
    max-width: 50rem; /* 800px equivalent */
    margin: 0 auto;
    text-align: center;
}

.quality-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.875rem; /* 30px equivalent */
    margin-top: 2.5rem; /* 40px equivalent */
    text-align: left;
}

.quality-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9375rem; /* 15px equivalent */
}

.quality-icon {
    background-color: var(--accent);
    color: var(--dark);
    width: 2.5rem; /* 40px equivalent */
    height: 2.5rem; /* 40px equivalent */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

/* ========== CONTACT FORM ========== */
.contact form {
    max-width: 37.5rem; /* 600px equivalent */
    margin: 0 auto;
    display: grid;
    gap: 1.25rem; /* 20px equivalent */
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* 8px equivalent */
}

.form-group label {
    font-weight: 500;
}

.form-control {
    padding: 0.75rem 0.9375rem; /* 12px 15px equivalent */
    border: 1px solid var(--border);
    border-radius: 0.25rem; /* 4px equivalent */
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.15);
}

textarea.form-control {
    min-height: 9.375rem; /* 150px equivalent */
    resize: vertical;
}

/* ========== FOOTER ========== */
footer {
    background-color: var(--dark);
    color: white;
    padding: 3.75rem 0 0; /* 60px 0 0 equivalent */
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem; /* 40px equivalent */
}

.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 1.25rem; /* 20px equivalent */
    color: var(--accent);
}

.footer-col ul {
    list-style: none;
    margin: 0;
}

.footer-col li {
    margin-bottom: 0.625rem; /* 10px equivalent */
}

.footer-col a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    margin-top: 2.5rem; /* 40px equivalent */
    text-align: center;
    padding: 1.25rem 0; /* 20px 0 equivalent */
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ========== PAGE HEADER ========== */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/page-header.jpg') center/cover no-repeat;
    height: 18.75rem; /* 300px equivalent */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.9375rem; /* 15px equivalent */
}

.breadcrumbs {
    font-size: 1rem;
}

.breadcrumbs a {
    color: var(--accent);
    text-decoration: none;
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem; /* 40px equivalent */
}

.contact-info-card {
    background: white;
    border-radius: 0.5rem; /* 8px equivalent */
    padding: 2.5rem; /* 40px equivalent */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-item {
    margin-bottom: 1.875rem; /* 30px equivalent */
    display: flex;
    align-items: flex-start;
    gap: 0.9375rem; /* 15px equivalent */
}

.contact-icon {
    width: 2.5rem; /* 40px equivalent */
    height: 2.5rem; /* 40px equivalent */
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.map-container {
    border-radius: 0.5rem; /* 8px equivalent */
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    min-height: 25rem; /* 400px equivalent */
}

/* ========== PRODUCTS PAGE ========== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem; /* 30px equivalent */
}

.product-card {
    background: white;
    border-radius: 0.5rem; /* 8px equivalent */
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-img {
    width: 100%;
    height: 12.5rem; /* 200px equivalent */
    object-fit: cover;
}

.product-content {
    padding: 1.25rem; /* 20px equivalent */
}

.product-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.625rem; /* 10px equivalent */
}

.product-meta {
    color: var(--text-light);
    margin-bottom: 0.9375rem; /* 15px equivalent */
    font-size: 0.9rem;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.fade-in {
    animation: fadeIn 1s ease;
}

.slide-up {
    animation: slideUp 0.6s ease;
}

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xxl); }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xxl); }

/* ========== RESPONSIVE STYLES ========== */
/* For larger desktops */
@media (min-width: 1400px) {
    html {
        font-size: 112.5%; /* 18px */
    }
}

/* For medium screens */
@media (max-width: 1200px) {
    html {
        font-size: 93.75%; /* 15px */
    }
}

/* For tablets */
@media (max-width: 992px) {
    html {
        font-size: 87.5%; /* 14px */
    }
    
    .about-container, 
    .mv-container, 
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .quality-list {
        grid-template-columns: 1fr;
    }
    
    .logo {
        max-width: 11.25rem; /* 180px equivalent */
    }
    
    .logo img {
        max-height: 4.5rem;
    }
}

/* For mobile phones landscape */
@media (max-width: 768px) {
    html {
        font-size: 81.25%; /* 13px */
    }
    
    .container {
        width: 90%;
    }
    
    .section {
        padding: 3.125rem 0; /* 50px equivalent */
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 0.625rem; /* 10px equivalent */
        align-items: center;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 1.25rem; /* 20px equivalent */
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    nav.active ul {
        display: flex;
    }
    
    .hero {
        min-height: 25rem;
    }
    
    .logo {
        max-width: 12.375rem; /* 150px equivalent */
    }
    
    .logo img {
        max-height: 4.5rem;
    }
}

/* For smaller mobile phones */
@media (max-width: 480px) {
    html {
        font-size: 75%; /* 12px */
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .logo {
        max-width: 8.125rem; /* 130px equivalent */
    }
    
    .logo img {
        max-height: 3rem;
    }
    
    .btn {
        padding: 0.625rem 1.25rem; /* Smaller padding for buttons */
        font-size: 0.9375rem;
    }
}
/* ========== ABOUT PAGE STYLES ========== */
.about-content-full {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 3rem;
}

.about-image-container {
    position: relative;
}

.about-founder-img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

.about-founder-img:hover {
    transform: scale(1.02);
}

.about-text h3 {
    color: var(--primary);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Values Section */
.values-section {
    background-color: var(--secondary);
}

.values-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.875rem;
}

.value-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.value-icon {
    background-color: var(--primary);
    color: white;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.value-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    position: absolute;
    width: 25px;
    height: 25px;
    right: -12.5px;
    background-color: white;
    border: 4px solid var(--accent);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -12.5px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.timeline-content h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

/* Expertise Section */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.875rem;
}

.expertise-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.2rem;
    object-fit: contain;
}

.expertise-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/cta-bg.jpg') center/cover no-repeat fixed;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-content .btn {
    margin: 0 0.625rem;
}

/* Responsive styles for About page */
@media (max-width: 992px) {
    .about-content-full {
        grid-template-columns: 1fr;
    }
    
    .about-image-container {
        margin-bottom: 2rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .values-container, 
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-dot {
        left: 18px;
        right: auto;
    }
    
    .timeline-item:nth-child(even) .timeline-dot {
        left: 18px;
    }
}

@media (max-width: 576px) {
    .values-container, 
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}
/* Add these styles to your main.css file */

/* Contact Page Specific Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-box,
.contact-form-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #0056b3;
    min-width: 40px;
    height: 40px;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.contact-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Form Styles */
#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #0056b3;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

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

.form-message {
    margin-top: 1rem;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Map Section */
.map-section {
    background-color: #f8f9fa;
}

.map-container {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, #0056b3, #007bff);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-content .btn {
    margin: 0 0.5rem;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #0056b3;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info-box {
        order: 2;
    }
    
    .contact-form-box {
        order: 1;
    }
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-content .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}