* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - unified header/dropdown (improved visuals + accessibility) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 20px rgba(16,24,40,0.06);
    border-bottom: 1px solid rgba(16,24,40,0.04);
    z-index: 1000;
    padding: 0.6rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo h2 {
    color: #0f172a;
    color: #1e88e5; /* brand blue */
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.3px;
}

.logo img {
    height: 45px;
    width: auto;
}

.footer-section img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.25rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #0f172a;
    font-weight: 600;
    padding: 0.45rem 0.6rem;
    border-radius: 8px;
    transition: background-color 180ms ease, color 180ms ease, transform 120ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus {
    background: linear-gradient(90deg,#06b6d4,#3b82f6);
    color: #fff;
    transform: translateY(-1px);
    outline: none;
    box-shadow: 0 8px 24px rgba(59,130,246,0.12);
}

.nav-menu a.active {
    background: linear-gradient(90deg,#06b6d4,#3b82f6);
    color: #fff;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown > a::after {
    content: '▾';
    display: inline-block;
    margin-left: 8px;
    font-size: 0.72rem;
    transition: transform 220ms ease;
    vertical-align: middle;
    color: rgba(15,23,42,0.7);
}

.dropdown:focus-within > a::after,
.dropdown:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(2,6,23,0.08);
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px) scale(0.98);
    transform-origin: top left;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
    z-index: 1100;
    list-style: none;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu li { margin: 0; }

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1rem;
    color: #0f172a;
    text-decoration: none;
    transition: background 120ms ease, color 120ms ease, border-left-color 120ms ease;
    border-left: 4px solid transparent;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
    background: linear-gradient(90deg, rgba(6,182,212,0.06), rgba(59,130,246,0.06));
    color: #0369a1;
    border-left-color: #06b6d4;
    outline: none;
}

/* Focus outlines for keyboard users */
.nav-menu a:focus,
.dropdown-menu a:focus {
    box-shadow: 0 0 0 4px rgba(59,130,246,0.12);
}

/* Mobile toggle button */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 40px;
    height: 44px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.hamburger {
    width: 24px;
    height: 3px;
    background: #1e293b;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 3px;
    background: #1e293b;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Responsive tweaks */
@media (max-width: 920px) {
    .nav-menu { gap: 0.6rem; }
    .logo h2 { font-size: 1.05rem; }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        width: 100%;
        padding: 12px 16px;
        text-align: left;
    }
    
    .dropdown-menu {
        position: static;
        background: rgba(248, 250, 252, 0.9);
        box-shadow: none;
        border-radius: 8px;
        margin-top: 8px;
        transform: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
    }
    
    .dropdown > a::after {
        float: right;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 100px 0 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (max-width: 992px) {
    .hero {
        padding: 120px 0 60px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 40px;
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=1200&h=800&fit=crop');
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    opacity: 0.7;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.9), rgba(147, 197, 253, 0.8));
    z-index: 2;
}

.bubble-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: bubbleFloat 8s ease-in-out infinite;
}

.bubble:nth-child(1) {
    width: 100px;
    height: 100px;
    left: 10%;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 70%;
    animation-delay: 2s;
}

.bubble:nth-child(3) {
    width: 80px;
    height: 80px;
    left: 30%;
    animation-delay: 4s;
}

.bubble:nth-child(4) {
    width: 120px;
    height: 120px;
    left: 85%;
    animation-delay: 6s;
}

@keyframes bubbleFloat {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
}

.contact-overlay {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .contact-overlay {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-overlay {
        padding: 1.5rem 1rem;
        width: 95%;
    }
}

.contact-overlay h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #1e293b;
}

@media (max-width: 992px) {
    .contact-overlay h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-overlay h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .contact-overlay h1 {
        font-size: 1.6rem;
        color: #1e293b;
        margin-bottom: 1rem;
        font-weight: 700;
    }
}

.contact-overlay > p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 2rem;
}

.quick-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.contact-item .icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.contact-item strong {
    color: #1e293b;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #2563eb;
    font-weight: 600;
}

.phone-link, .email-link {
    color: #2563eb;
    text-decoration: none;
    word-break: break-all;
    font-size: inherit;
}

.phone-link:hover, .email-link:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .phone-link, .email-link {
        font-size: 0.8rem;
        display: inline-block;
        margin: 0.1rem 0;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
        text-decoration: none;
    }
}

.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-decoration: none;
}

.btn-primary {
    background: #10b981;
    color: white;
    text-decoration: none;
}

.pulse-btn {
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
    text-decoration: none;
}

.btn-secondary {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    border: 2px solid #2563eb;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.contact-form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: white;
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #64748b;
    transition: all 0.3s;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    color: #2563eb;
    background: white;
    padding: 0 0.5rem;
}

.btn-submit {
    padding: 15px 30px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
    text-decoration: none;
}

.btn-submit::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
    text-decoration: none;
}

.btn-submit:hover::after {
    width: 300px;
    height: 300px;
    text-decoration: none;
}

.form-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Network Section */
.network-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #dbeafe, #f0f9ff);
}

.network-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.map-container {
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #93c5fd, #dbeafe);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 Q50,10 80,20 Q90,50 80,80 Q50,90 20,80 Q10,50 20,20" fill="none" stroke="rgba(255,255,255,0.3)" stroke-width="2"/></svg>');
    opacity: 0.5;
}

