/* ============================================
   OJAM CONSTRUCTION - MODERN WEBSITE STYLES
   ============================================ */

/* CSS Variables - Brand Colors */
:root {
    --primary-red: #DC143C;
    --secondary-red: #B22222;
    --accent-red: #FF4444;
    --dark-text: #2C2C2C;
    --light-text: #FFFFFF;
    --gray-bg: #F8F8F8;
    --border-color: #E0E0E0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--gray-bg);
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background-color: var(--primary-red);
    color: var(--light-text);
    padding: 8px 0;
    font-size: 12px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
}

.contact-info {
    display: flex;
    gap: 25px;
    flex-wrap: nowrap;
    align-items: center;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--light-text);
    opacity: 0.9;
    white-space: nowrap;
    flex-shrink: 0;
}

.contact-link:hover {
    opacity: 1;
}

.contact-link svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.contact-link span {
    white-space: nowrap;
}

.social-links {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.social-links a {
    color: var(--light-text);
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    flex-shrink: 0;
}

.social-links a:hover {
    opacity: 1;
    background-color: var(--accent-red);
    transform: translateY(-2px);
}

.social-links a svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background-color: var(--light-text);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
    white-space: nowrap;
}

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

.nav-link {
    color: var(--dark-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-color: var(--accent-red);
    transition: var(--transition);
}

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

.nav-link.cta-button {
    background-color: var(--accent-red);
    color: var(--light-text);
    padding: 10px 20px;
    border-radius: 5px;
    margin-left: 10px;
}

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

.nav-link.cta-button:hover {
    background-color: var(--primary-red);
    transform: translateY(-2px);
}

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

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

.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);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for better mobile support */
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    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(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

/* Darker overlay on mobile for better text readability */
@media (max-width: 768px) {
    .hero-overlay {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    }
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(220, 20, 60, 0.15) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    color: var(--light-text);
    padding: 40px;
    padding-left: max(40px, env(safe-area-inset-left));
    padding-right: max(40px, env(safe-area-inset-right));
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    padding-top: max(10vh, env(safe-area-inset-top, 0px) + 80px);
    padding-bottom: max(40px, env(safe-area-inset-bottom, 0px));
}

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

.hero-main {
    text-align: left;
    max-width: 800px;
    margin: 0;
    padding: 20px 0;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(220, 20, 60, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 20, 60, 0.4);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--light-text);
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease;
}

.hero-headline {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--light-text);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-headline-main {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-headline-accent {
    display: block;
    background: linear-gradient(135deg, var(--accent-red) 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 650px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--primary-red) 100%);
    color: var(--light-text);
    border: none;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

.hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 20, 60, 0.5);
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
}

.hero-cta .btn-primary svg {
    transition: transform 0.3s ease;
}

.hero-cta .btn-primary:hover svg {
    transform: translateX(5px);
}

.hero-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--light-text);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    padding: 25px 0 0;
    margin-top: 20px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--light-text);
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-number .stat-star {
    font-size: 1.8rem;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

.scroll-indicator {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    text-align: center;
    color: var(--light-text);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 1s both;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

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

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--accent-red);
    color: var(--light-text);
    border-color: var(--accent-red);
}

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

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

.btn-secondary:hover {
    background-color: var(--primary-red);
    color: var(--light-text);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-red);
    border-color: var(--primary-red);
}

.btn-outline:hover {
    background-color: var(--primary-red);
    color: var(--light-text);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1.2;
}

.section-title span {
    color: var(--accent-red);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-text);
    opacity: 0.8;
    margin-top: 15px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--dark-text);
}

.about-text .highlight {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--secondary-red);
    margin: 25px 0;
    padding-left: 20px;
    border-left: 3px solid var(--accent-red);
}

.feature-list {
    margin: 30px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--accent-red);
    color: var(--light-text);
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--light-text);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.service-content p {
    color: var(--dark-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--light-text);
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    box-shadow: var(--shadow);
}

