/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%);
    overflow-x: hidden;
}

/* Prevent background scroll when mobile menu is open */
body.no-scroll {
    height: 100vh;
    overflow: hidden;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    z-index: 10000;
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    height: 40px;
    width: auto;
    border-radius: 6px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
}

.nav-link:hover::after {
    width: 80%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
    color: white;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-reverse 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

@keyframes float-reverse {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-30px, 30px) rotate(-120deg); }
    66% { transform: translate(20px, -20px) rotate(-240deg); }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(1.9rem, 3.5vw + 1.2rem, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 1.2vw + 0.9rem, 1.5rem);
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #ff9500);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff9500, var(--accent-color));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: clamp(1.6rem, 2.5vw + 1rem, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    position: static;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Services Section */
.services {
    background: linear-gradient(to bottom, #f9fafb 0%, #ffffff 100%);
    position: relative;
}

/* Removed top gradient line above services section */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem 2.5rem;
    align-items: stretch;
}

.packages-section {
    padding-top: 3rem;
}

.packages-grid .service-card {
    text-align: left;
}

.packages-grid .service-icon {
    margin-left: 0;
}

.service-icon-badge {
    width: 96px;
    height: 96px;
    border-radius: 24px;
    background: linear-gradient(145deg, #e0edff, #f3f7ff);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
}

.service-icon-badge span {
    font-size: 2.4rem;
    line-height: 1;
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin: 0.5rem 0 0.75rem;
}

.service-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
}

.service-note {
    font-size: 0.9rem;
    color: var(--text-light);
}
@media (min-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .packages-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
/* .section-divider removed per design change */
    }
}

.service-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(145deg, #ffffff, #f9fafb);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
    text-align: center;
    border: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card:focus { outline: 3px solid var(--primary-color); outline-offset: 4px; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.18);
    border-color: var(--primary-color);
}

.service-card:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 1.5rem;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
}

/* About Section */
.about {
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.08), transparent);
    transition: left 0.6s ease;
}

.feature:hover::before {
    left: 100%;
}

