/* ---- Link Theme (brand blue) ---- */
:root{
  --link:        #1e40af;  /* brand blue primary */
  --link-hover:  #1a3693;  /* darker on hover */
  --link-active: #152c75;  /* pressed state */
  --link-visited:#4f6fd4;  /* softer visited tone */
  --link-ring:   rgba(30, 64, 175, 0.4); /* focus ring */
}

/* For dark background sections */
.on-dark{
  --link:        #93b4ff;
  --link-hover:  #b3c8ff;
  --link-active: #d9e2ff;
  --link-visited:#b4c7f5;
  --link-ring:   rgba(147, 180, 255, 0.45);
}


/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Base link styling ---- */
a {
  color: var(--link);
  text-decoration: none;
  text-transform: uppercase;
  text-underline-offset: .2em;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 2px;                 
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: color .18s ease, background-size .18s ease;
}

a:hover {
  color: var(--link-hover);
  background-size: 100% 2px;              
}

a:active {
  color: var(--link-active);
}

a:visited {
  color: var(--link-visited);
}

/* Accessible focus outline */
a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 .2rem var(--link-ring);
  border-radius: 2px;
}

/* Muted link option */
a.link-muted { 
  color: inherit; 
  opacity: .8; 
}
a.link-muted:hover { 
  opacity: 1; 
  background-size: 100% 1px; 
}

/* Instant underline for reduced motion preference */
@media (prefers-reduced-motion: reduce){
  a { transition: none; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-f {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.95);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
}

.logo-f:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.logo-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e3a8a;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #1e3a8a;
}

.cta-button {
    background: #1e3a8a;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #93c5fd;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: white;
    color: #1e3a8a;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: #1e3a8a;
    transform: translateY(-3px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-owner-image {
    width: 100%;
    height: auto;
    border-radius: 25px;
    border: 4px solid #ffffff;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(30, 58, 138, 0.1),
        0 0 0 8px rgba(30, 58, 138, 0.05),
        0 0 0 16px rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-5deg);
}

.hero-owner-image::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    background: linear-gradient(135deg, #1e3a8a, #1e40af, #3b82f6);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.8;
    filter: blur(8px);
    transition: all 0.4s ease;
}

.hero-owner-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(30, 58, 138, 0.2),
        0 0 0 12px rgba(30, 58, 138, 0.1),
        0 0 0 20px rgba(255, 255, 255, 0.9);
    border-color: #1e3a8a;
}

.hero-owner-image:hover::before {
    opacity: 1;
    filter: blur(12px);
    transform: scale(1.1);
}

.image-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.image-placeholder p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 80%;
    margin: 0 auto;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 0;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #1e3a8a;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.service-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s ease;
}

.service-card:hover .service-image .image-placeholder {
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    color: white;
}

.service-image .image-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.service-image .image-placeholder p {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem 2rem 2.5rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
}

.services-cta {
    text-align: center;
    margin-top: 40px;
}

.dual-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-secondary {
    background: transparent !important;
    color: #1e3a8a !important;
    border: 2px solid #1e3a8a;
}

.cta-secondary:hover {
    background: #1e3a8a !important;
    color: white !important;
    transform: translateY(-2px);
}

.service-btn{
    font-size: 2rem;
}

/* Gallery Button Styles */
.gallery-btn {
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.gallery-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
    background: linear-gradient(135deg, #1e40af, #1e5bb3);
}

.gallery-btn i {
    font-size: 1rem;
}

/* Gallery Modal Styles */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal.active {
    visibility: visible;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    height: 90vh;
    max-height: 800px;
    background: white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.gallery-modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
}

.modal-header h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #e2e8f0;
    color: #1e3a8a;
}

.modal-body {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.gallery-container {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1e3a8a;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.gallery-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: #f8fafc;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    min-height: 0;
}

#gallery-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-thumbnails {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    max-height: 80px;
    overflow-y: auto;
}

.thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    cursor: pointer;
    object-fit: cover;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: #1e3a8a;
    opacity: 1;
}

