/* Reset & Base */
:root {
    /* Color Variables (Black-Dominant) */
    --black: #000000;           /* Majority background */
    --white: #FFFFFF;           /* Text for contrast */
    --light-gray: #E0E0E0;      /* Subtle text */
    --logo-blue: #00BFFF;       /* Blue accent (now primary: base, icons, borders, overlays) */
    --logo-purple: #8E24AA;     /* Purple accent (now secondary: hovers, glows) */
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--black);
}

/* Ensure Lightbox2 controls are visible with theme */
.lb-close,
.lb-prev,
.lb-next {
    z-index: 100000 !important;
    background-color: var(--black) !important;
    color: var(--white) !important;
    box-shadow: 0 0 10px rgba(142, 36, 170, 0.5); /* Swapped to purple glow (secondary) */
    border: 1px solid var(--logo-purple); /* Swapped to purple border */
}

.lb-data-container {
    z-index: 100000 !important;
    background-color: var(--black) !important;
    color: var(--white) !important;
}

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

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

/* Buttons (Blue Primary, Purple Secondary/Hover) */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    color: var(--white);
    border: 2px solid var(--logo-blue); /* Blue primary border */
}

.btn-primary {
    background-color: var(--logo-blue); /* Blue primary */
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.5); /* Blue glow */
}

.btn-primary:hover {
    background-color: var(--black);
    box-shadow: 0 0 20px rgba(142, 36, 170, 0.7); /* Swapped to purple glow on hover */
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--logo-purple); /* Purple secondary */
    box-shadow: 0 0 10px rgba(142, 36, 170, 0.3); /* Purple glow */
}

.btn-secondary:hover {
    background-color: var(--logo-purple);
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.6); /* Swapped to blue glow on hover */
}

.btn-outline {
    background-color: transparent;
    border-color: var(--logo-blue); /* Blue primary */
    box-shadow: 0 0 8px rgba(0, 191, 255, 0.3); /* Blue glow */
}

.btn-outline:hover {
    background-color: var(--logo-blue);
    box-shadow: 0 0 15px rgba(142, 36, 170, 0.5); /* Swapped to purple glow on hover */
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section with gradient background */
.hero {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); /* Dark blue/teal gradient */
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--logo-blue);
}

/* Vertical logo fixed on left or right - CAR FACING DOWNWARD */
/* Vertical logo fixed on left or right - CAR FACING DOWNWARD */
.vertical-logo {
    position: fixed;
    top: 0;
    /*left: 0;  !* Logo on left side *!*/
    right: 0;  /*Logo on right side */
    height: 100vh;
    width: 120px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vertical-logo img {
    width: 200%;
    transform: rotate(-90deg);  /* Fix: Negative rotation for downward facing */
    /*filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.7));*/
    user-select: none;
    max-height: 100vh;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--logo-blue); /* Blue primary accent */
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.8); /* Blue glow (primary) */
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: var(--white);
}

/* Features Section (Black BG) */
.features {
    padding: 80px 0;
    background-color: var(--black);
}

.features h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--logo-blue); /* Blue primary */
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.6); /* Blue glow */
}

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

.feature-card {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Black depth */
    text-align: center;
    border: 1px solid var(--logo-blue); /* Swapped to blue primary border */
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    color: var(--white);
}

.feature-card:hover {
    box-shadow: 0 0 20px rgba(142, 36, 170, 0.6); /* Purple secondary glow on hover */
    border-color: var(--logo-purple); /* Purple on hover */
}

.feature-card h3 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.icon {
    color: var(--logo-blue); /* Swapped to blue primary */
    font-size: 1.4rem;
    margin-right: 8px;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.8); /* Swapped to blue glow */
    display: inline-block;
}

/* Featured Services (Black BG, 2-Column) */
.featured-services {
    padding: 80px 0;
    background-color: var(--black);
}

.featured-services h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--logo-blue); /* Blue primary */
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.6); /* Blue glow */
}

