/* css/style.css */

/* ============================================
   CSS VARIABLES - Easy theming & dark mode ready
   ============================================ */
:root {
    /* Brand Colors - Extracted from logo */
    --primary-green: #4CAF50;
    --primary-green-dark: #3d8b40;
    --primary-green-light: #80e27e;
    
    --secondary-dark: #2C3E50;
    --accent-orange: #FF9800;
    --accent-orange-dark: #f57c00;
	--teal-blue: #1FA0C9
	--dark-cyan:#1C8FB3
    
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #6c757d;
    --border-light: #e9ecef;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    
    /* Spacing */
    --container-padding: clamp(1rem, 5vw, 4rem);
    --section-spacing: 2rem;
    
    /* Border Radius */
    --radius-card: 16px;
    --radius-button: 50px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.1);
}

/* Dark mode ready - just add class to body */
body.dark-mode {
    --light-bg: #1a1a1a;
    --white: #2d2d2d;
    --text-dark: #f0f0f0;
    --text-light: #b0b0b0;
    --border-light: #404040;
    --glass-bg: rgba(45, 45, 45, 0.85);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-card);
    box-shadow: var(--glass-shadow);
}

.gradient-text {
   background: #0D47A1;

    -webkit-background-clip: text;
    background-clip: text;
    color: #0D47A1;
    font-weight: 800;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 2px;                 /* reduced from 8px */
    font-size: 0.85rem;       /* slightly compact */
    font-weight: 600;
    letter-spacing: 0.5px;    /* reduced from 1px */
    text-transform: uppercase;
    color: var(--primary-green);
    background: rgba(76, 175, 80, 0.1);
    padding: 0.5rem 0.9rem;  /* reduced padding */
    border-radius: 8px;       /* slightly tighter */
    margin-bottom: 1rem;   /* reduced bottom spacing */


}

.section-tag i {
    font-size: 1rem;
}

.chip {
    background: rgba(76, 175, 80, 0.15);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-green-dark);
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-button);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-base);
    border: 1px solid transparent;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

/* Primary Button */
.btn-primary {
    background: #0D47A1;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(13, 71, 161, 0.35);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1890B5, #0B3C8C);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(13, 71, 161, 0.45);
}


/* Outline Button */
.btn-outline {
    background: transparent;
    border: 2px solid #0D47A1;
    color: #0D47A1;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #1FA0C9, #0D47A1);
    color: #ffffff;
    transform: translateY(-2px);
}


/* Large Button */
.btn-large {
    padding: 1.2rem 2.8rem;
    font-size: 1.1rem;
}


/* Full Width Button */
.btn-full {
    width: 100%;
    justify-content: center;
}


/* Disabled State */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ============================================
   HEADER STYLES (injected via JS)
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
   
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: right;
}

.logo a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary-dark);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary-dark);
}
/* Logo styling */
.logo {
    display: flex;
    align-items: center;
	gap: 20px;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: transform var(--transition-fast);
}

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

/* Responsive logo */
@media (max-width: 768px) {
    .logo-img {
        height: 32px;
    }
}

/* Footer logo area */
.footer-col:first-child {
    display: flex;
    flex-direction: column;
}

.footer-col:first-child > div:first-child {
    margin-bottom: 100px;
}
.nav-links {
    display: flex;
    gap: 1.8rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-green);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(76, 175, 80, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    color: var(--primary-green);
    font-weight: 600;
}

.header-phone i {
    font-size: 1rem;
}

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

/* ============================================
   FOOTER STYLES (injected via JS)
   ============================================ */
