/* Reset and base styles */
:root {
    --primary-color: #0066ff;
    --secondary-color: rgba(26, 26, 26, 0.8);
    --text-color: #333;
    --light-gray: #f5f5f5;
    --dark-gray: #2a2a2a;
    --white: #ffffff;
    --glass-background: rgba(18, 18, 18, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);
    --police-blue: #135dd8;
    --charcoal: #2a2a2a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--charcoal);
    padding-top: 4.2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--white);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

p {
    margin-bottom: 1rem;
    color: #cccccc;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn.primary {
    background: linear-gradient(135deg, var(--primary-color), #0052cc);
    border: none;
    color: var(--white);
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: var(--white);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero {
    background-color: var(--dark-gray);
    padding: 100px 0 50px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.55;
    filter: brightness(0.7) saturate(1.1) blur(0.5px);
    pointer-events: none;
    transition: opacity 0.5s;
}

.hero > .gradient-overlay,
.hero > .container {
    position: relative;
    z-index: 1;
}

.hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.cta-buttons {
    margin-bottom: 3rem;
}

.cta-buttons .btn {
    margin-right: 1rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem 2.5rem;
    margin-top: 3rem;
    max-width: 500px;
    margin-left: 0;
}

@media (max-width: 600px) {
    .features {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        max-width: 100%;
    }
}

.feature {
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 1.08rem;
    gap: 0.7rem;
    background: rgba(0,0,0,0.08);
    border-radius: 0.7rem;
    padding: 0.7rem 1rem;
    box-shadow: 0 2px 8px rgba(0,102,255,0.04);
}

.feature i {
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Services Section Modern Styles */
.services-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.service-block {
    background: var(--glass-background);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 1.2rem;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18), 0 2px 8px 0 rgba(0,102,255,0.10);
    padding: 2.2rem 2rem 2rem 2rem;
    min-width: 320px;
    max-width: 400px;
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    margin-bottom: 0.5rem;
    transition: box-shadow 0.3s, transform 0.3s;
    justify-content: space-between;
    min-height: 650px;
}

.service-block h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.1rem;
    letter-spacing: 0.01em;
}

.service-details-text {
    color: #b3d1ff;
    font-size: 1.08rem;
    margin-bottom: 1.2rem;
}

.service-pricing {
    list-style: none;
    padding: 0;
    margin: 0 0 0.7rem 0;
}

.service-pricing li {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 1.08rem;
}

.service-block .note {
    color: #ffb347;
    font-size: 0.98rem;
    margin-top: 0.7rem;
    font-style: italic;
}

.service-block .btn {
    margin-top: auto;
    width: 100%;
    font-size: 1.1rem;
    padding: 0.9rem 0;
}

.service-block:hover {
    box-shadow: 0 12px 36px 0 rgba(0,102,255,0.18), 0 4px 16px 0 rgba(0,0,0,0.14);
    transform: translateY(-4px) scale(1.025);
}

.service-actions {
    margin-top: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.toggle-details-btn {
    width: 100%;
    margin: 0 0 0.5rem 0;
}

/* Add-ons Block */
.addons-block {
    background: var(--glass-background);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 1.2rem;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18), 0 2px 8px 0 rgba(0,102,255,0.10);
    padding: 2.2rem 2rem 2rem 2rem;
    max-width: 900px;
    margin: 0 auto 2rem auto;
    text-align: left;
}

.addons-block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.1rem;
}

.addons-list {
    list-style: disc inside;
    color: #b3d1ff;
    margin-bottom: 1.1rem;
    padding-left: 1.2rem;
}

.addons-list li {
    margin-bottom: 0.4rem;
    font-size: 1.08rem;
    color: #b3d1ff;
}

.addons-block .note {
    color: #5ecbff;
    font-size: 1.01rem;
    margin-top: 0.7rem;
    font-style: italic;
}