.map-pin {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ef4444;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    cursor: pointer;
    animation: pinBounce 2s infinite;
}

.map-pin.active {
    background: #10b981;
}

.pin-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    border: 2px solid currentColor;
    border-radius: 50%;
    animation: pinPulse 2s infinite;
}

@keyframes pinBounce {
    0%, 100% { transform: rotate(-45deg) translateY(0); }
    50% { transform: rotate(-45deg) translateY(-5px); }
}

@keyframes pinPulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.network-info h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.network-info > p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.coverage-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.coverage-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    transition: all 0.3s;
}

.coverage-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.coverage-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
}

.coverage-item h3 {
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.coverage-item p {
    color: #64748b;
}

/* Commitment Section */
.commitment-section {
    padding: 100px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('images/background1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.commitment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(37,99,235,0.05)"/><circle cx="80" cy="40" r="3" fill="rgba(37,99,235,0.05)"/><circle cx="40" cy="80" r="1" fill="rgba(37,99,235,0.05)"/></svg>');
    opacity: 0.5;
}

.commitment-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.commitment-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.commitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.5s;
}

.commitment-card:hover::before {
    left: 100%;
}

.commitment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.commitment-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.commitment-card p {
    color: #64748b;
}

/* Contact Options */
.contact-options {
    padding: 100px 0;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.option-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.option-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.phone-glow {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.whatsapp-glow {
    background: linear-gradient(135deg, #10b981, #059669);
}

.email-glow {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
}

.option-card h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.option-card p {
    color: #64748b;
}

.visit-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 15px;
}

.visit-cta p {
    font-size: 1.1rem;
    color: #1e293b;
}

/* Find Us Section */
.find-us {
    padding: 100px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('images/background1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.find-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.map-embed {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.office-details h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s;
}

.detail-item:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.detail-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    flex-shrink: 0;
}

.detail-item h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.detail-item p {
    color: #64748b;
}

.emergency-note {
    padding: 1.5rem;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 15px;
    border-left: 4px solid #f59e0b;
}

.emergency-note p {
    color: #92400e;
    font-weight: 500;
}

/* Safety Section */
.safety-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    position: relative;
    overflow: hidden;
}

.molecular-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="4" fill="rgba(255,255,255,0.1)"/><line x1="20" y1="20" x2="40" y2="80" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>');
    animation: molecularMove 20s linear infinite;
}

@keyframes molecularMove {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(50px) translateY(-25px); }
    50% { transform: translateX(0) translateY(-50px); }
    75% { transform: translateX(-50px) translateY(-25px); }
    100% { transform: translateX(0) translateY(0); }
}

.safety-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.safety-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.safety-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #cbd5e1;
}

.safety-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #cbd5e1;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: ctaBubbleFloat 10s ease-in-out infinite;
}

.cta-bubble:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    animation-delay: 0s;
}

.cta-bubble:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 50%;
    animation-delay: 3s;
}

.cta-bubble:nth-child(3) {
    width: 100px;
    height: 100px;
    left: 80%;
    animation-delay: 6s;
}

@keyframes ctaBubbleFloat {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

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

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta, .btn-cta-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-cta {
    background: #10b981;
    color: white;
    text-decoration: none;
    text-decoration: none;
}

.btn-cta:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
    text-decoration: none;
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    text-decoration: none;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 50px 0 20px;
    position: relative;
    overflow: hidden;
}

.smoke-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(59, 130, 246, 0.1), transparent);
    animation: smokeWave 8s ease-in-out infinite;
}

@keyframes smokeWave {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(50px); }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.quote-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quote-contact p {
    color: #cbd5e1;
    margin: 0;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.email-btn {
    background: #ea4335;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
    margin-top: 0.5rem;
    display: block;
}

.email-btn:hover {
    background: #d33b2c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(234, 67, 53, 0.3);
}

.footer-section h3 {
    color: #3b82f6;
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #3b82f6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
    position: relative;
    z-index: 2;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8fafc;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-content {
        margin-top: 2rem;
        gap: 1.5rem;
    }
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-item .icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.contact-item h3 {
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #64748b;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-map {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 300px;
}

.contact-map iframe {
    width: 100%;
    max-width: 100%;
    height: 300px;
    border: none;
}

@media (max-width: 768px) {
    .contact-map {
        height: 250px;
        border-radius: 8px;
    }
    
    .contact-map iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .contact-map {
        height: 200px;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .contact-map iframe {
        height: 200px;
        width: 100%;
        max-width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-overlay {
        padding: 2rem;
    }
    
    .contact-overlay h1 {
        font-size: 2rem;
    }
    
    .quick-contact {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .network-content {
        grid-template-columns: 1fr;
    }
    
    .find-content {
        grid-template-columns: 1fr;
    }
    
    .safety-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item p {
        font-size: 0.9rem;
        word-break: break-all;
    }
    
    .quick-contact .contact-item p {
        font-size: 0.85rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-item {
        padding: 1rem 0.5rem;
    }
    
    .contact-item .icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .contact-item h3 {
        font-size: 1rem;
    }
    
    .contact-item p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .contact-overlay {
        padding: 1.5rem 1rem;
        width: 98%;
    }
}