/* Hydro Forced - Dark Mode "Next Level" Styles */

:root {
    /* Brand Colors */
    --brand-yellow: #FFD700;
    --brand-yellow-dim: #e6c200;
    --bg-dark: #121212;
    --bg-darker: #0a0a0a;
    --card-dark: #1e1e1e;
    --text-main: #ffffff;
    --text-dim: #b3b3b3;
    --accent-gradient: linear-gradient(135deg, #FFD700 0%, #e6c200 100%);

    /* Functional */
    --border-color: #333333;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 15px 40px rgba(255, 215, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: uppercase;
    font-style: italic;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--text-main);
    line-height: 1.2;
}

p {
    color: var(--text-dim);
}

a {
    text-decoration: none;
    color: var(--brand-yellow);
    transition: all 0.3s ease;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

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

/* Navigation */
.navbar {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.8rem;
    font-weight: 900;
    font-style: italic;
    color: var(--brand-yellow);
    text-transform: uppercase;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
}

.header-logo {
    height: 45px;
    width: auto;
}

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

.nav-menu a {
    color: var(--text-main);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: var(--brand-yellow);
}

.cta-btn {
    background: var(--brand-yellow) !important;
    color: #000 !important;
    padding: 0.7rem 1.8rem;
    font-weight: 900 !important;
    font-style: italic;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    transition: transform 0.2s ease, background 0.2s ease;
}

.cta-btn:hover {
    background: #fff !important;
    transform: scale(1.05) !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--brand-yellow);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.7)), url('public/images/pressure_washing_water_bg.png');
    background-size: cover;
    background-position: center;
    padding: 10rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(10px);
    padding: 4rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    max-width: 900px;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--brand-yellow);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    line-height: 1.1;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    font-weight: 700;
    text-align: center;
}

.hero-content h2::after {
    display: none;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-dim);
}

.hero-cta {
    display: inline-block;
    background: var(--brand-yellow);
    color: #000;
    padding: 1.2rem 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: #fff;
    transform: scale(1.05);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text-main);
    padding: 1.2rem 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    border: 2px solid var(--brand-yellow);
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    transition: all 0.3s ease;
}

.hero-secondary:hover {
    background: var(--brand-yellow);
    color: #000;
}

.hero-image {
    background: linear-gradient(135deg, #2c3e50 0%, #000 100%);
    height: 500px;
    border: 2px solid var(--brand-yellow);
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    position: relative;
    box-shadow: var(--shadow);
}

/* Sections General */
section {
    padding: 6rem 0;
}

.intro,
.process,
.areas,
.benefits,
.pricing,
.contact {
    background: var(--bg-darker);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    text-align: center;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--brand-yellow);
    margin: 1rem auto 0;
    transform: skewX(-15deg);
}

/* Cards (Services, Problems, Benefits) */
.services-grid,
.problems-grid,
.benefits-grid,
.wall-types-grid,
.seasonal-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card,
.problem-card,
.benefit-card,
.wall-type-card,
.seasonal-card {
    background: var(--card-dark);
    border: none;
    border-left: 5px solid var(--brand-yellow);
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.service-card:hover,
.problem-card:hover,
.benefit-card:hover,
.wall-type-card:hover,
.seasonal-card:hover {
    transform: translateY(-8px);
    background: #252525;
    box-shadow: var(--shadow-hover);
}

.service-icon,
.problem-icon,
.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--brand-yellow);
}

.service-card h3,
.problem-card h3,
.benefit-card h3,
.wall-type-card h3,
.seasonal-card h3 {
    color: var(--brand-yellow);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    background: var(--card-dark);
    padding: 2.5rem;
    border-top: 3px solid var(--brand-yellow);
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    background: #252525;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--brand-yellow);
    color: #000;
    font-weight: 900;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
}

.step h3 {
    color: var(--text-main);
    margin-bottom: 1rem;
}

/* Deployment Timeline */
.deployment-zone {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #000 100%);
    position: relative;
    padding: 6rem 0;
}

.timeline-wrapper {
    position: relative;
    padding-top: 3rem;
}

.timeline-line {
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--brand-yellow) 50%, transparent 100%);
    z-index: 1;
    box-shadow: 0 0 15px var(--brand-yellow);
}