@media (max-width: 1100px) {
    .services-flex {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .service-block {
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.testimonial {
    background: var(--glass-background);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 10px;
    margin: 0 auto;
    max-width: 800px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.18);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.testimonial-avatar i {
    color: var(--white);
}

.rating {
    margin-left: auto;
}

.rating i {
    color: #ffd700;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--dark-gray);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(0, 102, 255, 0.1), transparent 60%),
                radial-gradient(circle at bottom left, rgba(0, 102, 255, 0.05), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.contact > * {
    position: relative;
    z-index: 1;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: var(--glass-background);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    padding: 80px 0 20px;
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.social-links a {
    color: var(--white);
    margin-right: 1rem;
    font-size: 1.5rem;
    text-decoration: none;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 60px 0 30px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
        display: flex;
        margin-top: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero, .service-card, .addon-item, .testimonial {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Animation Keyframes */
@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    from { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(0) translateX(20px); }
    75% { transform: translateY(20px) translateX(10px); }
    to { transform: translateY(0) translateX(0); }
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.5; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes textGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes cardGlow {
    0% { box-shadow: 0 0 20px rgba(19, 93, 216, 0); }
    50% { box-shadow: 0 0 20px rgba(19, 93, 216, 0.2); }
    100% { box-shadow: 0 0 20px rgba(19, 93, 216, 0); }
}

@keyframes mapMarkerPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes starTwinkle {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Animation Classes */
.animate-gradient {
    animation: gradient 15s ease infinite;
    background-size: 400% 400%;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-scroll {
    animation: scroll 2s ease-in-out infinite;
}

.animate-text-gradient {
    background-size: 200% auto;
    animation: textGradient 4s ease infinite;
}

.animate-card-glow {
    animation: cardGlow 3s ease-in-out infinite;
}

.animate-map-marker {
    animation: mapMarkerPulse 2s ease-in-out infinite;
}

.animate-star {
    animation: starTwinkle 1.5s ease-in-out infinite;
}

/* Utility Classes */
.particle {
    will-change: transform;
}

.glass {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: var(--glass-background);
    border: 1px solid var(--glass-border);
}

.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
}

.bg-animate {
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--charcoal);
}

::-webkit-scrollbar-thumb {
    background: var(--police-blue);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1050b8;
}

/* Selection Styles */
::selection {
    background: var(--police-blue);
    color: white;
}

/* Transition Styles */
a, button {
    transition: all 0.3s ease;
}

section {
    transition: opacity 0.5s ease;
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--police-blue) 50%, 
        transparent 100%
    );
    opacity: 0.3;
}

section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--police-blue) 50%, 
        transparent 100%
    );
    opacity: 0.3;
}

/* Gradient Overlay for Sections */
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, 
        rgba(19, 93, 216, 0.1), 
        transparent 60%
    ),
    radial-gradient(circle at bottom left, 
        rgba(19, 93, 216, 0.05), 
        transparent 60%
    );
    pointer-events: none;
    z-index: 0;
}

/* Enhanced Card Styles */
.service-card, .addon-item, .testimonial, .contact-card {
    background: var(--glass-background);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before, .addon-item::before, .testimonial::before, .contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(19, 93, 216, 0.1),
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before, .addon-item:hover::before, .testimonial:hover::before, .contact-card:hover::before {
    opacity: 1;
}

/* Consistent Spacing */
section {
    padding: 80px 0;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg,
        transparent,
        var(--police-blue),
        transparent
    );
}

/* Smooth Section Transitions */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Consistent Button Styles */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::after {
    opacity: 1;
}

/* Enhanced Background Effects */
.bg-blend {
    position: relative;
}

.bg-blend::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        var(--police-blue) 0%,
        transparent 100%
    );
    opacity: 0.05;
    mix-blend-mode: overlay;
}

/* Consistent Card Hover Effects */
.hover-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Service Details */
.service-basic,
.service-details {
    transition: all 0.3s ease;
}

.service-details {
    display: none;
}

.show-details-btn {
    width: 100%;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    position: relative;
}

.show-details-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.details-content {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid var(--glass-border);
}

.details-content h4 {
    color: var(--white);
    margin: 1.5rem 0 1rem;
    font-size: 1.2rem;
}

.details-content h4:first-child {
    margin-top: 0;
}

.pricing-list {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.pricing-list li {
    color: #cccccc;
    margin-bottom: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-list li span:last-child {
    color: var(--white);
    font-weight: 500;
}

.note {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
    margin-top: 1rem;
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

.hero-card-image {
    flex: 0 0 350px;
    max-width: 350px;
    width: 100%;
    background: var(--glass-background);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18), 0 12px 32px 0 rgba(0,102,255,0.25);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 1.5rem;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.18) 70%, transparent 100%);
    z-index: 2;
}

.hero-card-image::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    width: 80%;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(0,102,255,0.25) 0%, transparent 80%);
    filter: blur(8px);
    z-index: 1;
}

.hero-card-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1.5rem;
    object-fit: cover;
    position: relative;
    z-index: 3;
}

.hero-content {
    flex: 1 1 300px;
    min-width: 250px;
}