.site-footer {
    background: var(--secondary-dark);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 0rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 2fr 2fr 1.5fr;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: var(--primary-green);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.contact-info-footer {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-info-footer i {
    width: 25px;
    color: var(--primary-green);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 0rem;
    border-top: 0px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-green-dark) 100%); */
    /* CLIENT TO REPLACE WITH ACTUAL BANNER IMAGE */
    background-image: url('../images/banner.jpg'); 
    background-size: cover;
    background-position: center;
	
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(44, 62, 80, 0.9), rgba(76, 175, 80, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 85vh;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 700px;
    padding: 3rem;
    animation: fadeInUp 1s ease;
}

.hero-text h1 {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    color: Blue;
    margin-bottom: 1rem;
}

.hero-subhead {
    font-size: 1.3rem;
    color: #0D47A1 ;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: black;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-cta .btn-outline {
    border-color: white;
    color: white;
}

.hero-cta .btn-outline:hover {
    background: white;
    color: var(--secondary-dark);
}

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

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 5rem 0;
    margin-top: -3rem;
    position: relative;
    z-index: 3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-item {
    padding: 1rem;
    text-align: center;
    background: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ============================================
   SERVICES OVERVIEW
   ============================================ */
.services-overview {
        margin-top: 0;

    background: var(--light-bg);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0rem;
}

.section-header p {
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    padding: 0.5rem 2rem;
    background: white;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-green);
    transition: height var(--transition-base);
}

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

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-tag {
    display: inline-block;
    background: rgba(76, 175, 80, 0.1);
    color: var(--primary-green-dark);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-link {
    color: var(--primary-green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap var(--transition-fast);
}

.card-link:hover {
    gap: 10px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-choose-us {
    background: linear-gradient(135deg, var(--secondary-dark), #1a2632);
    padding: var(--section-spacing) 0;
    color: white;
}

.why-choose-us .section-header h2,
.why-choose-us .section-tag {
    color: white;
}

.why-choose-us .section-tag {
    background: rgba(255, 255, 255, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1;
}

.feature-card {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: var(--transition-base);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 1rem 0 5rem;
}

.cta-content {
    padding: 1rem;
    text-align: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 0rem;
    color: var(--secondary-dark);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding: 1.5rem 0 2rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(76, 175, 80, 0.05), transparent);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.story-section {
    padding: 0.5rem 0 4rem;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 0.5rem;
    align-items: center;
}

.split-text .lead-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.story-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.signature-block {
    margin-top: 0.5rem;
}

.split-visual {
    padding: 1rem;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(145deg, var(--primary-green), var(--secondary-dark));
    color: white;
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.visual-grid i {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.years-badge {
    text-align: center;
}

.years-number {
    font-size: 4rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.years-text {
    font-size: 1rem;
    opacity: 0.9;
}

.mission-vision {
    padding: 0.5rem 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0rem;
}

.mv-card {
    padding: 0.5rem 2rem;
    text-align: center;
    background: white;
}

.mv-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.values-section {
    padding: 1rem 0;
    background: var(--light-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.value-card {
    padding: 1rem;
    text-align: center;
    background: white;
}

.value-icon {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.full-services {
    padding: 2rem 0 5rem;
}

.service-category {
    margin-bottom: 1rem;
}

.category-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--secondary-dark);
}

.category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: white;
    border-radius: 12px;
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.service-detailed-card {
    padding: 0.5rem;
    background: white;
    transition: var(--transition-base);
}

.service-detailed-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-detailed-icon {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.service-detailed-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.service-detailed-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.services-cta {
    padding: 0rem 0;
}

/* ============================================
   LOCATION PAGE
   ============================================ */
.head-office {
    padding: 0.5rem 0 4rem;
}

.office-highlight {
    text-align: center;
    margin-bottom: 1rem;
}

.office-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
}

.office-map {
    overflow: hidden;
    padding: 0;
    background: #f0f0f0;
}

.office-details {
    padding: 2rem;
    background: white;
}

.detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
    min-width: 40px;
}

.detail-item h4 {
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.detail-item p {
    color: var(--text-light);
}

.landmark {
    font-size: 0.9rem;
    margin-top: 0.3rem;
    color: var(--primary-green);
}

.all-branches {
    padding: 0rem 0;
    background: var(--light-bg);
}

.branches-accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.branch-state {
    margin-bottom: 1.5rem;
}

.state-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.5rem;
    background: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.state-header:hover {
    background: rgba(76, 175, 80, 0.05);
}

.state-header i:last-child {
    transition: transform var(--transition-fast);
}

.state-header.active i:last-child {
    transform: rotate(180deg);
}

.state-content {
    display: none;
    padding: 0.5rem;
    background: white;
    border-top: 1px solid var(--border-light);
}

.state-content.show {
    display: block;
}

.branch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 0.5rem;
}

.branch-card {
    padding: 0.5rem;
    background: var(--light-bg);
    border-radius: 12px;
}

.branch-card h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.branch-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.branch-phone {
    font-weight: 600;
    color: var(--secondary-dark);
}

.service-note {
    padding: 1rem 0;
}

.note-card {
    padding: 1rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: white;
}

.note-card i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    padding: 2rem 0 5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
}

.contact-form-card {
    padding: 2.5rem;
    background: white;
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-row {
    margin-bottom: 1.5rem;
}

.form-row label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.required {
    color: var(--accent-orange);
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
}

.form-row input.error,
.form-row textarea.error {
    border-color: var(--accent-orange);
}

.error-message {
    color: var(--accent-orange);
    font-size: 0.8rem;
    margin-top: 0.2rem;
    display: block;
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-row input {
    width: auto;
}

.checkbox-row label {
    margin-bottom: 0;
    font-weight: normal;
}

.btn-loading {
    display: none;
}

.form-success {
    text-align: center;
    padding: 2rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 12px;
    margin-top: 1rem;
}

.form-success i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.info-card {
    padding: 2rem;
    background: white;
    margin-bottom: 1.5rem;
}

.info-card h4 {
    margin-bottom: 1.5rem;
    color: var(--secondary-dark);
}

.info-card h4 i {
    color: var(--primary-green);
    margin-right: 0.5rem;
}

.address {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.map-thumbnail {
    margin-top: 1rem;
}

.map-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--primary-green);
    font-weight: 500;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail i {
    font-size: 1.2rem;
    color: var(--primary-green);
    min-width: 25px;
}

.contact-detail strong {
    display: block;
    margin-bottom: 0.2rem;
}

.contact-detail p a {
    color: var(--text-light);
}

.contact-detail p a:hover {
    color: var(--primary-green);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed var(--border-light);
}

.hours-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
    color: var(--primary-green-dark);
}

.social-links-large {
    display: flex;
    gap: 1rem;
}

.social-links-large a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--light-bg);
    border-radius: 50%;
    color: var(--secondary-dark);
    font-size: 1.2rem;
    transition: var(--transition-base);
}

.social-links-large a:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
}

.faq-section {
    padding: 1rem 0;
    background: var(--light-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    padding: 1rem;
    background: white;
}

.faq-item h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.faq-item p {
    color: var(--text-light);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .split-layout,
    .office-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    /* UPDATED: Mobile menu panel */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: auto;                    /* Changed from 80% to auto - width based on content */
        min-width: 280px;               /* Minimum width */
        max-width: 85vw;                /* Maximum width relative to viewport */
        height: auto;                   /* Changed from 100vh to auto - height based on content */
        min-height: auto;               /* Remove full height */
        background: white !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        flex-direction: column;
        justify-content: flex-start;     /* Changed from center to flex-start - items from top */
        padding: 20px 0 30px 0;          /* Add top padding */
        transition: right var(--transition-base);
        box-shadow: var(--shadow-lg);
        z-index: 1001;
        border-radius: 20px 0 0 20px;    /* Optional: rounded corners on left side */
    }
    
    /* Close button - ADD THIS NEW SECTION */
    .nav-links .close-menu {
        display: flex;
        justify-content: flex-end;
        padding: 10px 20px 0 20px;
        margin-bottom: 10px;
    }
    
    .nav-links .close-btn {
        background: #f0f3f8;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #333;
        transition: 0.2s;
    }
    
    .nav-links .close-btn:hover {
        background: #e1e6ef;
        transform: scale(1.05);
    }
    
    /* Menu items - from top */
    .nav-links a {
        font-size: 1.2rem;
        padding: 15px 30px;              /* Add horizontal padding for spacing */
        width: 100%;
        text-align: left;                 /* Left align text */
        border-bottom: 1px solid #edf2f7; /* Separator lines */
        white-space: nowrap;               /* Keep text in one line to determine width */
    }
    
    /* Remove the pseudo-element for mobile if it causes issues */
    .nav-links a::after {
        display: none;
    }
    
    /* Header phone in mobile menu */
    .header-phone {
        display: flex;                     /* Show in mobile menu */
        margin: 10px 30px;
        padding: 0.5rem 1.2rem;
    }
    
    /* Get Quote button in mobile menu */
    .nav-links .btn {
        margin: 10px 30px;
        width: auto;                       /* Don't force full width */
        justify-content: center;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    /* Rest of your existing mobile styles remain the same */
    .hero-text {
        padding: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid,
    .features-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        padding: 0.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .branch-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-form-card,
    .info-card {
        padding: 1.5rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.service-icon {
    animation: float 3s ease-in-out infinite;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .site-header,
    .site-footer,
    .btn,
    .hero-cta {
        display: none;
    }
}
/* Blue Primary Button */
.btn-primary.blue-btn {
    background: #2196F3 !important;
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3) !important;
}

.btn-primary.blue-btn:hover {
    background: #1976D2 !important;
    box-shadow: 0 12px 28px rgba(33, 150, 243, 0.4) !important;
}

/* Blue Outline Button */
.btn-outline.blue-outline-btn {
    border: 2px solid #2196F3 !important;
    color: #2196F3 !important;
}

.btn-outline.blue-outline-btn:hover {
    background: #2196F3 !important;
    color: white !important;
}