.services-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card {
    background-color: rgba(0, 0, 0, 0.6); /* Dark black card */
    border-radius: 10px;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.7); /* Black shadow */
    padding: 1.2rem 1.5rem 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--logo-blue); /* Swapped to blue primary border */
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    color: var(--white);
}

.service-card:hover {
    box-shadow: 0 0 20px rgba(142, 36, 170, 0.5); /* Purple secondary glow on hover */
    border-color: var(--logo-purple); /* Purple on hover */
}

.service-card img {
    width: 100%;
    max-width: 340px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.8); /* Black image shadow */
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    color: var(--logo-purple); /* Swapped to purple secondary for variety */
    text-shadow: 0 0 8px rgba(142, 36, 170, 0.5); /* Purple glow */
}

.service-card .price {
    font-size: 1.1rem;
    color: var(--white); /* White for contrast */
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3); /* Subtle white glow on price */
}

.service-card p:last-of-type {
    color: var(--light-gray);
}

/* CTA Section (Black BG) */
.cta {
    padding: 80px 0;
    background-color: var(--black);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: var(--logo-blue); /* Blue primary */
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.6); /* Blue glow */
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--light-gray);
}

/* Footer (Black BG) */
.footer {
    padding: 30px 0;
    background-color: var(--black);
    color: var(--light-gray);
    text-align: center;
    font-size: 0.9rem;
    border-top: 2px solid var(--logo-blue); /* Swapped to blue primary accent line */
}

.footer p {
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .services-two-col {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .hero-buttons .btn {
        display: block;
        margin: 10px auto;
    }
}







/* Gallery Filter Controls */
.gallery-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px 0;
    border-bottom: 1px solid var(--logo-blue);
}

.filter-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--logo-blue);
    text-shadow: 0 0 8px rgba(0, 191, 255, 0.5);
    white-space: nowrap;
}

.service-filter {
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--white);
    border: 2px solid var(--logo-blue);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 1rem;
    font-weight: 500;
    min-width: 220px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
}

.service-filter:hover {
    border-color: var(--logo-purple);
    box-shadow: 0 0 15px rgba(142, 36, 170, 0.5);
}

.service-filter:focus {
    outline: none;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.6);
    border-color: var(--logo-purple);
}

.filter-count {
    font-size: 1rem;
    color: var(--light-gray);
    font-weight: 500;
}

#item-count {
    color: var(--logo-blue);
    text-shadow: 0 0 5px rgba(0, 191, 255, 0.5);
}

/* Gallery item class for filtering */
.gallery-item {
    transition: all 0.3s ease;
}

/* Filtered animation state */
.gallery-grid.filtered .gallery-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-grid.filtered .gallery-item[style*="display: none"] {
    transform: scale(0.8);
}

/* Responsive filter controls */
@media (max-width: 768px) {
    .gallery-controls {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .filter-wrapper {
        justify-content: center;
    }

    .service-filter {
        min-width: 200px;
    }

    .filter-count {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .filter-label {
        font-size: 1rem;
    }

    .service-filter {
        min-width: 180px;
        padding: 8px 12px;
    }
}

/* Gallery Section (Black Theme for gallery.html) */
.gallery {
    padding: 80px 0;
    background-color: var(--black);
    color: var(--white);
}

.gallery h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--logo-blue); /* Blue primary */
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.6); /* Blue glow */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-grid > a {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8); /* Black shadow */
    transition: all 0.3s ease;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.7); /* Dark black */
    border: 2px solid var(--logo-blue); /* Swapped to blue primary border */
    color: var(--white);
}

.gallery-grid > a:hover {
    box-shadow: 0 0 25px rgba(142, 36, 170, 0.7); /* Purple secondary glow on hover */
    border-color: var(--logo-purple); /* Purple on hover */
    transform: translateY(-5px);
}

