:root {
    --primary-blue: #00d4ff;
    --deep-blue: #0047ab;
    --dark-blue: #001f3f;
    --electric-blue: #00bfff;
    --neon-cyan: #00ffff;
    --light-silver: #e8eef3;
    --white: #ffffff;
    --light-gray: #d1e0f0;
    --gradient-start: #001433;
    --gradient-middle: #002855;
    --gradient-end: #004c99;
}

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

html {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    max-width: 100vw;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--white);
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-middle) 50%, var(--gradient-end) 100%);
    background-attachment: fixed;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: rgba(0, 15, 30, 0.95); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #00d4ff, #00bfff); border-radius: 6px; border: 2px solid rgba(0, 15, 30, 0.95); }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #00bfff, #00d4ff); box-shadow: 0 0 10px rgba(0, 212, 255, 0.5); }
html { scrollbar-width: thin; scrollbar-color: #00d4ff rgba(0, 15, 30, 0.95); }

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background:
        linear-gradient(135deg, rgba(0, 20, 51, 0.85) 0%, rgba(0, 40, 85, 0.75) 50%, rgba(0, 76, 153, 0.85) 100%),
        url('../img/hero-bg-1.png') center/cover no-repeat;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 80px;
}
.hero-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0px, transparent 1px, transparent 2px, rgba(255, 255, 255, 0.02) 3px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0px, transparent 1px, transparent 2px, rgba(255, 255, 255, 0.02) 3px); opacity: 0.6; animation: textureMove 30s linear infinite; }
@keyframes textureMove { 0% { transform: translate(0, 0); } 100% { transform: translate(60px, 60px); } }
.hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at center, transparent 0%, rgba(0, 20, 51, 0.6) 100%); }
.logo-container { animation: float 4s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.premium-logo { width: 120px; height: 120px; margin: 0 auto; background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue)); border-radius: 30px; display: flex; align-items: center; justify-content: center; box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset; position: relative; overflow: hidden; }
.premium-logo::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent); animation: shimmer 3s infinite; }
@keyframes shimmer { 0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); } 100% { transform: translateX(100%) translateY(100%) rotate(45deg); } }
.premium-logo i { font-size: 4rem; color: var(--dark-blue); z-index: 2; }
.logo-text { font-size: 2rem; font-weight: 800; color: var(--white); letter-spacing: 8px; text-transform: uppercase; text-shadow: 0 0 30px rgba(0, 212, 255, 0.6), 0 4px 8px rgba(0, 0, 0, 0.3); }
.hero-title { font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 800; line-height: 1.15; color: var(--white); text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5); margin-bottom: 1.5rem; letter-spacing: -0.5px; }
.hero-subtitle { font-size: clamp(1.15rem, 2.5vw, 1.5rem); color: var(--light-gray); line-height: 1.8; max-width: 850px; margin: 0 auto; font-weight: 400; }
.hero-buttons .btn { padding: 1.1rem 3rem; font-size: 1.05rem; font-weight: 700; border-radius: 50px; text-transform: uppercase; letter-spacing: 1.5px; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); }
.btn-primary { background: linear-gradient(135deg, var(--primary-blue) 0%, var(--electric-blue) 100%); border: none; color: var(--dark-blue); position: relative; overflow: hidden; }
.btn-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent); transition: left 0.5s; }
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(0, 212, 255, 0.5); }
.btn-outline-light { border: 2px solid var(--white); color: var(--white); background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); }
.btn-outline-light:hover { background: var(--white); color: var(--deep-blue); transform: translateY(-4px); box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4); }
.btn-light { background: var(--white); color: var(--deep-blue); border: none; }
.btn-light:hover { background: var(--light-silver); transform: translateY(-4px); box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3); }
.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); animation: bounce 2.5s infinite; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-15px); } 60% { transform: translateX(-50%) translateY(-8px); } }
.scroll-arrow { width: 35px; height: 35px; border-left: 3px solid var(--primary-blue); border-bottom: 3px solid var(--primary-blue); transform: rotate(-45deg); filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.6)); }