@media (max-width: 900px) {
    .hero-flex {
        flex-direction: column;
        gap: 2rem;
    }
    .hero-card-image, .hero-content {
        max-width: 100%;
    }
}

.hero-bubbles {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(45deg, #232a3b 0%, #135dd8 40%, #0066ff 100%);
    opacity: 0.7;
    overflow: hidden;
}

.hero-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.13);
    box-shadow: 0 4px 32px 0 rgba(0,102,255,0.12);
    pointer-events: none;
    mix-blend-mode: lighten;
    animation: hero-bubble-move 24s linear infinite;
    transition: background 0.3s;
}

@keyframes hero-bubble-move {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-120vh) scale(1.2);
        opacity: 0.2;
    }
}

.contact-method-btn {
    width: 80%;
    margin: 1rem auto;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), #0052cc);
    color: white;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
    display: block;
}

.contact-method-btn:hover {
    background: linear-gradient(135deg, #0052cc, var(--primary-color));
    transform: translateY(-2px) scale(1.03);
}

#contactMethodModal {
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    display: none;
}

#contactMethodModal .modal-content {
    margin: 0;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    position: relative;
    max-width: 400px;
    text-align: center;
    background: rgba(18, 18, 30, 0.85);
    border-radius: 1.2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 102, 255, 0.18), 0 2px 8px 0 rgba(0,0,0,0.12);
    border: 1px solid var(--glass-border);
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    animation: fadeInModal 0.4s cubic-bezier(.4,1.4,.6,1) both;
}

#contactMethodModal .modal-header {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
}

#contactMethodModal .modal-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.contact-method-btn {
    width: 90%;
    margin: 0 auto;
    padding: 1.1rem 0;
    font-size: 1.15rem;
    font-weight: 700;
    border: none;
    border-radius: 0.7rem;
    background: linear-gradient(135deg, var(--primary-color), #0052cc);
    color: white;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(0,102,255,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7em;
    letter-spacing: 0.01em;
}
.contact-method-btn:hover, .contact-method-btn:focus {
    background: linear-gradient(135deg, #0052cc, var(--primary-color));
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px rgba(0,102,255,0.18);
}

.contact-method-btn i {
    font-size: 1.3em;
    margin-right: 0.5em;
}

@keyframes fadeInModal {
    from { opacity: 0; transform: translateY(40px) scale(0.98);}
    to { opacity: 1; transform: translateY(0) scale(1);}
}

select,
.form-group select {
    background: var(--glass-background);
    color: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: 0.5rem;
    padding: 0.75rem;
    font-size: 1rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: border-color 0.3s, box-shadow 0.3s;
}

select:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 102, 255, 0.2);
}

select option {
    background: var(--dark-gray);
    color: var(--white);
}

.hero-intro {
    max-width: 350px;
    width: 100%;
    text-align: center;
    font-size: 1.15rem;
    color: #b3d1ff;
    margin-bottom: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 8px rgba(0,102,255,0.08);
}

section h2, .section-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 100%;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    position: relative;
}

section h2::after, .section-title::after {
    content: '';
    display: block;
    margin: 0.7rem auto 0 auto;
    width: 80px;
    height: 7px;
    border-radius: 8px;
    background: linear-gradient(90deg, #135dd8 0%, #0066ff 60%, #5ecbff 100%);
    box-shadow: 0 2px 16px 0 rgba(0,102,255,0.18), 0 0 8px 2px #135dd844;
    filter: blur(0.5px);
    opacity: 0.95;
}

.hero-image-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1.1rem;
}

@media (max-width: 900px) {
    .hero-image-stack {
        margin-bottom: 1.5rem;
    }
    .hero-intro {
        max-width: 100%;
    }
}

.section-description, section h3 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 100%;
    font-size: 1.25rem;
    color: #b3d1ff;
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.site-title-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 2000;
    background: rgba(18, 18, 30, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px 0 rgba(0,102,255,0.10);
    padding: 0.7rem 0 0.7rem 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    transition: transform 0.4s cubic-bezier(.4,1.4,.6,1), opacity 0.4s cubic-bezier(.4,1.4,.6,1);
    opacity: 1;
    transform: translateY(0);
    user-select: none;
}

