/* ============================================
   CSS Variables - Brand Colors
   ============================================ */
:root {
    --color-primary: #FF8C00; /* Golden Orange */
    --color-primary-dark: #E67E00;
    --color-primary-light: #FFA500;
    --color-secondary: #2C2C2C; /* Dark Gray/Charcoal */
    --color-secondary-light: #3A3A3A;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-white: #FFFFFF;
    --color-bg: #F8F9FA;
    --color-bg-light: #FFFFFF;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    -webkit-tap-highlight-color: rgba(255, 140, 0, 0.2);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

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

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    height: 50px;
    width: auto;
}

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

.nav-link {
    color: var(--color-text);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

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

.nav-link.cta-nav {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
}

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

.nav-link.cta-nav:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-secondary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 0 60px;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.88) 0%, rgba(44, 44, 44, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 140px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    color: var(--color-white);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 140, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 140, 0, 0.3);
    color: var(--color-primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero-headline {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--color-white);
}

.hero-subheadline {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.7;
}

.hero-trust-indicators {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: nowrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-stars {
    color: #FFD700;
    font-size: 15px;
    letter-spacing: 1.5px;
}

.trust-rating {
    color: var(--color-white);
    font-weight: 700;
}

.trust-text {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.hero-features {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-phone-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 35px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

.hero-phone-btn .btn-icon {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
    flex-shrink: 0;
    vertical-align: middle;
}

.hero-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 35px;
    font-size: 18px;
    font-weight: 700;
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.hero-secondary-btn:hover,
.hero-secondary-btn:focus {
    background: var(--color-white);
    color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Hero Form */
.hero-form-wrapper {
    position: relative;
}

.hero-form-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-secondary);
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: inherit;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    background: var(--color-white);
    color: var(--color-text);
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-tap-highlight-color: transparent;
    min-height: 44px; /* Minimum touch target size */
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.form-input:hover {
    border-color: #C0C0C0;
}

.form-input::placeholder {
    color: #999;
}

/* Select dropdown arrow */
.form-group select.form-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.form-submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 5px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.form-submit-btn .btn-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.form-disclaimer {
    font-size: 12px;
    color: var(--color-text-light);
    text-align: center;
    margin-top: 5px;
    line-height: 1.5;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: var(--color-white);
    font-size: 12px;
    opacity: 0.8;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--color-white);
    margin: 10px auto 0;
    position: relative;
    animation: scrollBounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
    transform: rotate(45deg);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
    min-height: 44px; /* Minimum touch target size */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--color-primary);
    color: var(--color-white);
}

.hero .btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.hero .btn-secondary:hover,
.hero .btn-secondary:focus {
    background: var(--color-white);
    color: var(--color-secondary);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    background: var(--color-bg);
}

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

.services-preview {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto 50px;
}

.service-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.service-description {
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    text-align: left;
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--color-text);
    font-size: 14px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.services-cta {
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.services-cta .btn {
    min-width: 200px;
}

/* ============================================
   Page Header (for Services Page)
   ============================================ */
.page-header {
    position: relative;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    color: var(--color-white);
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 70px;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 140, 0, 0.03) 2px,
            rgba(255, 140, 0, 0.03) 4px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 2px,
            rgba(255, 140, 0, 0.03) 2px,
            rgba(255, 140, 0, 0.03) 4px
        ),
        radial-gradient(
            circle at 20% 50%,
            rgba(255, 140, 0, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(255, 140, 0, 0.08) 0%,
            transparent 50%
        );
    z-index: 1;
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF8C00' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

/* Alternative: If you want to use a background image instead of texture pattern */
/* Uncomment and add your image path:
.page-header {
    background-image: url('your-texture-image.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}
*/

.page-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--color-white);
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-page {
    padding-top: 60px;
}

/* ============================================
   About Section
   ============================================ */
.about {
    background: var(--color-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

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

.about-description {
    font-size: 17px;
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: var(--color-white);
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.feature-item h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--color-text-light);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   Work Section
   ============================================ */
.work {
    background: var(--color-bg);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.work-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    aspect-ratio: 1;
    background: var(--color-bg);
}

.work-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.work-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.work-item:hover .work-image {
    transform: scale(1.05);
}

/* ============================================
   Reviews Section
   ============================================ */
.reviews {
    background: var(--color-white);
}

.reviews-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) rgba(0, 0, 0, 0.1);
}

.reviews-carousel::-webkit-scrollbar {
    height: 8px;
}

.reviews-carousel::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.reviews-carousel::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
}

