@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  /* Core Colors */
  --color-primary: #ff7600;
  /* Original Orange */
  --color-primary-dark: #e66a00;
  --color-primary-light: rgba(255, 118, 0, 0.1);
  --color-secondary: #000000;
  /* Pure Black */
  --color-secondary-light: #1a1a1a;

  /* Backgrounds & Text */
  --color-bg: #F9F7F9;
  /* Original Section Background */
  --color-surface: #FFFFFF;
  --color-text: #313131;
  /* Original Dark Charcoal */
  --color-text-muted: #555555;
  --color-text-inverse: #FFFFFF;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  /* Effects */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px rgba(0, 128, 128, 0.3);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

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

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

/* Base Utility Classes */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

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

.text-primary {
  color: var(--color-primary);
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

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

.justify-between {
  justify-content: space-between;
}

.gap-sm {
  gap: var(--space-sm);
}

.gap-md {
  gap: var(--space-md);
}

.gap-lg {
  gap: var(--space-lg);
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.section {
  padding: var(--space-xl) 0;
}

.section-light {
  background-color: var(--color-surface);
}

.section-dark {
  background-color: var(--color-secondary);
  color: var(--color-text-inverse);
}

.section-dark h2,
.section-dark h3 {
  color: var(--color-text-inverse);
}

/* Animations */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn var(--transition-slow) forwards;
}.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-normal);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 48px;
    /* Matched typical logo size */
    width: auto;
    display: block;
}

/* Mobile Toggle */
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.hamburger-lines {
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-surface);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.1, 0.1, 0.1, 1);
}

.menu-toggle.open .line1 {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.open .line2 {
    opacity: 0;
}

.menu-toggle.open .line3 {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.98);
    display: flex;
    flex-direction: column;
    padding: 100px 20px 40px;
    /* Space for logo/toggle */
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    overflow-y: auto;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
    width: 100%;
}

.nav-overlay.active .nav-links {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .nav-overlay {
        position: static;
        height: auto;
        width: auto;
        background: transparent;
        display: flex;
        flex-direction: row;
        padding: 0;
        opacity: 1;
        visibility: visible;
        backdrop-filter: none;
        overflow-y: visible;
    }

    .nav-links {
        flex-direction: row;
        gap: var(--space-md);
        opacity: 1;
        transform: none;
        width: auto;
    }
}

.nav-links a,
.nav-links .dropdown-trigger {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-surface);
    position: relative;
    cursor: pointer;
    text-decoration: none;
}

@media (min-width: 768px) {

    .nav-links a,
    .nav-links .dropdown-trigger {
        font-size: 0.95rem;
    }
}

.nav-links a:hover,
.nav-links .dropdown-trigger:hover {
    color: var(--color-primary);
}

.nav-links>a::after,
.nav-links>.dropdown>.dropdown-trigger::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-fast);
}

@media (min-width: 768px) {

    .nav-links>a:hover::after,
    .nav-links>.dropdown:hover>.dropdown-trigger::after {
        width: 100%;
    }
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

@media (min-width: 768px) {
    .dropdown {
        display: inline-block;
        width: auto;
    }
}

.dropdown-content {
    display: flex;
    position: relative;
    background-color: transparent;
    padding: 0;
    z-index: 101;
    top: 0;
    left: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    margin-top: var(--space-xs);
    width: 100%;
}

@media (min-width: 768px) {
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: var(--color-surface);
        box-shadow: var(--shadow-lg);
        border-radius: var(--radius-md);
        top: 100%;
        align-items: flex-start;
        margin-top: 0;
        width: 200px;
    }

    .dropdown:hover .dropdown-content {
        display: flex;
        animation: fadeIn 0.2s ease-out forwards;
    }
}

/* On mobile, we might want to toggle dropdowns too, 
   but for now let's show them in a list or keep simple */
.nav-overlay.active .dropdown-content {
    display: flex;
}