.gallery-grid img,
.gallery-grid video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-grid > a:hover img,
.gallery-grid > a:hover video {
    transform: scale(1.05);
}

.gallery-grid .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 191, 255, 0.9); /* Swapped to blue primary overlay */
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-grid > a:hover .overlay {
    opacity: 1;
    box-shadow: inset 0 0 30px rgba(0, 191, 255, 0.8); /* Swapped to blue inner glow */
}

.gallery-grid .overlay span {
    padding: 12px 24px;
    background-color: var(--black); /* Black badge */
    border-radius: 25px;
    border: 1px solid var(--logo-purple); /* Swapped to purple border on badge */
    box-shadow: 0 0 10px rgba(142, 36, 170, 0.5); /* Swapped to purple glow on badge */
}

/* Responsive adjustments for gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .gallery-grid img,
    .gallery-grid video {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid img,
    .gallery-grid video {
        height: 180px;
    }
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--logo-blue);
    box-shadow: 0 2px 15px rgba(0, 191, 255, 0.3);
}

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

/* Logo container (link) */
.nav-logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0.25rem 0.75rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.03);
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--logo-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--logo-blue);
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.6);
}

.nav-link.active {
    color: var(--logo-blue);
}

.nav-cta {
    padding: 8px 16px;
    background-color: var(--logo-blue);
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background-color: var(--logo-purple);
    box-shadow: 0 0 15px rgba(142, 36, 170, 0.7);
    color: var(--white);
    text-shadow: none;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--logo-blue);
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 191, 255, 0.5);
}






/* Neon logo image in navbar */
.nav-logo-img {
    height: 150px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 191, 255, 0.8));
    mix-blend-mode: screen;     /* Makes dark backgrounds transparent */
}

/* On very small screens, slightly shrink the logo */
@media (max-width: 480px) {
    .nav-logo-img {
        height: 95px;
    }
}
















/* Adjust body padding to account for fixed navbar */
body {
    padding-top: 70px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        gap: 0;
        padding: 2rem 0;
        border-top: 1px solid var(--logo-blue);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-link::after {
        bottom: -8px;
    }

    .nav-cta {
        margin-top: 1rem;
    }
}









/* Responsive adjustments for vertical logo */
@media (max-width: 768px) {
    .vertical-logo {
        display: none;
    }
}

/* GLightbox Custom Styling to Match Theme */
/*.gslide-description {*/
/*    background-color: var(--black) !important;*/
/*    color: var(--white) !important;*/
/*}*/

.gclose,
.gnext,
.gprev {
    color: var(--white) !important;
    background-color: var(--black) !important;
    border: 2px solid var(--logo-blue) !important;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.5) !important;
}

.gclose:hover,
.gnext:hover,
.gprev:hover {
    border-color: var(--logo-purple) !important;
    box-shadow: 0 0 15px rgba(142, 36, 170, 0.7) !important;
}

.goverlay {
    background-color: rgba(0, 0, 0, 0.95) !important;
}

.gslide-description {
    background-color: var(--black) !important;
}

.gslide-title {
    color: #FFFFFF; !important;
}

.glightbox-hidden {
    display: none;
}

.group-count {
    margin-left: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background-color: rgba(0, 0, 0, 0.75);
    border: 1px solid var(--logo-purple);
    box-shadow: 0 0 8px rgba(142, 36, 170, 0.6);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    display: none;
}

.gallery-item.has-group .group-count {
    display: inline-flex;
}

.gallery-grid > a.glightbox-hidden {
    display: none !important;
}




/* ---------- FORM STYLING ---------- */
/* ---------- FORM STYLING (IMPROVED) ---------- */

/* Make the hero section work for long forms */
.hero {
    min-height: calc(50vh);
    height: auto;
    padding: 60px 0;
    align-items: flex-start;
}

/* Optional: keep content away from the vertical logo on the right */
.hero-content {
    width: 100%;
    margin: 0 auto;
    /*padding-right: 140px;*/
}
@media (max-width: 900px) {
    .hero-content { padding-right: 0; }
}