.gallery-counter {
    text-align: center;
    color: #64748b;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Responsive Design for Gallery Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        height: 95vh;
        max-height: none;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h3 {
        font-size: 1.2rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .gallery-thumbnails {
        max-height: 60px;
    }
    
    .thumbnail {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        height: 98vh;
        max-height: none;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 0.75rem 1rem;
    }
    
    .modal-body {
        padding: 0.75rem;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .gallery-thumbnails {
        max-height: 50px;
        gap: 0.25rem;
    }
    
    .thumbnail {
        width: 40px;
        height: 40px;
    }
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: white;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #64748b;
    line-height: 1.6;
}

.benefits-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
}

.about-content {
    text-align: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
    text-align: center;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: white;
    text-align: center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #93c5fd;
    transition: opacity 0.3s ease;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a, #1e40af);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #1e3a8a;
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Projects Section */
.projects {
    padding: 80px 0;
    background: #f8fafc;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    height: 200px;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.project-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: transform 0.3s ease;
}

.project-card:hover .project-thumbnail {
    transform: scale(1.05);
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.project-card:hover .project-image::before {
    transform: translateX(100%);
}

.project-image .image-placeholder {
    background: transparent;
    border: none;
    color: white;
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Hide placeholder when image is loaded */
.project-image:has(.project-thumbnail[src]) .image-placeholder {
    display: none;
}

.project-image .image-placeholder i {
    font-size: 3rem;
    opacity: 0.8;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.project-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.project-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
    background: #f1f5f9;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.project-details i {
    color: #1e3a8a;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #64748b;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3a8a;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Google Maps Section */
.map-section {
    padding: 60px 0;
    background: white;
    border-top: 1px solid #e2e8f0;
}

/* Google Maps Specific Styles */
.map-info-window {
    padding: 0;
    max-width: 250px;
}

.map-info-window h4 {
    color: #1e3a8a;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.map-info-window p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0 0 0.75rem 0;
}

.service-types {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.service-tag {
    background: #3b82f6;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.map-controls {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 10px;
    backdrop-filter: blur(10px);
}

.map-legend {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #374151;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.legend-dot.main {
    background: #1e3a8a;
}

.legend-dot.service {
    background: #3b82f6;
}

.legend-dot.coverage {
    background: rgba(59, 130, 246, 0.3);
    border: 2px solid #3b82f6;
}

/* Google Maps Container */
#google-map {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

/* Responsive adjustments for Google Maps */
@media (max-width: 768px) {
    #google-map {
        height: 300px;
    }
    
    .map-controls {
        padding: 0.75rem;
        margin: 5px;
    }
    
    .legend-item {
        font-size: 0.8rem;
    }
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-header h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.map-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #f8fafc;
}

#google-map {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3a8a;
    overflow: hidden;
    border-radius: 20px;
}

/* Mockup Map Styling */
.mockup-map {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 20px;
    overflow: hidden;
}

.map-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(30, 58, 138, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30, 58, 138, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(30, 58, 138, 0.05) 50%, transparent 60%);
}

.map-roads {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 30%, rgba(255, 255, 255, 0.3) 32%, rgba(255, 255, 255, 0.3) 34%, transparent 36%),
        linear-gradient(0deg, transparent 40%, rgba(255, 255, 255, 0.3) 42%, rgba(255, 255, 255, 0.3) 44%, transparent 46%),
        linear-gradient(45deg, transparent 60%, rgba(255, 255, 255, 0.2) 62%, rgba(255, 255, 255, 0.2) 64%, transparent 66%);
}

.service-area-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 3px solid rgba(30, 58, 138, 0.3);
    border-radius: 50%;
    background: rgba(30, 58, 138, 0.1);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.5; }
}

@keyframes emergency-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.map-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #1e3a8a;
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.map-marker:hover {
    transform: scale(1.3);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.4);
}

.map-marker::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid #1e3a8a;
}

.marker-info {
    position: absolute;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    font-size: 0.9rem;
    color: #1e3a8a;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.marker-info.show {
    opacity: 1;
    transform: translateY(0);
}

.marker-info::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid white;
}

.map-title {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    color: #1e3a8a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-legend {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    color: #64748b;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.legend-item:last-child {
    margin-bottom: 0;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1e3a8a;
    border: 1px solid white;
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-width: 250px;
}