.site-title-bar.hide {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.logo-svg {
    height: 2.2rem;
    width: auto;
    display: block;
}

.logo-title-text {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.1;
}

/* --- Service Block Two-State Styles --- */
.service-summary {
    display: block;
    animation: fadeIn 0.4s;
}
.service-details {
    display: none;
    animation: fadeIn 0.4s;
}
.service-block.expanded .service-summary {
    display: none;
}
.service-block.expanded .service-details {
    display: block;
}
.toggle-details-btn {
    width: 100%;
    margin: 1.1rem 0 0.5rem 0;
    padding: 0.85rem 0;
    background: #444a54;
    color: #fff;
    border: none;
    border-radius: 0.7rem;
    font-size: 1.08rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    margin-top: auto;
}
.toggle-details-btn:hover, .toggle-details-btn:focus {
    background: #2a2d33;
}
.arrow {
    font-size: 1.1em;
    transition: transform 0.3s;
    display: inline-block;
}
.service-block.expanded .toggle-details-btn .arrow {
    transform: rotate(180deg);
}
.service-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.7rem 0;
}
.service-feature-list li {
    color: #b3d1ff;
    font-size: 1.08rem;
    margin-bottom: 0.3rem;
    position: relative;
    padding-left: 1.3em;
}
.service-feature-list li::before {
    content: '\2713';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.1em;
    top: 0.1em;
}
.service-price-highlight {
    font-size: 1.13rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
}
.price-blue {
    color: var(--primary-color);
    font-weight: 700;
}
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem 1.2rem;
    margin: 1.1rem 0 1.1rem 0;
}
.pricing-grid > div {
    background: rgba(255,255,255,0.07);
    border-radius: 0.7rem;
    padding: 0.7rem 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.1em;
    font-size: 1.03rem;
    color: #fff;
    font-weight: 500;
    word-break: break-word;
    overflow-wrap: break-word;
}
.pricing-grid > div span {
    word-break: break-word;
    overflow-wrap: break-word;
    min-width: 0;
    max-width: 100%;
    display: block;
}
.service-note {
    color: #b3d1ff;
    font-size: 0.98rem;
    margin-top: 0.7rem;
    font-style: italic;
}
@media (max-width: 600px) {
    .services-flex {
        display: block;
        flex-direction: unset;
        align-items: unset;
        gap: unset;
        overflow: visible;
    }
    .service-block {
        max-width: 100%;
        min-width: 0;
        width: 100%;
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
        box-sizing: border-box;
        min-height: unset;
        height: unset;
        flex: unset;
        overflow: visible;
    }
    .service-block h3,
    .service-block p,
    .service-block .service-note,
    .service-block .service-feature-list li,
    .service-block .pricing-grid > div {
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .pricing-grid > div {
        font-size: 1rem;
        padding: 0.6rem 0.7rem;
    }
}

/* Modal Styles - ensure hidden by default and styled glassy */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    background: var(--glass-background);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin: 2rem auto;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    border-radius: 1rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.18);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.close-button {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-button:hover {
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 0.5rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 102, 255, 0.2);
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
}

.cancel-button,
.submit-button {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: var(--white);
}

.submit-button {
    background: linear-gradient(135deg, var(--primary-color), #0052cc);
    border: none;
    color: white;
}

.cancel-button:hover {
    background: rgba(255, 255, 255, 0.15);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
    .pricing-grid > div {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 0.1em;
    }
}

.service-img {
    width: 100%;
    height: 180px;
    margin-bottom: 1.1rem;
    overflow: hidden;
    border-radius: 1.2rem 1.2rem 0 0;
    position: relative;
    background: rgba(0,0,0,0.12);
    box-shadow: 0 4px 16px 0 rgba(0,102,255,0.10);
}
.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 1.2rem 1.2rem 0 0;
    filter: brightness(0.97) saturate(1.08);
    transition: transform 0.3s, filter 0.3s;
}
.service-block:hover .service-img img {
    transform: scale(1.04);
    filter: brightness(1.03) saturate(1.12);
}
@media (max-width: 600px) {
    .service-img {
        height: 120px;
        margin-bottom: 0.7rem;
    }
}

.extra-addon-label {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: #b3d1ff;
    margin-bottom: 0.5rem;
    gap: 0.5em;
    cursor: pointer;
}
.extra-addon-label input[type="checkbox"] {
    accent-color: var(--primary-color);
    width: 1.1em;
    height: 1.1em;
    margin-right: 0.5em;
}
.ceramic-note {
    color: #5ecbff;
    font-size: 0.98rem;
    margin-top: 0.7rem;
    font-style: italic;
}