.booking-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.booking-step {
    background: transparent;
    padding: 0;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-diamond {
    width: 50px;
    height: 50px;
    background: #000;
    border: 2px solid var(--brand-yellow);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.booking-step:hover .step-diamond {
    background: var(--brand-yellow);
    transform: rotate(225deg);
}

.step-diamond span {
    transform: rotate(-45deg);
    color: var(--brand-yellow);
    font-weight: 900;
    font-size: 1.1rem;
}

.booking-step:hover .step-diamond span {
    color: #000;
    transform: rotate(-225deg);
}

.step-content {
    background: var(--card-dark);
    padding: 2rem;
    border: 1px solid #333;
    width: 90%;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    transition: all 0.3s ease;
}

.booking-step:hover .step-content {
    border-top: 2px solid var(--brand-yellow);
    transform: translateY(-10px);
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
    letter-spacing: 2px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-dim);
}

@media (max-width: 768px) {
    .booking-steps {
        flex-direction: column;
        gap: 3rem;
    }

    .timeline-line {
        width: 2px;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        background: linear-gradient(180deg, transparent 0%, var(--brand-yellow) 50%, transparent 100%);
    }

    .step-diamond {
        margin-bottom: 2rem;
    }
}


/* Areas List */
.areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.areas-list span {
    background: var(--card-dark);
    color: var(--brand-yellow);
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--border-color);
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    transition: all 0.3s ease;
}

.areas-list span:hover {
    background: var(--brand-yellow);
    color: #000;
    transform: scale(1.1);
}

/* Comparison */
.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.comparison-card {
    background: var(--card-dark);
    padding: 3rem;
    border: 1px solid var(--border-color);
}

.comparison-card.residential {
    border-top: 5px solid #fff;
}

.comparison-card.commercial {
    border-top: 5px solid var(--brand-yellow);
}

.comparison-card li {
    padding: 0.8rem 0 0.8rem 2.5rem;
    position: relative;
    color: var(--text-dim);
    border-bottom: 1px solid #2a2a2a;
}

.comparison-card li::before {
    content: '■';
    color: var(--brand-yellow);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Pricing */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: var(--card-dark);
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border: 2px solid var(--brand-yellow);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.popular-badge {
    background: var(--brand-yellow);
    color: #000;
    padding: 0.5rem 1.5rem;
    text-transform: uppercase;
    font-weight: 900;
    font-style: italic;
    display: inline-block;
    margin-bottom: 1rem;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-top: 2rem;
}

.pricing-card li {
    padding: 0.8rem 0;
    color: var(--text-dim);
    border-bottom: 1px solid #2a2a2a;
}

/* FAQ */
.faq-item {
    background: var(--card-dark);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-left: 5px solid var(--brand-yellow);
    background: #1a1a1a;
}

.faq-question {
    background: transparent;
    color: var(--text-main);
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: var(--brand-yellow);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--brand-yellow);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-dim);
    line-height: 1.7;
}



.faq-answer p {
    padding: 1.5rem;
}

.faq-item.active .faq-answer {
    border-top: 1px solid var(--border-color);
}

/* Contact */
.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-intro {
    color: var(--text-dim);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1rem auto 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    background: var(--card-dark);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: var(--card-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    /* Slight radius */
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
}

.blog-image {
    width: 100%;
    height: 220px;
    background: #000;
    overflow: hidden;
    position: relative;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .placeholder-img {
    transform: scale(1.05);
    /* Gentle zoom effect */
}

.blog-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-category {
    color: var(--brand-yellow);
    font-weight: 700;
}

.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: var(--brand-yellow);
}

.blog-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    color: var(--text-dim);
}

.read-more {
    color: var(--brand-yellow);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    gap: 0.8rem;
    /* Arrow movement */
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

/* Contact Info Side */
.contact-info {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border-right: 1px solid var(--border-color);
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand-yellow), transparent);
    opacity: 0.5;
}

.info-header h3 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-header p {
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 3rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.05);
    /* Very subtle yellow bg */
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--brand-yellow);
    transition: all 0.3s ease;
}

.contact-item:hover .icon-box {
    background: var(--brand-yellow);
    color: #000;
    transform: rotate(-10deg);
}

.item-text {
    display: flex;
    flex-direction: column;
}

.label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 0.2rem;
}

.value {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Contact Form Side */
.contact-form {
    padding: 4rem 3rem;
    background: #121212;
}

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

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: var(--text-dim);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    color: #fff;
    padding: 1.2rem;
    width: 100%;
    font-family: inherit;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Fix for Safari select text color */
.form-group select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--brand-yellow);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #444;
}