.service-areas h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.service-areas ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-areas li {
    font-size: 0.9rem;
    color: #64748b;
    padding: 0.25rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.service-areas li:last-child {
    border-bottom: none;
    font-weight: 600;
    color: #1e3a8a;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    width: 300px;
    height: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-footer{
    width: 150px;
    height: 150px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6.5px, -7px);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        padding: 0;
        box-shadow: none;
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    /* Mobile menu header */
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 80px;
        background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
        z-index: 1;
    }

    /* Mobile menu close button */
    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        border-radius: 50%;
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }

    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }

    /* Mobile menu logo */
    .nav-menu::after {
        content: '';
        position: absolute;
        top: 20px;
        left: 20px;
        width: 40px;
        height: 40px;
        background-image: url(./assets/logo.png);
        background-size: cover;
        background-position: center;
        border-radius: 8px;
        z-index: 2;
    }

    .nav-menu li {
        margin: 0;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
        list-style: none;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu li:nth-child(5) { transition-delay: 0.3s; }

    .nav-menu a {
        color: #333;
        font-size: 1.1rem;
        font-weight: 500;
        text-decoration: none;
        padding: 20px 30px;
        transition: all 0.3s ease;
        display: block;
        width: 100%;
        background: transparent;
        border: none;
        position: relative;
        margin-top: 80px;
    }

    .nav-menu a::before {
        display: none;
    }

    .nav-menu a:hover {
        color: #1e3a8a;
        background: rgba(30, 58, 138, 0.05);
    }

    .nav-menu .cta-button {
        background: #1e3a8a;
        color: white;
        border: none;
        margin: 20px 30px;
        padding: 15px 30px;
        border-radius: 8px;
        font-weight: 600;
        text-align: center;
        max-width: none;
        width: calc(100% - 60px);
    }

    .nav-menu .cta-button:hover {
        background: #1e40af;
        transform: none;
        box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
    }

    /* Active state for mobile menu links */
    .nav-menu a.active {
        color: #1e3a8a;
        background: rgba(30, 58, 138, 0.08);
        border-left: 4px solid #1e3a8a;
        font-weight: 600;
    }

    .nav-menu a.active::before {
        display: none;
    }

    /* Navbar backdrop when mobile menu is open */
    .navbar.menu-open {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px);
    }

    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.01)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.01)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        pointer-events: none;
        opacity: 0.5;
    }

    .nav-menu li {
        margin: 1.5rem 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        list-style: none;
        width: 100%;
        text-align: center;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu li:nth-child(5) { transition-delay: 0.3s; }

    .nav-menu a {
        color: #1e3a8a;
        font-size: 1.3rem;
        font-weight: 500;
        text-decoration: none;
        padding: 1rem 1.5rem;
        border-radius: 12px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    }

    .nav-menu a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.1);
        transition: left 0.3s ease;
        border-radius: 12px;
    }

    .nav-menu a:hover::before {
        left: 0;
    }

    .nav-menu a:hover {
        color: white;
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .nav-menu .cta-button {
        background: #1e3a8a;
        color: white !important;
        border: none;
        margin: 20px 30px;
        padding: 15px 30px;
        border-radius: 8px;
        font-weight: 600;
        text-align: center;
        max-width: none;
        width: calc(100% - 60px);
        text-decoration: none;
        display: block;
    }

    .nav-menu .cta-button:hover {
        background: #1e40af;
        transform: none;
        box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
        color: white !important;
    }

    .nav-menu .cta-button::before {
        display: none;
    }

    /* Navbar backdrop when mobile menu is open */
    .navbar.menu-open {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px);
    }



    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-image {
        max-width: 350px;
        margin: 0 auto;
    }

    .hero-owner-image {
        border-radius: 20px;
        border: 3px solid #ffffff;
        box-shadow: 
            0 15px 40px rgba(0, 0, 0, 0.2),
            0 0 0 1px rgba(30, 58, 138, 0.1),
            0 0 0 6px rgba(30, 58, 138, 0.05),
            0 0 0 12px rgba(255, 255, 255, 0.8);
        transform: perspective(800px) rotateY(-3deg);
    }
    
    .hero-owner-image::before {
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
        border-radius: 25px;
        filter: blur(6px);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .benefits-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        height: 150px;
    }
    
    .service-content {
        padding: 1.5rem 1.5rem 2rem;
    }

    .dual-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: center;
    }

    .dual-cta .cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .map-overlay {
        position: relative;
        top: auto;
        right: auto;
        margin: 1rem;
        max-width: none;
    }
    
    #google-map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-image {
        max-width: 280px;
    }

    .hero-owner-image {
        border-radius: 15px;
        border: 2px solid #ffffff;
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.15),
            0 0 0 1px rgba(30, 58, 138, 0.1),
            0 0 0 4px rgba(30, 58, 138, 0.05),
            0 0 0 8px rgba(255, 255, 255, 0.8);
        transform: perspective(600px) rotateY(-2deg);
    }
    
    .hero-owner-image::before {
        top: -6px;
        left: -6px;
        right: -6px;
        bottom: -6px;
        border-radius: 20px;
        filter: blur(4px);
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #1e3a8a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1e40af;
}