.slider-btn:hover {
    background-color: var(--primary-red);
    color: var(--light-text);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev {
    left: -25px;
}

.slider-btn-next {
    right: -25px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
    cursor: pointer;
    flex-shrink: 0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(220, 20, 60, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

.gallery-icon {
    width: 32px;
    height: 32px;
    color: var(--light-text);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-slider {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-red) var(--gray-bg);
    padding-bottom: 10px;
}

.testimonials-slider::-webkit-scrollbar {
    height: 8px;
}

.testimonials-slider::-webkit-scrollbar-track {
    background: var(--gray-bg);
    border-radius: 10px;
}

.testimonials-slider::-webkit-scrollbar-thumb {
    background: var(--accent-red);
    border-radius: 10px;
}

.testimonials-slider::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red);
}

.testimonials-wrapper {
    display: flex;
    gap: 20px;
    padding: 10px 0;
}

.testimonial-card {
    background-color: var(--light-text);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    flex: 0 0 300px;
    min-width: 300px;
    max-width: 300px;
}

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

.testimonial-stars {
    color: var(--accent-red);
    font-size: 1rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-text);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    border-top: 2px solid var(--gray-bg);
    padding-top: 15px;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-red);
    font-size: 1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--dark-text);
    opacity: 0.7;
    font-size: 0.85rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-card {
    background-color: var(--light-text);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-red);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 auto;
}

.contact-card h3 {
    color: var(--primary-red);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-card a,
.contact-card p {
    color: var(--dark-text);
    line-height: 1.6;
    margin: 0;
}

.contact-card a:hover {
    color: var(--accent-red);
}

.contact-form {
    background: linear-gradient(135deg, var(--light-text) 0%, #fafafa 100%);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), var(--primary-red), var(--accent-red));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

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

.form-header h3 {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 10px;
    font-weight: 700;
}

.form-header p {
    color: var(--dark-text);
    opacity: 0.7;
    font-size: 1rem;
}

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

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 18px;
    color: var(--accent-red);
    z-index: 1;
    transition: var(--transition);
}

.input-wrapper.textarea-wrapper .input-icon {
    top: 18px;
    align-self: flex-start;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 18px 18px 55px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--light-text);
    color: var(--dark-text);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1), 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.input-wrapper:focus-within .input-icon {
    color: var(--primary-red);
    transform: scale(1.1);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: rgba(220, 20, 60, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    padding-top: 18px;
}

.form-group textarea ~ .input-icon {
    position: absolute;
    left: 18px;
    top: 18px;
}

.form-submit-btn {
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 35px;
    font-size: 17px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--primary-red) 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
    transition: var(--transition);
}

.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.form-submit-btn:hover::before {
    left: 100%;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
}

.form-submit-btn:active {
    transform: translateY(-1px);
}

.form-submit-btn svg {
    transition: var(--transition);
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--primary-red);
    color: var(--light-text);
    padding: 60px 0 20px;
}

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

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-column p {
    opacity: 1;
    line-height: 1.8;
    font-size: 1rem;
    color: var(--light-text);
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--light-text);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links a {
    opacity: 1;
    color: var(--light-text);
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-red);
    padding-left: 5px;
    transform: translateX(5px);
}

.footer-contact li {
    margin-bottom: 15px;
    opacity: 1;
    line-height: 1.8;
    color: var(--light-text);
    font-size: 1rem;
}

.footer-contact a {
    opacity: 1;
    color: var(--light-text);
    font-weight: 500;
    transition: var(--transition);
}

.footer-contact a:hover {
    opacity: 1;
    color: var(--accent-red);
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--light-text);
}

.footer-social a svg {
    width: 20px;
    height: 20px;
}