/* General Section Styles */
.about-section, .services-section, .why-section, .process-section, .testimonials-section, .contact-section { background: rgba(0, 20, 51, 0.4); backdrop-filter: blur(15px); }
.about-section { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.section-title { font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 800; color: var(--white); text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); position: relative; display: block; letter-spacing: -0.5px; text-align: center; margin-top: 2rem !important; margin-bottom: 3rem !important; padding-top: 1rem; }
.section-title::after { content: ''; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); width: 100px; height: 5px; background: linear-gradient(90deg, var(--primary-blue), var(--electric-blue)); border-radius: 3px; box-shadow: 0 0 20px rgba(0, 212, 255, 0.5); }
.section-text { font-size: 1.25rem; color: var(--light-gray); line-height: 1.9; font-weight: 300; }

/* All Other Component Styles (Service Cards, Features, etc.) - No Changes */
.service-card { background: linear-gradient(145deg, rgba(0, 102, 204, 0.15), rgba(0, 31, 63, 0.35)); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 24px; padding: 2.5rem; transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); backdrop-filter: blur(15px); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: -50%; right: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%); opacity: 0; transition: opacity 0.5s; }
.service-card:hover::before { opacity: 1; }
.service-card:hover { transform: translateY(-12px); border-color: var(--primary-blue); box-shadow: 0 20px 50px rgba(0, 212, 255, 0.35); background: linear-gradient(145deg, rgba(0, 102, 204, 0.25), rgba(0, 31, 63, 0.45)); }
.service-icon { width: 90px; height: 90px; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue)); border-radius: 50%; color: var(--dark-blue); transition: all 0.4s ease; box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3); font-size: 2.5rem; }
.service-card:hover .service-icon { transform: scale(1.15) rotate(8deg); box-shadow: 0 12px 35px rgba(0, 212, 255, 0.5); }
.service-title { font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; letter-spacing: -0.3px; }
.service-text { font-size: 1.05rem; color: var(--light-gray); line-height: 1.7; font-weight: 300; }
.feature-item { padding: 2rem 1.5rem; }
.feature-icon-wrapper { width: 100px; height: 100px; margin: 0 auto 1.5rem; background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 191, 255, 0.3)); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid rgba(0, 212, 255, 0.4); transition: all 0.4s ease; box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2); }
.feature-icon-wrapper i { font-size: 3rem; color: var(--primary-blue); filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5)); }
.feature-item:hover .feature-icon-wrapper { transform: scale(1.1) rotate(-5deg); box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4); border-color: var(--primary-blue); }
.feature-title { font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; letter-spacing: -0.3px; }
.feature-text { font-size: 1.05rem; color: var(--light-gray); line-height: 1.7; font-weight: 300; }
.process-section { background: linear-gradient(135deg, rgba(0, 40, 85, 0.4), rgba(0, 76, 153, 0.4)); border-top: 1px solid rgba(255, 255, 255, 0.08); border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.process-step { background: linear-gradient(145deg, rgba(0, 102, 204, 0.15), rgba(0, 31, 63, 0.3)); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 24px; padding: 2.5rem 2rem; text-align: center; position: relative; transition: all 0.4s ease; height: 100%; }
.process-step:hover { transform: translateY(-8px); border-color: var(--primary-blue); box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3); }
.step-number { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; color: var(--dark-blue); box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4); }
.step-icon { font-size: 3rem; color: var(--primary-blue); margin: 1.5rem 0 1rem; filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.4)); }
.step-title { font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.step-text { font-size: 1.05rem; color: var(--light-gray); line-height: 1.6; margin: 0; }
.stats-section { background: linear-gradient(135deg, rgba(0, 76, 153, 0.5), rgba(0, 102, 204, 0.5)); border-top: 1px solid rgba(255, 255, 255, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.stat-item { padding: 2rem 1rem; }
.stat-icon { font-size: 3.5rem; color: var(--primary-blue); margin-bottom: 1rem; filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5)); }
.stat-number { font-size: 3rem; font-weight: 800; color: var(--white); text-shadow: 0 0 25px rgba(0, 212, 255, 0.5); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 1.1rem; color: var(--light-gray); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.testimonial-card { background: linear-gradient(145deg, rgba(0, 102, 204, 0.12), rgba(0, 31, 63, 0.25)); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 24px; padding: 2.5rem; height: 100%; transition: all 0.4s ease; backdrop-filter: blur(15px); }
.testimonial-card:hover { transform: translateY(-8px); border-color: var(--primary-blue); box-shadow: 0 15px 40px rgba(0, 212, 255, 0.25); }
.testimonial-stars { color: #ffc107; font-size: 1.1rem; }
.testimonial-text { font-size: 1.15rem; color: var(--light-gray); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; font-weight: 300; }
.testimonial-author { font-size: 1.05rem; color: var(--primary-blue); font-weight: 700; margin: 0; }
.contact-info { background: linear-gradient(145deg, rgba(0, 102, 204, 0.12), rgba(0, 31, 63, 0.25)); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 24px; padding: 2.5rem; height: 100%; }
.contact-info-title { font-size: 2rem; font-weight: 700; color: var(--white); }
.info-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.info-icon-modern { width: 55px; height: 55px; min-width: 55px; background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue)); border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--dark-blue); box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3); }
.info-content h5 { font-size: 1.3rem; font-weight: 700; color: var(--primary-blue); margin-bottom: 0.5rem; }
.info-content p { font-size: 1.05rem; color: var(--light-gray); margin: 0; }
.contact-link { color: var(--light-gray); text-decoration: none; transition: color 0.3s ease; }
.contact-link:hover { color: var(--primary-blue); }
.contact-form-wrapper { background: linear-gradient(145deg, rgba(0, 102, 204, 0.12), rgba(0, 31, 63, 0.25)); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 24px; padding: 2.5rem; }
.contact-form .form-label { color: var(--white); font-weight: 600; font-size: 1.05rem; margin-bottom: 0.5rem; }
.contact-form .form-control { background: rgba(0, 31, 63, 0.6); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 12px; color: var(--white); padding: 0.85rem 1.2rem; font-size: 1.05rem; transition: all 0.3s ease; }
.contact-form .form-control:focus { background: rgba(0, 31, 63, 0.8); border-color: var(--primary-blue); box-shadow: 0 0 0 0.25rem rgba(0, 212, 255, 0.25); color: var(--white); }
.contact-form .form-control::placeholder { color: rgba(209, 224, 240, 0.5); }
.map-container { background: linear-gradient(145deg, rgba(0, 102, 204, 0.12), rgba(0, 31, 63, 0.25)); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 24px; padding: 2.5rem; }
.map-container h3 { font-size: 2rem; font-weight: 700; color: var(--white); }