/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(30, 64, 175, 0.9) 100%);
}

.typing-header {
    position: relative;
    overflow: hidden;
    opacity: 1; /* Show by default for accessibility */
    transition: opacity 0.3s ease;
}

/* Hide typing headers initially when JavaScript is enabled */
.js-enabled .typing-header {
    opacity: 0;
}

.typing-header.typing-started {
    opacity: 1; /* Show when typing starts */
}

.typing-header::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 0;
    height: 100%;
    width: 2px;
    background: #1e3a8a;
    animation: blink 1s infinite;
    opacity: 0; /* Start hidden */
}

.typing-header.typing-started::after {
    opacity: 1; /* Show cursor when typing starts */
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Our Story Section */
.our-story {
    padding: 5rem 0;
    background: #f8fafc;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.story-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.highlight-item i {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-top: 0.25rem;
}

.highlight-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mission & Values Section */
.mission-values {
    padding: 5rem 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.2);
    border-color: #1e3a8a;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.value-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Expertise Section */
.expertise {
    padding: 5rem 0;
    background: #f8fafc;
}

.expertise-content {
    max-width: 900px;
    margin: 0 auto;
}

.expertise-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.expertise-text > p {
    font-size: 1.1rem;
    color: #4b5563;
    text-align: center;
    margin-bottom: 3rem;
}

.expertise-areas {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.expertise-area {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #1e3a8a;
    transition: all 0.3s ease;
}

.expertise-area:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 25px rgba(30, 58, 138, 0.15);
}

.area-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.area-header i {
    font-size: 1.8rem;
    color: #1e3a8a;
}

.area-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e3a8a;
}

.expertise-area p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1rem;
}

/* Team Section */
.team {
    padding: 5rem 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.2);
}

.member-image {
    height: 200px;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-image .image-placeholder {
    background: transparent;
    color: white;
}

.member-image .image-placeholder i {
    font-size: 3rem;
    color: white;
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #1e40af;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.member-info p {
    color: #6b7280;
    line-height: 1.6;
}

/* Certifications Section */
.certifications {
    padding: 5rem 0;
    background: white;
}

.certifications-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.certifications-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.certifications-text > p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.cert-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cert-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cert-item i {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-top: 0.25rem;
}

.cert-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.cert-item p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

.certifications-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Service Area About Section */
.service-area-about {
    padding: 5rem 0;
    background: #f8fafc;
}

.area-content {
    max-width: 800px;
    margin: 0 auto;
}

.area-text p {
    font-size: 1.1rem;
    color: #4b5563;
    text-align: center;
    margin-bottom: 2rem;
}

.area-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.area-column ul {
    list-style: none;
    padding: 0;
}

.area-column li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
    font-weight: 500;
}

.area-column li:last-child {
    border-bottom: none;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

/* Active Navigation State */
.nav-menu a.active {
    color: #1e3a8a;
    font-weight: 600;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .story-content,
    .certifications-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .area-list {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .story-text h2,
    .expertise-text h2,
    .certifications-text h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}

/* Services Page Specific Styles */
.services-hero {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(30, 64, 175, 0.9) 100%);
}

/* Services Overview Section */
.services-overview {
    padding: 5rem 0;
    background: #f8fafc;
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.overview-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.2);
    border-color: #1e3a8a;
}

.overview-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.overview-card:hover .overview-icon {
    transform: scale(1.1);
}

.overview-icon i {
    font-size: 2rem;
    color: white;
}

.overview-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.overview-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.overview-link {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.overview-link:hover {
    color: #1e40af;
    gap: 0.75rem;
}

/* Service Detail Sections */
.service-detail {
    padding: 5rem 0;
}

.service-detail:nth-child(even) {
    background: #f8fafc;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail-content.reverse {
    direction: rtl;
}

.service-detail-content.reverse > * {
    direction: ltr;
}

.service-detail-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.service-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 2rem;
}

.service-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-top: 0.25rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

.service-applications h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.application-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.application-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.15);
}

.application-item i {
    font-size: 1.2rem;
    color: #1e3a8a;
}

.application-item span {
    font-weight: 500;
    color: #4b5563;
}