.footer-social a:hover {
    background-color: var(--light-text);
    color: var(--primary-red);
    border-color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 1;
    font-size: 1rem;
    font-weight: 500;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    /* Top Bar */
    .top-bar {
        padding: 6px 0;
        font-size: 11px;
    }
    
    .top-bar-content {
        flex-wrap: nowrap;
        gap: 15px;
    }
    
    .contact-info {
        gap: 15px;
        flex-wrap: nowrap;
    }
    
    .contact-link span {
        font-size: 10px;
    }
    
    .contact-link svg {
        width: 12px;
        height: 12px;
    }
    
    .social-links a {
        width: 24px;
        height: 24px;
    }
    
    .social-links a svg {
        width: 14px;
        height: 14px;
    }
    
    /* Navigation */
    .logo-text {
        font-size: 16px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--light-text);
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link.cta-button {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
    
    /* Hero */
    .hero {
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile */
        min-height: 100vh;
        min-height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
        overflow: hidden;
    }
    
    .hero-content {
        padding: 25px;
        padding-left: max(25px, env(safe-area-inset-left, 0px));
        padding-right: max(25px, env(safe-area-inset-right, 0px));
        padding-top: max(5vh, 60px, env(safe-area-inset-top, 0px) + 50px);
        padding-bottom: max(25px, env(safe-area-inset-bottom, 0px) + 15px);
        align-items: center;
        justify-content: center;
        height: 100%;
        box-sizing: border-box;
    }
    
    .hero-wrapper {
        gap: 25px;
        width: 100%;
    }
    
    .hero-main {
        text-align: center;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-badge {
        padding: 5px 14px;
        font-size: 0.7rem;
        margin-bottom: 15px;
        display: inline-block;
    }
    
    .hero-headline {
        font-size: clamp(1.75rem, 5vw, 2.25rem); /* Fluid typography */
        text-align: center;
        margin-bottom: 18px;
        line-height: 1.2;
    }
    
    .hero-subheadline {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        text-align: center;
        margin: 0 auto 25px;
        line-height: 1.5;
        max-width: 100%;
        padding: 0 5px;
    }
    
    .hero-cta {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 28px;
        font-size: 0.95rem;
        min-height: 46px; /* Better touch target */
    }
    
    .hero-stats {
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
        padding: 15px 0 0;
        margin-top: 10px;
        width: 100%;
    }
    
    .stat-item {
        text-align: center;
        flex: 0 1 auto;
        min-width: 90px;
        padding: 0 5px;
    }
    
    .stat-number {
        font-size: clamp(1.5rem, 4vw, 1.9rem);
        margin-bottom: 4px;
    }
    
    .stat-number .stat-star {
        font-size: clamp(1.2rem, 3.5vw, 1.5rem);
    }
    
    .stat-label {
        font-size: clamp(0.65rem, 2vw, 0.75rem);
        line-height: 1.3;
    }
    
    .stat-divider {
        display: none;
    }
    
    .scroll-indicator {
        display: none; /* Hide scroll indicator on mobile */
    }
    
    .scroll-mouse {
        width: 20px;
        height: 32px;
        margin-bottom: 8px;
    }
    
    /* Sections */
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-label {
        font-size: 12px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text .lead {
        font-size: clamp(1.1rem, 4vw, 1.25rem);
        margin-bottom: 15px;
    }
    
    .about-text p {
        font-size: clamp(0.95rem, 2.5vw, 1.05rem);
        margin-bottom: 12px;
    }
    
    .about-text .highlight {
        font-size: clamp(1rem, 3vw, 1.1rem);
        margin: 20px 0;
        padding-left: 15px;
    }
    
    .about-image {
        margin-top: 20px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        margin: 0 auto;
        max-width: 100%;
    }
    
    /* Gallery */
    .gallery {
        overflow: visible;
    }
    
    .gallery .container {
        overflow: visible;
    }
    
    .gallery-grid {
        display: flex;
        flex-direction: row;
        gap: 15px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--accent-red) var(--gray-bg);
        padding-bottom: 10px;
        grid-template-columns: none;
    }
    
    .gallery-grid::-webkit-scrollbar {
        height: 8px;
    }
    
    .gallery-grid::-webkit-scrollbar-track {
        background: var(--gray-bg);
        border-radius: 10px;
    }
    
    .gallery-grid::-webkit-scrollbar-thumb {
        background: var(--accent-red);
        border-radius: 10px;
    }
    
    .gallery-grid::-webkit-scrollbar-thumb:hover {
        background: var(--primary-red);
    }
    
    .gallery-item {
        aspect-ratio: 1;
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
        width: 280px;
    }
    
    /* Testimonials */
    .testimonials-slider {
        padding-bottom: 15px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .testimonial-author strong {
        font-size: 0.95rem;
    }
    
    .testimonial-author span {
        font-size: 0.8rem;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
    
    .contact-card h3 {
        font-size: 1.1rem;
    }
    
    .contact-card a,
    .contact-card p {
        font-size: 0.95rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-header p {
        font-size: 0.95rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    /* Service Pages - Hero Section */
    .service-hero {
        padding: 80px 0 50px !important;
    }
    
    .service-hero .section-header {
        text-align: center !important;
        margin-bottom: 30px !important;
    }
    
    .service-hero .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem) !important;
        text-align: center !important;
        margin-bottom: 15px !important;
    }
    
    .service-hero .section-label {
        text-align: center !important;
    }
    
    .service-hero p {
        font-size: clamp(1rem, 3vw, 1.15rem) !important;
        text-align: center !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 15px;
    }
    
    /* Service Pages - Details Section */
    .service-details-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .service-details-content > div:first-child {
        order: 2;
    }
    
    .service-details-content > div:last-child {
        order: 1;
    }
    
    .service-details-content h2 {
        font-size: clamp(1.5rem, 5vw, 1.9rem) !important;
        margin-bottom: 20px !important;
    }
    
    .service-details-content p {
        font-size: clamp(0.95rem, 2.5vw, 1.05rem) !important;
        line-height: 1.7 !important;
    }
    
    .service-details-content h3 {
        font-size: clamp(1.25rem, 4vw, 1.4rem) !important;
        margin: 30px 0 15px !important;
    }
    
    .service-details-content .service-image {
        margin-bottom: 30px !important;
    }
    
    /* Service Pages - Process/Benefits Sections */
    .service-process > div,
    .service-benefits > div,
    .service-features > div {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .process-step,
    .service-benefits > div > div,
    .service-features > div > div {
        padding: 25px 20px !important;
    }
    
    .process-step h3,
    .service-benefits > div > div h3,
    .service-features > div > div h3 {
        font-size: clamp(1.1rem, 3.5vw, 1.2rem) !important;
        margin-bottom: 12px !important;
    }
    
    .process-step p,
    .service-benefits > div > div p,
    .service-features > div > div p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    
    /* Service Pages - CTA Section */
    .service-cta {
        padding: 50px 0 !important;
    }
    
    .service-cta h2 {
        font-size: clamp(1.75rem, 6vw, 2.25rem) !important;
        margin-bottom: 15px !important;
        padding: 0 15px;
    }
    
    .service-cta p {
        font-size: clamp(1rem, 3vw, 1.15rem) !important;
        margin-bottom: 25px !important;
        padding: 0 15px;
    }
    
    .service-cta .btn {
        padding: 14px 28px !important;
        font-size: 0.95rem !important;
    }
    
    /* Section Headers on Service Pages */
    .section-header {
        margin-bottom: 40px !important;
    }
    
    .section-header h2 {
        font-size: clamp(1.75rem, 5vw, 2.25rem) !important;
    }
    
    /* Feature List on Service Pages */
    .feature-list {
        margin: 25px 0 !important;
    }
    
    .feature-list li {
        font-size: clamp(0.95rem, 2.5vw, 1.05rem) !important;
        margin-bottom: 12px !important;
        padding-right: 10px;
    }
    
    .check-icon {
        width: 26px !important;
        height: 26px !important;
        font-size: 0.9rem !important;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height */
        min-height: 100vh;
        min-height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
        overflow: hidden;
    }
    
    .hero-content {
        padding: 20px;
        padding-left: max(20px, env(safe-area-inset-left, 0px));
        padding-right: max(20px, env(safe-area-inset-right, 0px));
        padding-top: max(4vh, 45px, env(safe-area-inset-top, 0px) + 40px);
        padding-bottom: max(20px, env(safe-area-inset-bottom, 0px) + 10px);
        height: 100%;
        box-sizing: border-box;
    }
    
    .hero-wrapper {
        gap: 20px;
    }
    
    .hero-badge {
        padding: 4px 12px;
        font-size: 0.65rem;
        margin-bottom: 12px;
    }
    
    .hero-headline {
        font-size: clamp(1.5rem, 6vw, 1.9rem);
        margin-bottom: 15px;
        line-height: 1.15;
    }
    
    .hero-subheadline {
        font-size: clamp(0.85rem, 3vw, 0.95rem);
        margin-bottom: 20px;
        line-height: 1.4;
        padding: 0 5px;
    }
    
    .hero-cta {
        gap: 8px;
        max-width: 100%;
    }
    
    .hero-cta .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .hero-stats {
        gap: 10px;
        padding: 12px 0 0;
        margin-top: 8px;
    }
    
    .stat-item {
        min-width: 80px;
        flex: 0 1 calc(33.333% - 8px);
    }
    
    .stat-number {
        font-size: clamp(1.4rem, 5vw, 1.7rem);
    }
    
    .stat-number .stat-star {
        font-size: clamp(1.1rem, 4vw, 1.4rem);
    }
    
    .stat-label {
        font-size: clamp(0.6rem, 2.5vw, 0.7rem);
        line-height: 1.2;
    }
    
    .scroll-indicator {
        display: none; /* Hide scroll indicator on mobile */
    }
    
    .scroll-mouse {
        width: 18px;
        height: 28px;
        margin-bottom: 6px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-header {
        margin-bottom: 35px;
    }
    
    .section-label {
        font-size: 11px;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* About Section (Small Mobile) */
    .about-text .lead {
        font-size: clamp(1rem, 4.5vw, 1.2rem);
    }
    
    .about-text p {
        font-size: clamp(0.9rem, 3vw, 1rem);
    }
    
    .about-text .highlight {
        font-size: clamp(0.95rem, 3.5vw, 1.05rem);
        padding-left: 12px;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    /* Service Pages (Small Mobile) - Additional */
    .service-hero .section-header {
        margin-bottom: 25px !important;
    }
    
    .service-details-content .service-image {
        margin-bottom: 25px !important;
    }
    
    .process-step > div:first-child {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.3rem !important;
        margin-bottom: 15px !important;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 15px 15px 15px 50px;
    }
    
    .input-icon {
        left: 15px;
    }
    
    .form-group textarea ~ .input-icon {
        left: 15px;
        top: 15px;
    }
    
    .testimonial-card {
        flex: 0 0 260px;
        min-width: 260px;
        max-width: 260px;
        padding: 20px;
    }
    
    /* Service Pages - Hero Section (Small Mobile) */
    .service-hero {
        padding: 60px 0 40px !important;
    }
    
    .service-hero .section-title {
        font-size: clamp(1.5rem, 7vw, 2rem) !important;
        margin-bottom: 12px !important;
    }
    
    .service-hero p {
        font-size: clamp(0.9rem, 3.5vw, 1.05rem) !important;
        padding: 0 10px;
    }
    
    /* Service Pages - Details Section (Small Mobile) */
    .service-details-content {
        gap: 25px !important;
    }
    
    .service-details-content h2 {
        font-size: clamp(1.35rem, 6vw, 1.75rem) !important;
        margin-bottom: 15px !important;
    }
    
    .service-details-content p {
        font-size: clamp(0.9rem, 3vw, 1rem) !important;
        margin-bottom: 15px !important;
    }
    
    .service-details-content h3 {
        font-size: clamp(1.15rem, 4.5vw, 1.3rem) !important;
        margin: 25px 0 12px !important;
    }
    
    /* Service Pages - Process/Benefits (Small Mobile) */
    .process-step,
    .service-benefits > div > div,
    .service-features > div > div {
        padding: 20px 15px !important;
    }
    
    .process-step h3,
    .service-benefits > div > div h3,
    .service-features > div > div h3 {
        font-size: clamp(1rem, 4vw, 1.15rem) !important;
    }
    
    .process-step p,
    .service-benefits > div > div p,
    .service-features > div > div p {
        font-size: 0.9rem !important;
    }
    
    /* Service Pages - CTA Section (Small Mobile) */
    .service-cta {
        padding: 40px 0 !important;
    }
    
    .service-cta h2 {
        font-size: clamp(1.5rem, 7vw, 2rem) !important;
        padding: 0 10px;
    }
    
    .service-cta p {
        font-size: clamp(0.95rem, 3.5vw, 1.1rem) !important;
        padding: 0 10px;
    }
    
    .service-cta .btn {
        padding: 12px 24px !important;
        font-size: 0.9rem !important;
    }
    
    /* Feature List (Small Mobile) */
    .feature-list li {
        font-size: clamp(0.9rem, 3vw, 1rem) !important;
        margin-bottom: 10px !important;
    }
    
    .check-icon {
        width: 24px !important;
        height: 24px !important;
        font-size: 0.85rem !important;
    }
    
    /* Gallery (Small Mobile) */
    .gallery-item {
        flex: 0 0 260px;
        min-width: 260px;
        max-width: 260px;
        width: 260px;
    }
}

/* Mobile Landscape Orientation */
@media (max-width: 768px) and (orientation: landscape) and (max-height: 500px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .hero-content {
        padding-top: max(6vh, 60px);
        padding-bottom: 15px;
    }
    
    .hero-wrapper {
        gap: 10px;
    }
    
    .hero-headline {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 6px;
    }
    
    .hero-subheadline {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
        margin-bottom: 10px;
        line-height: 1.4;
    }
    
    .hero-cta {
        flex-direction: row;
        gap: 8px;
        max-width: 100%;
    }
    
    .hero-cta .btn {
        flex: 1;
        min-width: 0;
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .hero-stats {
        gap: 8px;
        padding: 8px 0 0;
    }
    
    .stat-item {
        min-width: 70px;
        flex: 0 1 auto;
    }
    
    .stat-number {
        font-size: clamp(1.3rem, 4vw, 1.6rem);
    }
    
    .stat-label {
        font-size: clamp(0.6rem, 2vw, 0.7rem);
    }
    
    .scroll-indicator {
        display: none; /* Hide scroll indicator on mobile landscape */
    }
}

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

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

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-red);
    color: var(--light-text);
    padding: 8px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-red) 100%);
    color: var(--light-text);
    border: none;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: bold;
    transform: translateY(20px);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.6);
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--primary-red) 100%);
}

.scroll-top-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.5);
}

.scroll-top-btn:focus {
    outline: 3px solid var(--accent-red);
    outline-offset: 3px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .scroll-top-btn {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}