/* Form "card" container */
.form {
    width: 100%;
    max-width: 820px;
    margin: 24px auto 0;
    padding: 28px;
    border-radius: 16px;

    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(0, 191, 255, 0.65);
    box-shadow: 0 0 24px rgba(0, 191, 255, 0.15);
    backdrop-filter: blur(8px);
}

/* Fieldset grouping (clean structure) */
.form fieldset {
    border: 1px solid rgba(0, 191, 255, 0.35);
    border-radius: 14px;
    padding: 18px;
    margin: 18px 0;
}

.form legend {
    padding: 0 10px;
    color: var(--logo-blue);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.35);
}

/* Rows/columns */
.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.form-row .form-group {
    flex: 1 1 260px;
}

/* Form groups */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.form-group label {
    font-weight: 600;
    color: var(--light-gray);
}

/* Unified input/select/textarea styling */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--logo-blue);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.75);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.05s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(224, 224, 224, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--logo-purple);
    box-shadow: 0 0 12px rgba(142, 36, 170, 0.55);
}

.form-group input:active,
.form-group select:active,
.form-group textarea:active {
    transform: translateY(1px);
}

/* Make select dropdown readable on dark theme (browser-dependent but helps) */
.form-group select option {
    background: #000;
    color: #fff;
}

/* Your required star */
.required {
    color: #ff4d4d;
    font-weight: 800;
    margin-left: 4px;
}

/* Button layout */
.form-actions {
    margin-top: 10px;
}
.form-actions .btn {
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .form {
        padding: 18px;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}


/* Navbar Social Icons */
.nav-socials {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
}

.social-link {
    color: var(--white);
    font-size: 1.4rem; /* Adjust size as needed */
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: var(--logo-blue);
    transform: translateY(-3px);
    filter: drop-shadow(0 0 8px var(--logo-blue));
}

/* Hovering TikTok specifically can use your purple accent for variety */
.social-link:hover .fa-tiktok {
    color: var(--logo-purple);
    filter: drop-shadow(0 0 8px var(--logo-purple));
}

/* Responsive: Adjust spacing for mobile */
@media (max-width: 768px) {
    .nav-socials {
        gap: 15px;
        margin-right: 15px; /* Spacing from the hamburger menu */
    }

    .social-link {
        font-size: 1.2rem;
    }
}

/* Hide socials on very small screens to prevent overlap if needed */
@media (max-width: 400px) {
    .nav-socials {
        display: none;
    }
}


.lb-nav a.lb-next {
    width: 15% !important; /* Added !important to ensure it overrides the plugin default */
}


.lb-nav a.lb-prev {
    width: 15%!important;
}


/* Center the last card if it's the 9th item in the 2-column grid */
@media (min-width: 901px) {
    .services-two-col .service-card:last-child:nth-child(odd) {
        grid-column: 1 / span 2;
        justify-self: center;
        width: 100%;
        max-width: 540px; /* This keeps it the same size as the other cards */
    }
}



/* Hide vertical logo on mobile for better SEO/UX */
@media (max-width: 768px) {
    .vertical-logo {
        display: none;
    }
}

.glightbox-clean .gslide-title {
    font-size: 1em;
    font-weight: 400;
    font-family: arial;
    color: #fefefe!important;
    margin-bottom: 19px;
    line-height: 1.4em;
    justify-self: center;
}


.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00BFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-phone:hover {
    color: var(--logo-purple);


}

/* Mobile responsive - hide on smaller screens */
@media (max-width: 768px) {
    .nav-phone {
        display: none;
    }
}


.btn-call {
    background-color: #00BFFF;
    color: #000;
    border: 2px solid #00BFFF;
    font-weight: 700;
}

.btn-call:hover {
    background-color: transparent;
    color: #00BFFF;
}

.btn-call i {
    margin-right: 8px;
}