.extra-addon-btn {
    display: block;
    width: 100%;
    margin-bottom: 0.7rem;
    padding: 1rem 1.2rem;
    background: rgba(18, 18, 30, 0.85);
    color: #b3d1ff;
    border: 1.5px solid var(--glass-border);
    border-radius: 0.7rem;
    font-size: 1.08rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,102,255,0.08);
    text-align: left;
}
.extra-addon-btn:hover, .extra-addon-btn:focus {
    background: rgba(0,102,255,0.12);
    color: #fff;
    border-color: var(--primary-color);
    outline: none;
}
.extra-addon-btn.selected {
    background: linear-gradient(135deg, var(--primary-color), #0052cc);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(0,102,255,0.13);
}

.service-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.1rem 1.2rem;
    margin: 2.2rem 0 0 0;
    justify-items: center;
}
.service-list-btn {
    width: 100%;
    padding: 1.1rem 0.5rem;
    background: rgba(18, 18, 30, 0.85);
    color: #e6e6e6;
    border: 1.5px solid var(--glass-border);
    border-radius: 0.7rem;
    font-size: 1.13rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,102,255,0.08);
    text-align: center;
    letter-spacing: 0.01em;
    outline: none;
}
.service-list-btn:hover, .service-list-btn:focus {
    background: linear-gradient(135deg, var(--primary-color), #0052cc);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(0,102,255,0.13);
}
@media (max-width: 600px) {
    .service-list-grid {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }
    .service-list-btn {
        font-size: 1.01rem;
        padding: 0.9rem 0.3rem;
    }
}

.logo-text {
    display: inline-block;
    font-size: 2.1rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-fill-color: transparent;
    background-image: url('../images/logo.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    padding: 0.5rem 2rem;
    line-height: 1.1;
}

@media (max-width: 600px) {
    .site-title-bar {
        padding: 0.7rem 1rem;
        gap: 1.2rem;
        flex-wrap: nowrap;
    }
    .logo-svg {
        height: 2.2rem;
    }
    .logo-title-text {
        font-size: clamp(1.1rem, 6vw, 2rem);
        white-space: nowrap;
        min-width: 0;
        flex-shrink: 1;
    }
}

.highlight-section {
    margin-top: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.highlight-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
}

.highlight-card {
    background: var(--glass-background);
    border: 1px solid var(--glass-border);
    border-radius: 1.2rem;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18), 0 2px 8px 0 rgba(0,102,255,0.10);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    min-width: 280px;
    max-width: 350px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
}

.highlight-card:hover {
    box-shadow: 0 12px 36px 0 rgba(0,102,255,0.18), 0 4px 16px 0 rgba(0,0,0,0.14);
    transform: translateY(-4px) scale(1.025);
}

.highlight-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.highlight-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.2rem 0;
}

.highlight-features li {
    color: #b3d1ff;
    font-size: 1.08rem;
    margin-bottom: 0.3rem;
    position: relative;
    padding-left: 1.3em;
}

.highlight-features li::before {
    content: '\2713';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.1em;
    top: 0.1em;
}

.highlight-price {
    font-size: 1.13rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
}

@media (max-width: 900px) {
    .highlight-flex {
        flex-direction: column;
        gap: 1.5rem;
    }
    .highlight-card {
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }
}

.testimonial-list .testimonial {
    display: none;
    opacity: 0;
    transition: opacity 0.6s;
}
.testimonial-list .testimonial.active {
    display: block;
    opacity: 1;
}

.testimonial-slider {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(18, 18, 30, 0.7);
    border: none;
    color: #fff;
    font-size: 2rem;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,102,255,0.10);
    opacity: 0.85;
}
.testimonial-arrow.left {
    left: 0.5rem;
}
.testimonial-arrow.right {
    right: 0.5rem;
}
.testimonial-arrow:hover, .testimonial-arrow:focus {
    background: var(--primary-color);
    color: #fff;
    opacity: 1;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
}
.testimonial-dot {
    width: 0.85rem;
    height: 0.85rem;
    border-radius: 50%;
    background: #b3d1ff;
    opacity: 0.5;
    border: none;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s, transform 0.2s;
}
.testimonial-dot.active {
    background: var(--primary-color);
    opacity: 1;
    transform: scale(1.15);
}

.testimonial-nav-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.2rem;
    width: 100%;
}

@media (max-width: 600px) {
    .testimonial-arrow {
        position: static;
        transform: none;
        margin: 0;
        width: 2rem;
        height: 2rem;
        font-size: 1.5rem;
    }
    .testimonial-slider {
        flex-direction: column;
    }
    .testimonial-nav-row {
        gap: 0.7rem;
        margin-top: 1rem;
    }
} 