.map-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 75%; /* 4:3 Aspect Ratio (450 / 600 = 0.75) */
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}



a { outline: none !important; }
a:focus { outline: none !important; box-shadow: none !important; }
button:focus, input:focus, textarea:focus { outline: 2px solid var(--primary-blue); outline-offset: 2px; }
img, iframe { max-width: 100%; height: auto; }
::selection { background: var(--primary-blue); color: var(--dark-blue); }
.top-info-bar { background: rgba(0, 15, 30, 0.95); border-bottom: 1px solid rgba(0, 212, 255, 0.2); padding: 0.75rem 0; position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(10px); box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3); }
.top-bar-content { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.top-bar-left { display: flex; align-items: center; gap: 1.5rem; flex: 1; }
.top-bar-right { display: flex; align-items: center; position: relative; }
.business-status { display: flex; align-items: center; gap: 0.5rem; }
.status-indicator { width: 14px; height: 14px; border-radius: 50%; position: relative; background: #10b981; }
.status-indicator.closed { background: #ef4444; }
.pulse { position: absolute; width: 100%; height: 100%; border-radius: 50%; animation: pulse 2s ease-out infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 currentColor; opacity: 1; } 100% { box-shadow: 0 0 0 8px currentColor; opacity: 0; } }
.status-indicator .pulse { background: inherit; }
.status-text { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.top-contact-info { font-size: 0.85rem; color: var(--light-gray); display: flex; align-items: center; gap: 0.4rem; }
.top-contact-info i { color: var(--primary-blue); font-size: 0.9rem; }
.top-contact-info a { color: var(--light-gray); text-decoration: none; transition: color 0.3s; }
.top-contact-info a:hover { color: var(--primary-blue); }
.top-nav { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 0.5rem; }
.top-nav .nav-link { color: var(--light-gray); text-decoration: none; padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.9rem; font-weight: 600; transition: all 0.3s; position: relative; }
.top-nav .nav-link::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: var(--primary-blue); transition: width 0.3s; }
.top-nav .nav-link:hover { color: var(--primary-blue); background: rgba(0, 212, 255, 0.1); }
.top-nav .nav-link:hover::after { width: 80%; }
.mobile-menu-toggle { background: transparent; border: none; width: 30px; height: 24px; cursor: pointer; z-index: 1001; padding: 0; display: flex; flex-direction: column; justify-content: space-between; margin-left: auto; }
.mobile-menu-toggle span { display: block; width: 100%; height: 3px; background: var(--primary-blue); border-radius: 2px; transition: all 0.3s ease; box-shadow: 0 0 8px rgba(0, 212, 255, 0.5); }
.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(10.5px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-10.5px) rotate(-45deg); }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.full-width-cta { background: linear-gradient(135deg, rgba(0, 102, 204, 0.6), rgba(0, 191, 255, 0.6)); border-top: 1px solid rgba(255, 255, 255, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding: 4rem 0; position: relative; overflow: hidden; }
.full-width-cta::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%); animation: rotate 20s linear infinite; }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.cta-icon { font-size: 4rem; color: var(--white); filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6)); }
.cta-subtitle { font-size: 1.2rem; color: var(--light-gray); max-width: 700px; margin: 0 auto; }
.pricing-section { background: linear-gradient(135deg, rgba(0, 31, 63, 0.4), rgba(0, 51, 102, 0.4)); }
.pricing-card { background: linear-gradient(145deg, rgba(0, 102, 204, 0.15), rgba(0, 31, 63, 0.35)); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 24px; padding: 2.5rem; transition: all 0.4s ease; height: 100%; }
.pricing-card:hover { transform: translateY(-8px); border-color: var(--primary-blue); box-shadow: 0 20px 50px rgba(0, 212, 255, 0.3); }
.pricing-card-featured { border-color: var(--primary-blue); box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2); }
.pricing-icon { width: 80px; height: 80px; margin: 0 auto 1.5rem; background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: var(--dark-blue); box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3); }
.pricing-title { font-size: 1.8rem; font-weight: 700; color: var(--white); text-align: center; margin-bottom: 2rem; }
.pricing-items { margin-bottom: 1.5rem; }
.pricing-item { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.pricing-item:last-child { border-bottom: none; }
.pricing-service { color: var(--light-gray); font-size: 1.05rem; }
.pricing-price { color: var(--primary-blue); font-size: 1.4rem; font-weight: 700; white-space: nowrap; }
.pricing-price small { font-size: 0.8rem; font-weight: 400; color: var(--light-gray); }
.pricing-note { text-align: center; color: var(--light-gray); font-size: 0.9rem; font-style: italic; padding: 1rem; background: rgba(0, 212, 255, 0.05); border-radius: 12px; }
.why-convert-section, .why-vinyl-section { background: rgba(0, 20, 51, 0.3); backdrop-filter: blur(15px); }
.why-vinyl-section { background: linear-gradient(135deg, rgba(0, 40, 85, 0.4), rgba(0, 51, 102, 0.3)); }
.content-block { background: linear-gradient(145deg, rgba(0, 102, 204, 0.1), rgba(0, 31, 63, 0.25)); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 24px; padding: 2.5rem; height: 100%; transition: all 0.4s ease; }
.content-block:hover { transform: translateY(-5px); border-color: var(--primary-blue); box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2); }
.content-block-highlight { border-color: rgba(0, 212, 255, 0.3); background: linear-gradient(145deg, rgba(0, 102, 204, 0.15), rgba(0, 31, 63, 0.3)); }
.content-icon { font-size: 3rem; color: var(--primary-blue); filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5)); }
.content-subtitle { font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.content-text { font-size: 1.05rem; color: var(--light-gray); line-height: 1.8; margin-bottom: 1rem; }
.faq-section { background: linear-gradient(135deg, rgba(0, 31, 63, 0.4), rgba(0, 51, 102, 0.4)); }
.accordion { --bs-accordion-bg: transparent; --bs-accordion-border-color: rgba(255, 255, 255, 0.1); }
.accordion-item { background: linear-gradient(145deg, rgba(0, 102, 204, 0.1), rgba(0, 31, 63, 0.25)); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px !important; margin-bottom: 1rem; overflow: hidden; transition: all 0.3s ease; }
.accordion-item:hover { border-color: var(--primary-blue); box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2); }
.accordion-button { background: transparent; color: var(--white); font-size: 1.15rem; font-weight: 600; padding: 1.5rem; border: none; box-shadow: none !important; }
.accordion-button:not(.collapsed) { background: rgba(0, 212, 255, 0.1); color: var(--primary-blue); }
.accordion-button::after { filter: brightness(0) invert(1); background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300d4ff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); }
.accordion-button i { color: var(--primary-blue); font-size: 1.2rem; }
.accordion-body { background: rgba(0, 15, 30, 0.3); color: var(--light-gray); font-size: 1.05rem; line-height: 1.8; padding: 1.5rem; }
/* Media Queries */
@media (max-width: 992px) { .top-bar-content { flex-wrap: nowrap; } .top-bar-left { flex: 0 1 auto; min-width: 0; } .top-bar-right { flex: 0 0 auto; } .status-text { font-size: 0.85rem; } .top-nav { position: fixed; top: 56px; left: 0; right: 0; width: 100vw; background: rgba(0, 15, 30, 0.98); backdrop-filter: blur(20px); flex-direction: column; padding: 0; margin: 0; border-top: 1px solid rgba(0, 212, 255, 0.2); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); max-height: 0; overflow: hidden; transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1); z-index: 999; } .top-nav.active { max-height: 400px; overflow-y: auto; } .top-nav .nav-link { width: 100%; padding: 1rem 1.5rem; border-radius: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); text-align: left; font-size: 1rem; display: block; margin: 0; } .top-nav .nav-link:last-child { border-bottom: none; } .top-nav .nav-link::after { display: none; } .top-nav .nav-link:hover { background: rgba(0, 212, 255, 0.15); padding-left: 2rem; } }
@media (max-width: 768px) { .top-info-bar { padding: 1rem 0; } .top-contact-info { font-size: 0.75rem; } .top-contact-info span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 180px; } .status-text { font-size: 0.8rem; } .status-indicator { width: 12px; height: 12px; } .pricing-title { font-size: 1.5rem; } .pricing-service { font-size: 0.95rem; } .pricing-price { font-size: 1.2rem; } .content-subtitle { font-size: 1.3rem; } .hero-buttons .btn { padding: 0.9rem 1.8rem; font-size: 0.95rem; } .container { padding-left: 12px; padding-right: 12px; } .pricing-item { flex-direction: column; align-items: flex-start; gap: 0.5rem; } .pricing-service { max-width: 100%; } }
@media (max-width: 480px) { .top-bar-left { gap: 0.75rem; } .top-contact-info span { max-width: 120px; } .status-text { font-size: 0.75rem; } .mobile-menu-toggle { width: 26px; height: 20px; } .mobile-menu-toggle span { height: 2.5px; } }
/* Share Modal Styles */
.social-share-btn { font-size: 1.5rem; width: 60px; height: 60px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; transition: all 0.3s ease; border-width: 2px; }
.social-share-btn:hover { transform: translateY(-5px); color: white !important; }
.btn-facebook:hover { background-color: #1877F2; border-color: #1877F2; }
.btn-twitter:hover { background-color: #1DA1F2; border-color: #1DA1F2; }
.btn-linkedin:hover { background-color: #0A66C2; border-color: #0A66C2; }
.btn-email:hover { background-color: #7F7F7F; border-color: #7F7F7F; }

/* NEW: Advanced Footer Styles */
.advanced-footer {
    background: linear-gradient(135deg, rgba(0, 10, 20, 0.9), rgba(0, 25, 50, 0.95));
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 4rem 0 0;
    backdrop-filter: blur(10px);
    color: var(--light-gray);
    font-size: 0.95rem;
}
.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-blue);
}
.advanced-footer p {
    color: var(--light-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}
.footer-sister-link {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.footer-sister-link:hover {
    background: var(--primary-blue);
    color: var(--dark-blue);
}
.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
}
.footer-links li, .footer-contact li {
    margin-bottom: 0.8rem;
}
.footer-links a, .footer-contact {
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-links a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}
.footer-contact li {
    display: flex;
    align-items: center;
}
.footer-contact i {
    color: var(--primary-blue);
    margin-right: 10px;
    font-size: 1.2rem;
}
.footer-social {
    display: flex;
    gap: 1rem;
}
.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    background: var(--primary-blue);
    color: var(--dark-blue);
    transform: translateY(-4px);
}
.footer-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
}
.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* NEW: Back to Top Button Styles */
.back-to-top-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s, visibility 0.4s, transform 0.4s;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}
.back-to-top-btn.visible {
    visibility: visible;
    opacity: 1;
}
.back-to-top-btn:hover {
    background: var(--white);
    color: var(--deep-blue);
    transform: scale(1.1);
}


/* Media Query for Desktop Map Height */
@media (min-width: 992px) {
    .map-wrapper {
        padding-top: 0; /* Removes the percentage-based height */
        height: 550px; /* Sets a fixed height for large screens */
    }
}