/* Variables */
:root {
    --primary-color: #000000;
    --secondary-color: #D9501E;
    --accent-color: #ffffff;
    --surface: #ffffff;
    --text-dark: #000000;
    --text-light: #666666;
    --white: #ffffff;
    --border-radius: 12px;
    --shadow-sm: 0 8px 18px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 16px 36px rgba(0, 0, 0, 0.09);
    --transition: all 0.25s ease;
    --container-width: 1200px;
    --glass: rgba(255, 255, 255, 0.9);
    --brand-gradient: linear-gradient(135deg, #D9501E 0%, #D9501E 100%);
    --hero-gradient: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 90px 0;
}

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

.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 18px;
    backdrop-filter: blur(8px);
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 13px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
    box-shadow: none;
}

.btn-primary:hover {
    transform: translateY(-1px);
    background: #000;
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid #d9d9d9;
    margin-left: 15px;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
}

.btn-primary.white {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.btn-primary.white:hover {
    background-color: transparent;
    color: var(--white);
}

.full-width {
    width: 100%;
    text-align: center;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 0;
    background-color: rgba(255, 255, 255, 0.97);
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #efefef;
}

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

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

.logo span {
    color: var(--secondary-color);
}

.logo img {
    display: block;
    height: 42px;
    width: auto;
    filter: brightness(0) saturate(100%);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    line-height: 1;
    /* Ensure text doesn't have extra vertical space */
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--brand-gradient);
    transition: width 0.25s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .btn-primary {
    padding: 10px 24px;
    font-size: 0.9rem;
    line-height: 1.2;
    /* Adjust button line-height if needed */
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-split {
    position: relative;
    padding: 138px 0 92px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
    z-index: 0;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(2.2rem, 3.9vw, 3.5rem);
    color: var(--text-dark);
    text-shadow: none;
}

.hero-copy p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 520px;
}

.hero-kicker {
    display: inline-block;
    padding: 6px 0;
    border-radius: 0;
    background: transparent;
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    font-size: 0.72rem;
    margin-bottom: 18px;
}

.hero-note {
    margin-top: 24px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--text-light);
    font-size: 0.95rem;
}

.hero-note span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    padding: 8px 14px;
    border-radius: 999px;
    box-shadow: none;
}

.hero-media {
    display: flex;
    justify-content: center;
}

.hero-video-card {
    width: 100%;
    max-width: 720px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid #ededed;
    position: relative;
    overflow: hidden;
}

.hero-video-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(0, 0, 0, 0.04), transparent 55%);
    pointer-events: none;
}

.hero-video-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.25);
    aspect-ratio: 3 / 2;
    background: rgba(0, 0, 0, 0.2);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    width: 56px;
    height: 56px;
    margin: auto;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(6px);
}

.hero-video-badge {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.hero-video-badge strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.hero-video-badge p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.ghost-link {
    background: none;
    border: none;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

/* Reviews Section & Slider */
.reviews {
    background: #fafafa;
    overflow: hidden;
}

.reviews-slider {
    max-width: 1200px;
    margin: 40px auto 0;
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.review-slide {
    flex: 0 0 calc((100% - 48px) / 3);
    opacity: 1;
    display: block;
}

.review-slide.active {
    display: block;
}

.review-card {
    background: var(--surface);
    padding: 50px;
    border-radius: 16px;
    box-shadow: none;
    border: 1px solid #e9e9e9;
    text-align: center;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.review-card .stars {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.review-card p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 30px;
}

.client-info strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.client-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 30px;
}

.slider-nav button {
    background: var(--glass);
    border: 1px solid #dddddd;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-color);
    font-size: 1.2rem;
    backdrop-filter: blur(4px);
}

.slider-nav button:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background-color: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-info {
    background-color: var(--secondary-color);
    background: var(--brand-gradient);
    padding: 50px;
    color: var(--white);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-info .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-top: 30px;
}

.info-item i {
    font-size: 1.5rem;
    margin-right: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-form {
    padding: 50px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(14, 26, 43, 0.1);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

/* FAQ Styling (Keeping it consistent) */
.faq {
    background-color: #ffffff;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface);
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid #e8e8e8;
    box-shadow: none;
}

.faq-item:hover {
    border-color: #d7d7d7;
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 25px 25px;
    display: none;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    transition: transform 0.3s;
}

/* Contact Details in Footer */
.contact-details {
    margin-top: 20px;
}

.contact-details p {
    color: #aaa;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact-details i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
}

/* Small Footer */
footer {
    background-color: #ffffff;
    color: var(--text-dark);
    padding: 30px 0;
    border-top: 1px solid #ececec;
}

.small-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left,
.footer-center,
.footer-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-left p,
.footer-center p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-center i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.social-links a {
    color: var(--text-dark);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .small-footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        flex-direction: column;
        gap: 10px;
    }
}

/* Responsive */
@media (max-width: 900px) {
    h1 {
        font-size: 2.6rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .nav-links {
        display: none;
    }

    /* Simplified mobile handling */
    .hamburger {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-md);
        gap: 12px;
    }

    .nav-links a {
        margin: 6px 0;
    }

    .contact-info {
        padding: 30px;
    }

    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 14px 0;
    }

    .nav-links .btn-primary {
        width: 100%;
        margin-left: 0;
        text-align: center;
    }

    .hero-split {
        padding-top: 110px;
    }

    .hero-copy p {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero-buttons .btn-secondary {
        margin-left: 0;
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .hero-buttons .btn-primary {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .hero-video-card {
        max-width: 100%;
    }

    .hero-note {
        justify-content: center;
    }

    .reviews-slider {
        margin-top: 20px;
    }

    .review-slide {
        flex: 0 0 100%;
    }

    .review-card {
        padding: 32px 24px;
    }

    .review-card p {
        font-size: 1.05rem;
    }

    .slider-nav {
        gap: 18px;
    }

    .slider-nav button {
        width: 44px;
        height: 44px;
    }

    .faq-accordion {
        padding: 0 8px;
    }

    .faq-question {
        padding: 20px;
        gap: 10px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 20px 20px;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .section {
        padding: 64px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.18em;
    }

    .reviews-slider {
        max-width: 100%;
        padding: 0 8px;
    }

    .review-card {
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        padding: 0 14px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .logo img {
        height: 36px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 22px;
        font-size: 0.95rem;
    }

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

    .footer-left,
    .footer-center {
        gap: 6px;
    }
}