.submit-btn {
    width: 100%;
    background: var(--brand-yellow);
    color: #000;
    padding: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    border: none;
    cursor: pointer;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.submit-btn:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-arrow {
    font-style: normal;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Footer */
/* Ultra Modern Footer */
.ultra-footer {
    background: #000;
    color: var(--text-dim);
    padding: 0 0 4rem;
    position: relative;
    overflow: hidden;
    border-top: none;
}

.footer-top-border {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, transparent 0%, var(--brand-yellow) 50%, transparent 100%);
    box-shadow: 0 0 20px var(--brand-yellow);
    margin-bottom: 4rem;
}

.footer-massive-header {
    font-size: 12vw;
    font-weight: 900;
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 2px var(--brand-yellow);
    text-align: center;
    line-height: 0.8;
    margin-bottom: 4rem;
    opacity: 0.2;
    user-select: none;
    letter-spacing: -5px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #1a1a1a;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

/* .footer-logo removed as it is now in header */

.brand-col p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 1rem;
}

.footer-col a {
    color: var(--text-dim);
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-col a:hover {
    color: var(--brand-yellow);
    transform: translateX(10px);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.zones-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 1.5rem;
}

.zones-list li {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    position: relative;
    padding-left: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 0.4rem;
}

.zones-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border: 1px solid #555;
    transition: all 0.3s ease;
}

.zones-list li:hover {
    color: var(--brand-yellow);
    padding-left: 1.5rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    border-bottom-color: rgba(255, 215, 0, 0.1);
}

.zones-list li:hover::before {
    background: var(--brand-yellow);
    border-color: var(--brand-yellow);
    box-shadow: 0 0 8px var(--brand-yellow);
    transform: translateY(-50%) rotate(45deg);
}

/* New Footer Layout */
.footer-zones-full {
    margin-bottom: 4rem;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 4rem;
}

.footer-zones-full h4 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-align: left;
}

.zones-full-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem 2rem;
}

.footer-info-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-bottom: 2rem;
}

.footer-info-split .brand-col {
    border-right: 1px solid #1a1a1a;
    padding-right: 2rem;
}

@media (max-width: 900px) {
    .zones-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-info-split {
        grid-template-columns: 1fr;
    }

    .footer-info-split .brand-col {
        border-right: none;
        border-bottom: 1px solid #1a1a1a;
        padding-right: 0;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.footer-contact-item span {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.footer-contact-item a {
    font-size: 1.2rem;
    color: #fff;
}

.footer-bottom-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #1a1a1a;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-contact-number {
    color: var(--brand-yellow);
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 1px;
    font-style: italic;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #666;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--brand-yellow);
}

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

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

    .footer-massive-header {
        font-size: 15vw;
        -webkit-text-stroke: 1px var(--brand-yellow);
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-legal a {
        margin: 0 1rem;
    }
}


.scroll-top {
    background: var(--brand-yellow);
    color: #000;
    border: none;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
}

/* Mobile */
@media (max-width: 768px) {
    .nav-menu {
        background: var(--card-dark);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 2rem;
        display: none;
        border-bottom: 2px solid var(--brand-yellow);
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .comparison,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form {
        padding: 2rem;
    }

    .contact-info {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Grid */
.testimonials {
    background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand-yellow), transparent);
    opacity: 0.5;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.testimonials::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg,
            rgba(255, 215, 0, 0.4) 0%,
            rgba(255, 215, 0, 0.1) 30%,
            transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.quote-icon {
    font-size: 4rem;
    color: var(--brand-yellow);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e8e8e8;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 300;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-yellow) 0%, #e6c200 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #000;
    font-size: 1.2rem;
    font-style: italic;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.2);
    flex-shrink: 0;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    color: #fff;
    margin: 0 0 0.3rem 0;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.author-info span {
    color: var(--brand-yellow);
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonials {
        padding: 4rem 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 2.5rem 2rem;
    }

    .testimonial-card p {
        font-size: 1rem;
    }
}

/* Gallery Section */
.gallery-section {
    background: var(--bg-dark);
    padding: 8rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: auto;
    /* Allow natural height */
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0.6;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15);
    border-color: var(--brand-yellow);
}

.gallery-item:hover::before {
    opacity: 0.3;
}

.gallery-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--brand-yellow);
    color: #000;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

/* Modern Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.services-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-hero-content h1 {
    font-size: 5rem;
    color: var(--brand-yellow);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.services-hero-content p {
    font-size: 1.4rem;
    color: var(--text-dim);
    font-weight: 400;
}

/* Modern Services Grid */
.services-main {
    background: var(--bg-dark);
    padding: 6rem 0;
}

.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.modern-service-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #151515 100%);
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.modern-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-yellow), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modern-service-card:hover::before {
    opacity: 1;
}