.feature:hover {
    background: linear-gradient(135deg, #dbeafe 0%, #f0f9ff 100%);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.3);
}

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.feature p {
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

/* Service Area Section */
.service-area {
    background: linear-gradient(180deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.service-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.service-area-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Coverage Hero */
.coverage-hero {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.interactive-map-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.okanagan-map {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
}

.region-area {
    cursor: pointer;
    transition: all 0.3s ease;
}

.region-area:hover .region-shape {
    opacity: 0.7 !important;
    transform: scale(1.05);
    transform-origin: center;
}

.region-area:hover .region-marker {
    transform: scale(1.3);
    filter: url(#glow) drop-shadow(0 0 10px currentColor);
}

.region-marker {
    cursor: pointer;
    transition: all 0.3s ease;
}

.region-marker.primary {
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.pulse-ring {
    animation: pulseRing 3s ease-out infinite;
}

.pulse-delay {
    animation-delay: 1.5s;
}

@keyframes pulseRing {
    0% {
        r: 50;
        opacity: 0.3;
    }
    100% {
        r: 150;
        opacity: 0;
    }
}

.coverage-visual {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.location-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.marker-icon {
    font-size: 3rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse-wave 2s ease-out infinite;
}

@keyframes pulse-wave {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.coverage-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.circle-1 {
    width: 80px;
    height: 80px;
    opacity: 0.3;
}

.circle-2 {
    width: 140px;
    height: 140px;
    opacity: 0.2;
}

.circle-3 {
    width: 200px;
    height: 200px;
    opacity: 0.1;
}

.coverage-text h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.coverage-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Regions Container */
.regions-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.region-column {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.region-column:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.region-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.region-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 12px;
    flex-shrink: 0;
}

.region-icon.primary {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.region-header h4 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
}

.region-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.region-label.primary {
    color: var(--primary-color);
}

.city-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.city-list li {
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding-left: 2.5rem;
    transition: all 0.3s ease;
}

.city-list li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    color: var(--primary-color);
    font-weight: bold;
}

.city-list li:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.city-list li:hover::before {
    color: white;
}

/* Coverage Footer */
.coverage-footer {
    margin-top: 3rem;
}

.footer-content-box {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.footer-content-box h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.footer-content-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-accent {
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-accent:hover {
    background: #d97706;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* Gallery Section */
.gallery {
    background-color: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 1rem;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    background-color: var(--bg-white);
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem auto 0;
    max-width: 1200px;
}

.faq-item-center {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    border-left: 5px solid transparent;
    border-image: linear-gradient(180deg, var(--primary-color), var(--accent-color)) 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '?';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(37, 99, 235, 0.05);
    transition: all 0.4s ease;
}

.faq-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.faq-item:hover::before {
    color: rgba(37, 99, 235, 0.1);
    transform: rotate(15deg) scale(1.1);
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Service Pricing */
.service-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: auto;
    padding-top: 1rem;
}

/* Portfolio */
.portfolio {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 0.75rem auto 0.5rem;
}

.filter-chip {
    appearance: none;
    border: 1px solid rgba(37,99,235,0.2);
    background: #fff;
    color: var(--text-dark);
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all .25s ease;
}

.filter-chip:hover,
.filter-chip:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 6px 14px rgba(37,99,235,0.18);
    transform: translateY(-2px);
}

.filter-chip.is-active,
.filter-chip[aria-pressed="true"] {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    border-color: transparent;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(37,99,235,0.08);
    background: var(--bg-white);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(37,99,235,0.2);
}

.portfolio-card:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 4px;
}

.portfolio-card img {
    width: 100%;
    height: 220px; /* fallback */
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.portfolio-card:hover img { transform: scale(1.08); }

.portfolio-caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 0.85rem 1rem;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.65) 100%);
    pointer-events: none;
}

.portfolio-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 6px 16px rgba(0,0,0,0.16);
}

/* Portfolio Lightbox */
.portfolio-lightbox {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.portfolio-lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
}

.lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: lightboxZoom 0.3s ease;
    overflow: hidden;
    padding: 1rem 1.25rem 1.5rem;
    gap: 1rem;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.25);
    transform: rotate(90deg);
}

.lightbox-close:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 4px;
}

#lightboxImage {
    max-width: 100%;
    max-height: 60vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    object-fit: contain;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    line-height: 1;
    transition: all .25s ease;
    z-index: 2;
}

.lightbox-nav:hover { background: rgba(255,255,255,0.28); }
.lightbox-nav:focus { outline: 3px solid var(--accent-color); outline-offset: 4px; }
.lightbox-nav.prev { left: -64px; }
.lightbox-nav.next { right: -64px; }

.lightbox-info {
    margin-top: 1.5rem;
    max-width: 700px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
    #lightboxImage { max-height: 52vh; }
}

.lightbox-caption {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    margin-bottom: 1rem;
}

.lightbox-description {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(37,99,235,0.08);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 1.5rem;
    transition: transform .45s ease, box-shadow .45s ease;
    position: relative;
}

/* Gradient outline for all testimonial cards */
.testimonial-card::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: inherit;
    padding: 2px; /* thickness of gradient frame */
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    pointer-events: none;
    opacity: 0.55; /* slightly subdued compared to active */
    transition: opacity .35s ease;
}

.testimonial-card.active {
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.25);
    border-color: var(--primary-color);
}

.testimonial-card.active::after { opacity: 1; }

.testimonial-rating {
    color: #fbbf24; /* amber-400 */
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.testimonial-quote {
    color: var(--text-dark);
    line-height: 1.7;
}

.testimonial-author {
    margin-top: 0.9rem;
    color: var(--text-light);
    font-weight: 700;
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.floating-call-btn:hover {
    background-color: #d97706;
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(245, 158, 11, 0);
    }
}

/* Blog Section */
.blog {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 0 auto;
}

.blog-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(37, 99, 235, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}

.blog-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(245, 158, 11, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.2);
}

.blog-card:hover::after {
    opacity: 1;
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 240px;
    width: 100%;
}

.blog-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.blog-card:hover .blog-image::before {
    opacity: 1;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.blog-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--bg-light);
}

.blog-date {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
}