/* Process Steps for Vermiculite */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

.service-detail-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 500px;
}

.service-detail-img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    border: 4px solid #ffffff;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(30, 58, 138, 0.1),
        0 0 0 8px rgba(30, 58, 138, 0.05),
        0 0 0 16px rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-5deg);
}

.service-detail-img::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    background: linear-gradient(135deg, #1e3a8a, #1e40af, #3b82f6);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.8;
    filter: blur(8px);
    transition: all 0.4s ease;
}

.service-detail-img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(30, 58, 138, 0.2),
        0 0 0 12px rgba(30, 58, 138, 0.1),
        0 0 0 20px rgba(255, 255, 255, 0.9);
    border-color: #1e3a8a;
}

.service-detail-img:hover::before {
    opacity: 1;
    filter: blur(12px);
    transform: scale(1.1);
}

/* Why Choose Services Section */
.why-choose-services {
    padding: 5rem 0;
    background: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-choose-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.2);
    border-color: #1e3a8a;
}

.why-choose-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.1);
}

.why-choose-icon i {
    font-size: 1.8rem;
    color: white;
}

.why-choose-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.why-choose-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Service Areas Section */
.service-areas-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.areas-content {
    max-width: 900px;
    margin: 0 auto;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.area-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.area-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
    text-align: center;
}

.area-category ul {
    list-style: none;
    padding: 0;
}

.area-category li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
    font-weight: 500;
}

.area-category li:last-child {
    border-bottom: none;
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-detail-content.reverse {
        direction: ltr;
    }
    
    .services-overview-grid,
    .why-choose-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .applications-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .service-detail-text h2 {
        font-size: 2rem;
    }
}

/* Contact Page Specific Styles */
.contact-hero {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(30, 64, 175, 0.9) 100%);
}

/* Quick Contact Cards */
.quick-contact {
    padding: 4rem 0;
    background: #f8fafc;
}

.quick-contact-grid {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    max-width: 90%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.2);
    border-color: #1e3a8a;
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1);
}