.modern-service-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, #202020 0%, #1a1a1a 100%);
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.1);
}

.modern-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.4s ease;
}

.modern-service-card:hover .modern-icon {
    transform: scale(1.1) rotate(-5deg);
}

.modern-service-card h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 800;
}

.modern-service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dim);
}

/* Simple Process Section */
.simple-process {
    background: var(--bg-darker);
    padding: 6rem 0;
}

.simple-process h2 {
    margin-bottom: 4rem;
}

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

.process-simple-step {
    text-align: center;
    position: relative;
}

.process-num {
    font-size: 4rem;
    font-weight: 900;
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 2px var(--brand-yellow);
    margin-bottom: 1.5rem;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.process-simple-step:hover .process-num {
    opacity: 1;
    color: var(--brand-yellow);
    -webkit-text-stroke: 0px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.process-simple-step h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-simple-step p {
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* Services CTA Section */
.services-cta {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 3rem;
    }

    .services-hero-content p {
        font-size: 1.1rem;
    }

    .services-modern-grid {
        grid-template-columns: 1fr;
    }

    .process-simple-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }
}

/* About Page Styles */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-main);
    padding-bottom: 2rem;
}

.standard-section {
    margin-bottom: 3.5rem;
}

.standard-section h3 {
    color: var(--brand-yellow);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-transform: uppercase;
    font-style: italic;
}

.standard-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dim);
}

.mission-highlight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(18, 18, 18, 0) 100%);
    border-left: 4px solid var(--brand-yellow);
    padding: 3rem;
    margin-bottom: 4rem;
    position: relative;
    border-radius: 0 16px 16px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.mission-highlight:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(18, 18, 18, 0) 100%);
}

.mission-text {
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--text-main);
    font-weight: 300;
}

.highlight-prefix {
    color: var(--brand-yellow);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    margin-right: 0.5rem;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

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

.about-feature {
    background: var(--card-dark);
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-feature h4 {
    color: var(--text-main);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-style: italic;
}

.about-feature p {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* Showcase Gallery Section */
.showcase-gallery {
    padding: 6rem 0;
    background-color: var(--bg-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.15);
    border-color: var(--brand-yellow);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Ultra Video Player Section */
.ultra-video-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 50%, var(--bg-darker) 100%);
    position: relative;
    overflow: hidden;
}

.ultra-video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.video-showcase-wrapper {
    position: relative;
    z-index: 1;
}

.video-header {
    text-align: center;
    margin-bottom: 4rem;
}

.video-title {
    font-size: 3.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff 0%, var(--brand-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-subtitle {
    font-size: 1.3rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto;
}

.ultra-video-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 3rem;
    border-radius: 24px;
    overflow: hidden;
}

.video-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.ultra-video-container:hover .video-glow-effect {
    opacity: 1;
}

.video-player-wrapper {
    position: relative;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s ease;
}

.video-player-wrapper:hover {
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
}

.ultra-video-player {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    background: #000;
}

.video-controls-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 2;
    cursor: pointer;
}

.video-controls-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button-ultra {
    background: linear-gradient(135deg, var(--brand-yellow) 0%, #e6c200 100%);
    border: none;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.play-button-ultra::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: width 0.4s ease, height 0.4s ease;
}

.play-button-ultra:hover::before {
    width: 200%;
    height: 200%;
}

.play-button-ultra:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6);
}

.play-icon {
    width: 40px;
    height: 40px;
    stroke-width: 2;
    fill: #000;
    stroke: #000;
    position: relative;
    z-index: 1;
}

.play-text {
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.video-controls-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
    z-index: 3;
}

.video-player-wrapper:hover .video-controls-bar,
.video-controls-bar.active {
    opacity: 1;
    transform: translateY(0);
}

.controls-left,
.controls-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.controls-center {
    flex: 1;
}

.control-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.control-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    color: var(--brand-yellow);
}

.control-btn svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-pause rect {
    fill: currentColor;
}

.time-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    font-family: 'Courier New', monospace;
}

.time-separator {
    color: var(--text-dim);
}

.progress-container {
    width: 100%;
    padding: 0.5rem 0;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    transition: height 0.2s ease;
}

.progress-bar:hover {
    height: 8px;
}

.progress-filled {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-yellow) 0%, #fff 100%);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
}

.progress-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.2s ease;
    left: 0%;
}

.progress-bar:hover .progress-handle {
    opacity: 1;
}

.video-features-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.video-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 215, 0, 0.05);
    padding: 1.2rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.video-feature-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.feature-icon {
    font-size: 2rem;
}