.blog-read-time {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-read-time::before {
    content: '⏱';
}

.blog-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

.blog-read-more {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    padding: 0.5rem 0;
}

.blog-read-more:hover {
    gap: 0.75rem;
    color: var(--accent-color);
}

/* Booking Section */
.booking {
    background-color: var(--bg-light);
}

.ari-booking-wrapper {
    max-width: 100%;
    width: 100%;
    margin: 3rem auto 0;
    background-color: var(--bg-white);
    padding: 0;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.ari-booking-iframe {
    width: 100%;
    min-height: 1400px;
    height: auto;
    border: none;
    display: block;
}

.booking-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.booking-note a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.booking-note a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact {
    background-color: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--secondary-color);
}

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.form-group {
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 1;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid transparent;
    background: white;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Status Messages */
.form-status {
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 0.375rem;
    font-weight: 500;
    display: none;
}

.form-status.success {
    display: block;
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-status.error {
    display: block;
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 3rem 0 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.footer p {
    margin: 0.5rem 0;
    opacity: 0.9;
    font-size: 1rem;
}

.social-media h3 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    opacity: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.social-links a {
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.85;
    display: inline-block;
    padding: 0.75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-5px) scale(1.1);
    color: var(--accent-color);
    background: rgba(245, 158, 11, 0.15);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 0.5rem 0.75rem 0.75rem;
        box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        border-bottom: 1px solid var(--border-color);
        gap: 0;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        padding: 0.25rem 0;
        border-bottom: none;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 0.85rem 0.9rem;
        margin: 0.1rem 0;
        border-radius: 10px;
    }

    .hero-title {
        font-size: clamp(1.75rem, 4.5vw + 0.75rem, 2.2rem);
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2rem);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    
    .gallery-grid { grid-template-columns: 1fr; }
    
    .blog-grid { grid-template-columns: 1fr; }
    
    .blog-image {
        height: 220px;
    }
    
    .faq-list {
        grid-template-columns: 1fr;
    }
    
    .coverage-hero {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }
    
    .coverage-visual { width: 150px; height: 150px; }
    
    .regions-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content-box {
        padding: 2rem;
    }
    
    .ari-booking-wrapper {
        padding: 0;
        margin: 2rem 0 0;
        border-radius: 8px;
    }
    
    .ari-booking-iframe {
        min-height: 1600px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .floating-call-btn {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    .brand-logo { height: 32px; }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}

/* Medium phones / phablets: start introducing multi-column layouts */
@media (min-width: 560px) and (max-width: 799px) {
    .faq-list { grid-template-columns: repeat(2, 1fr); }
    .regions-container { grid-template-columns: repeat(2, 1fr); }
    .coverage-hero { grid-template-columns: 0.9fr 1.1fr; gap: 1.75rem; padding: 2rem; }
    .coverage-visual { width: 160px; height: 160px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Landscape large phones/tablets: get desktop-like 3-column grids */
@media (min-width: 800px) and (max-width: 1100px) {
    .regions-container { grid-template-columns: repeat(3, 1fr); }
    .blog-grid { grid-template-columns: repeat(3, 1fr); }
    .faq-list { grid-template-columns: repeat(2, 1fr); }
}

/* Small phones: stack everything cleanly for clarity */
@media (max-width: 559px) {
    .coverage-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.75rem 1.25rem;
    }
    .coverage-text h3 { font-size: 1.55rem; }
    .coverage-text p { font-size: 1rem; }
    .regions-container { grid-template-columns: 1fr; }
    .faq-list { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .region-column, .faq-item, .service-card, .blog-card, .footer-content-box {
        border-radius: 14px;
        padding: 1.5rem;
    }
    .region-column { padding: 1.75rem 1.5rem; }
    .city-list li { margin-bottom: 0.4rem; }
    .service-card { padding: 1.75rem 1.25rem; }
}

/* Tighten vertical rhythm globally on very small screens */
@media (max-width: 380px) {
    .hero { padding: 5.5rem 0 4rem; }
    .hero-buttons { gap: 0.75rem; }
    .section-title { margin-bottom: 1.1rem; }
    section { padding: 3.75rem 0; }
}