.contact-card-icon i {
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.contact-number,
.contact-email,
.service-area {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.contact-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background: white;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.form-info p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-benefits .benefit-item i {
    color: #10b981;
    font-size: 1.2rem;
}

.form-benefits .benefit-item span {
    color: #4b5563;
    font-weight: 500;
}

.contact-form-container {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.enhanced-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #6b7280;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: #1e3a8a;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Service Areas Contact */
.service-areas-contact {
    padding: 5rem 0;
    background: #f8fafc;
}

.map-container-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-map {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Google Maps container for contact page */
#google-map-contact {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.map-background-contact {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #d1d5db 25%, transparent 25%), 
                linear-gradient(-45deg, #d1d5db 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, #d1d5db 75%), 
                linear-gradient(-45deg, transparent 75%, #d1d5db 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.3;
}

.map-roads-contact {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: 
        linear-gradient(90deg, #9ca3af 1px, transparent 1px),
        linear-gradient(0deg, #9ca3af 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.4;
}

.service-area-circle-contact {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    border: 3px solid rgba(30, 58, 138, 0.3);
    border-radius: 50%;
    animation: pulse 3s infinite;
}

.map-marker-contact {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #1e3a8a;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-marker-contact:hover {
    transform: scale(1.5);
    background: #1e40af;
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid #1e3a8a;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.map-title-contact {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    color: #1e3a8a;
    font-size: 0.9rem;
}

.areas-list-contact {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.areas-list-contact h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.areas-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.area-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.75rem;
}

.area-column ul {
    list-style: none;
    padding: 0;
}

.area-column li {
    padding: 0.5rem 0;
    color: #6b7280;
    font-size: 0.9rem;
    border-bottom: 1px solid #f3f4f6;
}

.area-column li:last-child {
    border-bottom: none;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-content {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #1e3a8a;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a8a;
    margin: 0;
}

.faq-question i {
    color: #1e3a8a;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    /*max-height: 0;*/
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 300px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Emergency Contact */
.emergency-contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
}

.emergency-content {
    flex-direction: column;
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.emergency-icon {
    
    font-size: 3rem;
    animation: emergency-pulse 2s infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.emergency-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.emergency-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: #dc2626;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        align-items: center;
    }
    
    .contact-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .map-container-contact {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .areas-columns {
        grid-template-columns: 1fr;
    }
    
    .emergency-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
        margin: 5px auto;
        width: 100%;
    }
    
    .emergency-icon {
        margin-bottom: 1rem;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-info h2 {
        font-size: 2rem;
    }
} 

@media (min-width: 768px) {
    .quick-contact-grid p {
        font-size: 1rem;
    }
}

/* Fix for contact email text fitting between 1004px and 1186px */
@media (min-width: 1004px) and (max-width: 1186px) {
    .contact-email {
        word-break: break-word;
        hyphens: auto;
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .quick-contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }
}

/* Asbestos Education Page Styles */
.asbestos-hero {
    margin-top: 20px;
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 30%, #fca5a5 70%, #ef4444 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.asbestos-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="caution-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(220,38,38,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23caution-pattern)"/></svg>');
    pointer-events: none;
}

.asbestos-hero .hero-content h1 {
    color: #dc2626;
    text-shadow: 0 2px 4px rgba(220, 38, 38, 0.2);
}

.asbestos-hero .hero-content p {
    color: #7f1d1d;
    font-weight: 500;
}

/* Hero Visual Layout */
.asbestos-hero .hero-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.asbestos-hero .hero-content {
    flex: 1;
    max-width: 600px;
}

.asbestos-hero .hero-visual {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pulsing Caution Icon */
.caution-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.caution-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.4);
    animation: caution-pulse 2s ease-in-out infinite;
    position: relative;
}

.caution-circle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid rgba(220, 38, 38, 0.3);
    border-radius: 50%;
    animation: caution-ring 2s ease-in-out infinite;
}

.caution-circle i {
    color: white;
    font-size: 3rem;
    animation: caution-bounce 2s ease-in-out infinite;
}

@keyframes caution-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes caution-ring {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.3); opacity: 0; }
}

@keyframes caution-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Responsive adjustments for hero layout and caution icon */
@media (max-width: 768px) {
    .asbestos-hero .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .asbestos-hero .hero-content {
        max-width: none;
    }
    
    .asbestos-hero .hero-visual {
        order: -1; /* Move visual to top on mobile */
    }
    
    .caution-circle {
        width: 100px;
        height: 100px;
    }
    
    .caution-circle i {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .caution-circle {
        width: 80px;
        height: 80px;
    }
    
    .caution-circle i {
        font-size: 2rem;
    }
}

.asbestos-dangers {
    padding: 80px 0;
    background: #f8fafc;
}

.dangers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.danger-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.danger-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.2);
    border-color: #dc2626;
}

.danger-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.danger-card h3 {
    color: #dc2626;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.danger-card p {
    color: #64748b;
    line-height: 1.6;
}

.common-locations {
    padding: 80px 0;
    background: white;
}

.locations-content {
    margin-top: 3rem;
}

.locations-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.location-item:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.location-item i {
    font-size: 1.5rem;
    color: #dc2626;
    margin-top: 0.25rem;
    min-width: 24px;
}

.location-item h4 {
    color: #1e3a8a;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.location-item p {
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.testing-importance {
    padding: 80px 0;
    background: #f8fafc;
}

.importance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.importance-text h2 {
    color: #1e3a8a;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.importance-text p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.importance-points {
    margin-bottom: 2rem;
}

.point {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.point i {
    color: #10b981;
    font-size: 1.2rem;
    min-width: 20px;
}

.point span {
    color: #374151;
    font-weight: 500;
}

/* Asbestos Education Page CTA Section (card-style) */
.importance-content .cta-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #dc2626;
}

.importance-content .cta-section h3 {
    color: #dc2626;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.importance-content .cta-section p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

/* Asbestos Education Page CTA Buttons */
.importance-content .cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.importance-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.importance-image .image-placeholder, .image-placeholder-asbestos {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.importance-image .image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.importance-image .image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.safety-measures {
    padding: 80px 0;
    background: white;
}

.measures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.measure-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.measure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: #1e3a8a;
}

.measure-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.measure-card h3 {
    color: #1e3a8a;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.measure-card p {
    color: #64748b;
    line-height: 1.6;
}



.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta .cta-buttons {
    justify-content: center;
}

/* Responsive Design for Asbestos Education Page */
@media (max-width: 768px) {
    .dangers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .locations-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .importance-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .importance-text h2 {
        font-size: 2rem;
    }
    
    .measures-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1rem;
    }
}

/* Asbestos Education Section on Index Page */
.asbestos-education {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.asbestos-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.asbestos-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.2);
    border-color: #1e40af;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af, #1a3693);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.info-card h3 {
    color: #1e40af;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.asbestos-cta {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #1e40af;
    position: sticky;
    top: 2rem;
}

.asbestos-cta .cta-content h3 {
    color: #1e40af;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.asbestos-cta .cta-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.asbestos-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.asbestos-cta-buttons .btn-primary {
    background: #1e40af;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #1e40af;
}

.asbestos-cta-buttons .btn-primary:hover {
    background: #1a3693;
    border-color: #1a3693;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
}

.asbestos-cta-buttons .btn-secondary {
    background: transparent;
    color: #1e40af;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #1e40af;
}

.asbestos-cta-buttons .btn-secondary:hover {
    background: #1e40af;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
}

/* Responsive Design for Asbestos Education Section */
@media (max-width: 1024px) {
    .asbestos-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .asbestos-cta {
        position: static;
    }
}

@media (max-width: 768px) {
    .asbestos-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .asbestos-cta {
        padding: 2rem;
    }
    
    .asbestos-cta .cta-content h3 {
        font-size: 1.3rem;
    }
    
    .asbestos-cta-buttons {
        gap: 0.75rem;
    }
}

/* Desktop Navigation Display */
@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
    
    .nav-menu {
        display: flex !important;
    }
    
    .mobile-menu-header,
    .mobile-search {
        display: none;
    }
}

/* New Mobile Navigation System */
@media (max-width: 768px) {
    /* Hide desktop navigation */
    .nav-menu {
        display: none;
    }
    
    /* Show hamburger on mobile */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        position: relative;
    }

    .hamburger span {
        width: 100%;
        height: 3px;
        background: #1e3a8a;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Mobile Navigation Menu */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        display: flex;
        flex-direction: column;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        padding: 0;
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
        display: flex;
    }

    /* Mobile Menu Header */
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
        border-bottom: 1px solid #f0f0f0;
        background: #ffffff;
    }

    .mobile-menu-logo {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .mobile-menu-logo img {
        width: 40px;
        height: 40px;
        border-radius: 8px;
    }

    .mobile-menu-logo-text {
        display: flex;
        flex-direction: column;
    }

    .mobile-menu-logo-text .company-name {
        font-size: 16px;
        font-weight: 700;
        color: #1e3a8a;
        line-height: 1.2;
    }

    .mobile-menu-logo-text .company-subtitle {
        font-size: 12px;
        color: #666;
        line-height: 1.2;
    }

    /* Mobile Menu Close Button */
    .mobile-menu-close {
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        color: #333;
        font-size: 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: background-color 0.2s ease;
    }

    .mobile-menu-close:hover {
        background: #f5f5f5;
    }

    /* Search Bar */
    .mobile-search {
        padding: 20px;
        border-bottom: 1px solid #f0f0f0;
        position: relative;
    }

    .mobile-search-input {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        font-size: 16px;
        background: #f8f8f8;
        color: #333;
        padding-right: 40px;
    }

    .mobile-search-input::placeholder {
        color: #999;
    }

    .search-icon {
        position: absolute;
        right: 32px;
        top: 50%;
        transform: translateY(-50%);
        color: #666;
        font-size: 16px;
    }

    /* Navigation Links */
    .nav-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        flex: 1;
    }

    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        color: #333;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        transition: background-color 0.2s ease;
        background: #ffffff;
    }

    .nav-menu a:hover {
        background: #f8f8f8;
        color: #1e3a8a;
    }

    .nav-menu a.active {
        background: #f0f7ff;
        color: #1e3a8a;
        border-left: 4px solid #1e3a8a;
    }

    /* CTA Button */
    .nav-menu .cta-button {
        background: #1e3a8a;
        color: white !important;
        margin: 20px;
        padding: 16px 20px;
        border-radius: 8px;
        font-weight: 600;
        text-align: center;
        border: none;
    }

    .nav-menu .cta-button:hover {
        background: #1e40af;
        color: white !important;
    }

    /* Dropdown Arrow */
    .nav-menu a i.fa-chevron-down {
        font-size: 12px;
        color: #666;
        transition: transform 0.2s ease;
    }

    .nav-menu a:hover i.fa-chevron-down {
        transform: rotate(180deg);
    }

    /* Body scroll prevention when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Navbar backdrop when mobile menu is open */
    .navbar.menu-open {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px);
    }
}