.dropdown-content a {
    color: var(--color-surface);
    padding: var(--space-xs) var(--space-md);
    display: block;
    text-decoration: none;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

@media (min-width: 768px) {
    .dropdown-content a {
        color: var(--color-secondary);
        padding: var(--space-sm) var(--space-md);
        font-size: 0.9rem;
    }

    .dropdown-content a:hover {
        background-color: rgba(255, 118, 0, 0.1);
        color: var(--color-primary);
        width: 100%;
    }
}

.dropdown-content a::after {
    display: none;
}

.mobile-only-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

@media (min-width: 768px) {
    .mobile-only-actions {
        display: none;
    }
}

.header-actions {
    display: none;
    align-items: center;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .header-actions {
        display: flex;
    }
}

.phone-link {
    font-weight: 600;
    color: var(--color-surface);
}

@media (min-width: 1024px) {
    .phone-link {
        display: block;
    }
}

/* Button variants */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(0, 128, 128, 0.39);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 128, 128, 0.23);
    color: white;
}.footer {
    background-color: var(--color-secondary);
    color: var(--color-text-inverse);
    padding-top: var(--space-xl);
    font-family: var(--font-body);
}

.footer-content {
    display: grid;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 2fr;
    }
}

.footer-brand .logo-link {
    display: inline-block;
    margin-bottom: var(--space-md);
}

.footer-brand .logo-image {
    height: 48px;
    width: auto;
    display: block;
}

.footer-description {
    color: var(--color-text-muted);
    max-width: 300px;
    line-height: 1.6;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 640px) {
    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-column h3 {
    color: var(--color-surface);
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-primary);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-column a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-primary);
}

.contact-info li {
    display: flex;
    gap: var(--space-sm);
    color: var(--color-text-muted);
    align-items: flex-start;
}

.contact-info .icon {
    font-size: 1.2rem;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-md) 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-legal {
    display: flex;
    gap: var(--space-md);
}

.footer-legal a:hover {
    color: var(--color-surface);
}.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-secondary);
    color: var(--color-surface);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text-wrapper {
    max-width: 650px;
}

.hero-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
    position: relative;
    padding-left: 45px;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--color-primary);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-surface);
    margin-bottom: var(--space-md);
    letter-spacing: -1px;
}

.hero-title .text-primary {
    display: block;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-lg);
    max-width: 550px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        align-items: center;
    }
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-outline {
    background-color: transparent;
    color: var(--color-surface);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--color-surface);
    background-color: rgba(255, 255, 255, 0.05);
}.services-section {
    position: relative;
}

.section-header {
    margin-bottom: var(--space-xl);
    max-width: 700px;
    margin-inline: auto;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.section-description {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
}

.service-card {
    background-color: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.03);
    opacity: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 118, 0, 0.3);
}

.service-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: opacity var(--transition-slow);
}

.service-card:hover .service-video {
    opacity: 0.9;
}

.service-icon {
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--color-surface);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    z-index: 2;
    border: 2px solid var(--color-primary-light);
}

.service-content {
    padding: var(--space-md);
    flex-grow: 1;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--color-secondary);
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}.testimonials-section {
    background: var(--color-secondary);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 118, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    position: relative;
    transition: all var(--transition-normal);
    opacity: 0;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 118, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 118, 0, 0.1);
}

.quote-icon {
    font-family: serif;
    font-size: 5rem;
    color: var(--color-primary);
    opacity: 0.15;
    line-height: 1;
    position: absolute;
    top: 10px;
    right: 25px;
}

.testimonial-title {
    color: var(--color-primary);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.testimonial-quote {
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    font-size: 0.95rem;
    min-height: 140px;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: auto;
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff9d4d 100%);
    padding: 2px;
    object-fit: cover;
    border: 2px solid rgba(255, 118, 0, 0.2);
    transition: transform var(--transition-normal);
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
    border-color: var(--color-primary);
}

.author-name {
    color: var(--color-surface);
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.01em;
}