.video-feature-item span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Video Player */
@media (max-width: 768px) {
    .video-title {
        font-size: 2.5rem;
    }

    .video-subtitle {
        font-size: 1.1rem;
    }

    .play-button-ultra {
        width: 90px;
        height: 90px;
    }

    .play-icon {
        width: 30px;
        height: 30px;
    }

    .play-text {
        font-size: 0.75rem;
    }

    .video-controls-bar {
        padding: 1rem;
        gap: 0.75rem;
    }

    .control-btn svg {
        width: 20px;
        height: 20px;
    }

    .time-display {
        font-size: 0.75rem;
    }

    .video-features-grid {
        gap: 1.5rem;
    }

    .video-feature-item {
        padding: 1rem 1.5rem;
    }

    .video-feature-item span {
        font-size: 0.9rem;
    }
}

/* Success Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease;
}

.modal-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.modal-content {
    background: var(--card-dark);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--brand-yellow);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.2);
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.hidden .modal-content {
    transform: scale(0.8);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--brand-yellow);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: var(--brand-yellow);
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.modal-content h3 {
    font-size: 2rem;
    color: var(--brand-yellow);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: -1px;
}

.modal-content p {
    color: var(--text-dim);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.modal-btn {
    background: var(--brand-yellow);
    color: #000;
    border: none;
    padding: 1rem 3rem;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    cursor: pointer;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.modal-btn:hover {
    transform: scale(1.05);
    background: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Contact Button Animations */
#callDirectBtn {
    transition: all 0.3s ease;
    border: 1px solid transparent;
    /* Prepare for border transition */
    border-radius: 12px;
    /* Slight rounding for better look on hover */
    padding: 0.5rem;
    /* Add padding to look like a button on hover */
    margin: -0.5rem;
    /* Compensate for padding to keep layout stable */
    position: relative;
    overflow: hidden;
}

#callDirectBtn:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--brand-yellow);
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

#callDirectBtn .icon-box {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#callDirectBtn:hover .icon-box {
    transform: scale(1.2) rotate(15deg);
    background: transparent !important;
    border-color: transparent;
    color: var(--brand-yellow);
}

#callDirectBtn .value {
    transition: color 0.3s ease;
}

#callDirectBtn:hover .value {
    color: var(--brand-yellow);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Add ripple effect hint */
#callDirectBtn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
    pointer-events: none;
}

#callDirectBtn:active::after {
    width: 300px;
    height: 300px;
}

/* Call Action Button */
.action-btn {
    background: var(--brand-yellow);
    color: #000;
    border: none;
    padding: 0.5rem 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
    cursor: pointer;
    border-radius: 4px;
    /* Slightly rounded */
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    /* Match theme */
    transition: all 0.3s ease;
    font-size: 0.9rem;
    margin-right: 1rem !important;
    /* Override inline style eventually */
}

.action-btn:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

/* Remove old hover effects from contact-item if not needed generally */
/* We can leave the icon rotation as it's nice */
/* Mini Google Review Badge */
.mini-review-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease;
}

.mini-review-badge:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.google-g {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    color: #000;
    background: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-stars {
    color: #FFD700;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Map Section */
.map-container {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.map-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 215, 0, 0.05);
    /* Branded yellow tint */
    pointer-events: none;
    z-index: 1;
}

.map-container:hover {
    transform: translateY(-5px);
    border-color: var(--brand-yellow);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.map-container iframe {
    display: block;
    width: 100%;
    filter: grayscale(100%) invert(92%) contrast(83%);
    /* Dark mode effect */
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(100%) invert(92%) contrast(90%);
    /* Slight contrast boost on hover */
}

/* Compact Testimonial Slider */
.testimonial-slider {
    position: relative;
    max-width: 100%;
    margin-top: 2rem;
    overflow: hidden;
    padding-bottom: 30px;
    /* Space for dots */
}

.testimonial-track-container {
    overflow: hidden;
    border-radius: 12px;
    background: var(--card-dark);
    border: 1px solid var(--border-color);
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    /* JS sets width or flex-basis logic usually, or just scrolls */
}

.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 1.5rem;
    text-align: center;
}

.compact-quote {
    font-size: 0.95rem;
    color: var(--text-dim);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.compact-author {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-yellow);
    text-transform: uppercase;
}

.slider-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--brand-yellow);
    border: 1px solid var(--border-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--brand-yellow);
    color: #000;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--brand-yellow);
    transform: scale(1.2);
}