.reviews-carousel::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}

.review-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    background: var(--color-white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 8px;
}

.review-stars {
    color: #FFD700;
    font-size: 16px;
    letter-spacing: 2px;
}

.review-date {
    font-size: 14px;
    color: var(--color-text-light);
}

.review-text {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.review-service {
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 600;
}


/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: linear-gradient(to bottom, var(--color-bg) 0%, var(--color-white) 50%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 140, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 140, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.contact-card {
    background: var(--color-white);
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-card:hover .contact-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
}

.contact-icon {
    width: 35px;
    height: 35px;
    color: var(--color-white);
    stroke-width: 2;
}

.contact-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.contact-card-link {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
    margin-bottom: 10px;
    transition: var(--transition);
}

.contact-card-link:hover {
    color: var(--color-primary-dark);
    transform: scale(1.05);
}

.contact-card-address {
    font-style: normal;
    line-height: 1.8;
    color: var(--color-text-light);
    font-size: 15px;
    margin: 0;
}

.contact-card-hours {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
    display: block;
}

.contact-card-description {
    color: var(--color-text-light);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.contact-cta-box {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.contact-cta-box > * {
    position: relative;
    z-index: 2;
}

.cta-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-icon {
    width: 40px;
    height: 40px;
    color: var(--color-white);
    stroke-width: 2;
}

.cta-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--color-white);
}

.cta-description {
    font-size: 17px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 18px 45px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
    transition: var(--transition);
    margin-bottom: 25px;
}

.cta-button:hover {
    background: var(--color-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.5);
}

.btn-icon {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.cta-feature {
    font-size: 15px;
    opacity: 0.9;
    position: relative;
    padding-left: 20px;
}

.cta-feature::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 18px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 60px 0 30px;
}

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

.footer-logo {
    height: 60px;
    width: auto;
    margin: 0 auto 20px;
    display: block;
}

.footer-section:first-child {
    text-align: center;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 14px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ============================================
   Mobile Responsive Styles
   ============================================ */

/* Tablet and below */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-layout {
        gap: 70px;
    }

    .hero-headline {
        font-size: 42px;
    }

    .hero-form-card {
        padding: 35px 30px;
    }

    .services-preview {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        gap: 50px;
    }
}

/* Mobile and below */
@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 20px;
    }

    /* Navigation */
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-wrapper {
        padding: 15px 20px;
    }

    .logo {
        height: 45px;
    }

    .nav-menu {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        max-height: calc(100vh - 75px);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        font-size: 16px;
    }

    .nav-link.cta-nav {
        margin-top: 15px;
        text-align: center;
        border: none;
        border-radius: 8px;
        padding: 12px 20px;
    }

    /* Hero Section */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 90px 0 50px;
    }
    
    .hero-content {
        height: auto;
    }

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

    .hero-text {
        text-align: center;
        padding: 0 10px;
    }

    .hero-form-wrapper {
        display: none; /* Hide form on mobile */
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 20px;
    }

    .hero-headline {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .hero-subheadline {
        font-size: 17px;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .hero-trust-indicators {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 30px;
    }

    .trust-badge {
        font-size: 12px;
        padding: 8px 14px;
        white-space: nowrap;
    }

    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 18px;
        margin-bottom: 30px;
    }

    .hero-feature {
        font-size: 14px;
        gap: 8px;
    }

    .feature-icon {
        width: 18px;
        height: 18px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-phone-btn,
    .hero-secondary-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
        font-size: 17px;
    }

    .hero-form-wrapper {
        padding: 0 10px;
    }

    .hero-form-card {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .form-header {
        margin-bottom: 25px;
    }

    .form-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .form-subtitle {
        font-size: 14px;
    }

    .hero-form {
        gap: 18px;
    }

    .form-group {
        gap: 8px;
    }

    .form-label {
        font-size: 13px;
    }

    .form-input {
        padding: 13px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .form-textarea {
        min-height: 90px;
    }

    .form-submit-btn {
        padding: 15px;
        font-size: 16px;
        margin-top: 5px;
    }

    .form-disclaimer {
        font-size: 11px;
        margin-top: 8px;
    }

    .hero-scroll-indicator {
        bottom: 20px;
        font-size: 11px;
    }

    /* Hide scroll indicator on very small screens */
    @media (max-height: 600px) {
        .hero-scroll-indicator {
            display: none;
        }
    }

    /* Sections */
    section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 16px;
        line-height: 1.6;
    }

    /* Services */
    .services-preview {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 30px 25px;
        width: 100%;
    }

    .service-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .service-description {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .service-features {
        margin-top: 18px;
    }

    .service-features li {
        font-size: 14px;
        padding: 7px 0;
        padding-left: 22px;
    }

    .services-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 0 10px;
    }

    .services-cta .btn {
        width: 100%;
        max-width: none;
        padding: 15px 30px;
        font-size: 16px;
    }

    /* Page Header */
    .page-header {
        padding: 100px 0 60px;
        margin-top: 75px;
    }

    .page-title {
        font-size: 32px;
        margin-bottom: 15px;
        padding: 0 10px;
    }

    .page-subtitle {
        font-size: 16px;
        padding: 0 10px;
    }

    .services-page {
        padding-top: 40px;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-image {
        order: -1;
    }

    .about-img {
        max-height: 350px;
        object-fit: cover;
        width: 100%;
    }

    .about-text {
        padding: 0 10px;
    }

    .about-description {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .feature-item {
        padding: 30px 25px;
    }

    .feature-item h4 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .feature-item p {
        font-size: 14px;
    }

    /* Work */
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .work-item {
        border-radius: 8px;
    }

    /* Reviews */
    .reviews-carousel-wrapper {
        padding: 0 10px;
    }

    .reviews-carousel {
        padding: 20px 10px;
        gap: 20px;
    }

    .review-card {
        flex: 0 0 calc(100% - 20px);
        min-width: calc(100% - 20px);
        padding: 25px 20px;
    }

    .review-header {
        margin-bottom: 18px;
    }

    .reviewer-name {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .review-stars {
        font-size: 15px;
    }

    .review-date {
        font-size: 13px;
    }

    .review-text {
        font-size: 15px;
        margin-bottom: 12px;
        line-height: 1.6;
    }

    .review-service {
        font-size: 13px;
    }

    /* Contact */
    .contact-content {
        gap: 40px;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 30px 25px;
    }

    .contact-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }

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

    .contact-card-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .contact-card-link {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .contact-card-address {
        font-size: 14px;
    }

    .contact-card-hours {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .contact-card-description {
        font-size: 14px;
    }

    .contact-cta-box {
        padding: 40px 25px;
        border-radius: 15px;
    }

    .cta-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .cta-icon {
        width: 35px;
        height: 35px;
    }

    .cta-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .cta-description {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 16px 30px;
        font-size: 17px;
        width: 100%;
        max-width: none;
        justify-content: center;
        margin-bottom: 20px;
    }

    .cta-features {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        margin-top: 20px;
    }

    .cta-feature {
        font-size: 14px;
        padding-left: 18px;
    }

    /* Footer */
    .footer {
        padding: 50px 0 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 35px;
    }

    .footer-logo {
        height: 50px;
        margin-bottom: 18px;
    }

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

    .footer-section h4 {
        font-size: 17px;
        margin-bottom: 18px;
    }

    .footer-section p {
        font-size: 14px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-bottom {
        padding-top: 25px;
        font-size: 13px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-wrapper {
        padding: 12px 15px;
    }

    .logo {
        height: 40px;
    }

    .nav-menu {
        top: 64px;
        padding: 15px;
    }

    /* Hero */
    .hero {
        padding: 80px 0 40px;
    }

    .hero-text {
        padding: 0;
    }

    .hero-badge {
        font-size: 11px;
        padding: 5px 14px;
    }

    .hero-headline {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .hero-subheadline {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .hero-trust-indicators {
        gap: 8px;
        margin-bottom: 25px;
    }

    .trust-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .hero-features {
        gap: 15px;
        margin-bottom: 25px;
    }

    .hero-feature {
        font-size: 13px;
    }

    .hero-cta-group {
        gap: 12px;
    }

    .hero-phone-btn,
    .hero-secondary-btn {
        padding: 14px 25px;
        font-size: 16px;
    }

    .hero-form-wrapper {
        padding: 0;
    }

    .hero-form-card {
        padding: 25px 18px;
    }

    .form-title {
        font-size: 22px;
    }

    .form-subtitle {
        font-size: 13px;
    }

    .form-input {
        padding: 12px 14px;
    }

    /* Sections */
    section {
        padding: 40px 0;
    }

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

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    /* Services */
    .services-grid {
        gap: 20px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-title {
        font-size: 19px;
    }

    .service-description {
        font-size: 14px;
    }

    /* Page Header */
    .page-header {
        padding: 90px 0 50px;
    }

    .page-title {
        font-size: 28px;
    }

    .page-subtitle {
        font-size: 15px;
    }

    /* About */
    .about-img {
        max-height: 300px;
    }

    .about-description {
        font-size: 15px;
    }

    .feature-item {
        padding: 25px 20px;
    }

    .feature-item h4 {
        font-size: 19px;
    }

    /* Work */
    .work-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Reviews */
    .review-card {
        padding: 20px 18px;
    }

    .reviewer-name {
        font-size: 16px;
    }

    .review-text {
        font-size: 14px;
    }

    /* Contact */
    .contact-card {
        padding: 25px 20px;
    }

    .contact-icon-wrapper {
        width: 55px;
        height: 55px;
    }

    .contact-icon {
        width: 28px;
        height: 28px;
    }

    .contact-card-title {
        font-size: 17px;
    }

    .contact-card-link {
        font-size: 18px;
    }

    .contact-cta-box {
        padding: 35px 20px;
    }

    .cta-icon-wrapper {
        width: 65px;
        height: 65px;
    }

    .cta-title {
        font-size: 22px;
    }

    .cta-description {
        font-size: 14px;
    }

    .cta-button {
        padding: 15px 25px;
        font-size: 16px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 30px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero-headline {
        font-size: 24px;
    }

    .hero-subheadline {
        font-size: 14px;
    }

    .section-title {
        font-size: 22px;
    }

    .page-title {
        font-size: 26px;
    }

    .trust-badge {
        font-size: 10px;
        padding: 5px 10px;
    }

    .hero-feature {
        font-size: 12px;
    }
}

/* ============================================
   Mobile-Specific Enhancements
   ============================================ */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    /* Better scrolling on iOS */
    .reviews-carousel,
    .services-grid {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    /* Improve video performance on mobile */
    .hero-video {
        object-position: center;
    }

    /* Better spacing for mobile sections */
    .section-header {
        padding: 0 5px;
    }

    /* Improve tap targets */
    .nav-link,
    .service-card,
    .contact-card,
    .review-card {
        min-height: 44px;
    }

    /* Prevent text selection on buttons during tap */
    .btn,
    .mobile-menu-toggle {
        user-select: none;
        -webkit-user-select: none;
    }

    /* Better form input appearance on mobile */
    input[type="tel"],
    input[type="text"],
    input[type="email"],
    textarea,
    select {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Smooth transitions for mobile */
    * {
        -webkit-tap-highlight-color: rgba(255, 140, 0, 0.1);
    }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
        .hero {
            min-height: auto;
            padding: 80px 0 30px;
        }

        .hero-layout {
            gap: 40px;
        }

        .hero-headline {
            font-size: 28px;
        }

        .hero-subheadline {
            font-size: 16px;
        }

        .hero-scroll-indicator {
            display: none;
        }

        section {
            padding: 40px 0;
        }
    }
}

/* ============================================
   Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --color-primary: #FF6600;
        --color-secondary: #000000;
    }
}

