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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p {
    margin-bottom: 1rem;
    font-weight: 300;
}

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

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

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-6 {
    width: 100%;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .col-md-6 { width: 50%; }
}

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

/* Accent Colors */
.accent-text {
    color: #FF6B35;
    background: linear-gradient(45deg, #FF6B35, #ffb347, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.btn:hover:before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #FF6B35, #ffb347, #ffffff);
    color: #000;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 140, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #FF6B35;
    border: 2px solid #FF6B35;
    font-weight: 600;
}

.btn-outline:hover {
    background: linear-gradient(45deg, #FF6B35, #ffb347);
    color: #000;
    font-weight: 600;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
}

.logo-text small {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #FF6B35;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #FF6B35, #ffb347, #ffffff);
    transition: width 0.3s ease;
}

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

.nav-cta {
    display: none;
    gap: 15px;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
    width: 100%;
    max-width: 400px;
    padding: 40px 20px;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.mobile-nav-menu li {
    margin: 20px 0;
}

.mobile-nav-menu .nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.5s ease forwards;
}

.mobile-nav-menu li:nth-child(1) .nav-link { animation-delay: 0.1s; }
.mobile-nav-menu li:nth-child(2) .nav-link { animation-delay: 0.2s; }
.mobile-nav-menu li:nth-child(3) .nav-link { animation-delay: 0.3s; }
.mobile-nav-menu li:nth-child(4) .nav-link { animation-delay: 0.4s; }
.mobile-nav-menu li:nth-child(5) .nav-link { animation-delay: 0.5s; }

.mobile-nav-menu .nav-link:hover,
.mobile-nav-menu .nav-link.active {
    color: #FF6B35;
    transform: scale(1.05) translateY(0);
}

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

.mobile-nav-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.mobile-nav-cta .btn {
    min-width: 250px;
    padding: 15px 30px;
    font-size: 16px;
}

@media (min-width: 768px) {
    .nav-menu { display: flex; }
    .nav-cta { display: flex; }
    .mobile-menu-toggle { display: none; }
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8), 1px 1px 2px rgba(0,0,0,0.9);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8), 1px 1px 2px rgba(0,0,0,0.9);
}

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

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.feature-icon {
    font-size: 24px;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-10px) rotate(45deg); }
    60% { transform: translateY(-5px) rotate(45deg); }
}

/* Premium Hero Section */
.hero-premium {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}

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

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.hero-video-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) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    z-index: 2;
}

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

.hero-text-premium {
    color: #fff;
    max-width: 900px;
    animation: heroSlideUp 1.2s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-title-premium {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-line-1 {
    display: block;
    color: #fff;
    animation: fadeInLeft 1s ease-out 0.6s both;
}

.hero-line-2 {
    display: block;
    color: #fff;
    animation: fadeInLeft 1s ease-out 0.8s both;
}

.hero-line-3 {
    display: block;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInLeft 1s ease-out 1s both;
}

.hero-services-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 1.2s both;
}

.service-item {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.service-divider {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.hero-subtitle-premium {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 1.4s both;
}

.hero-subtitle-premium strong {
    color: #fff;
    font-weight: 600;
}

.hero-cta-premium {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 1.6s both;
    flex-wrap: wrap;
}

.btn-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 35px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    overflow: hidden;
    border: 2px solid;
    min-width: 180px;
}

.btn-primary-premium {
    background: linear-gradient(45deg, #FF6B35, #ffb347, #ffffff);
    color: #000;
    font-weight: 700;
    box-shadow: 0 8px 32px rgba(255, 149, 0, 0.4);
}

.btn-primary-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 149, 0, 0.5);
    background: linear-gradient(45deg, #ffaa00, #ffcc66, #ffffff);
}

.btn-secondary-premium {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary-premium:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-shine {
    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.6s;
}

.btn-primary-premium:hover .btn-shine {
    left: 100%;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    animation: fadeInUp 1s ease-out 1.8s both;
}

.location-icon {
    font-size: 16px;
}

.scroll-indicator-premium {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    animation: fadeInUp 1s ease-out 2s both;
}

.scroll-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.scroll-arrow-premium {
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 auto;
    position: relative;
    animation: scrollBounce 2s infinite;
}

.scroll-arrow-premium:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid rgba(255, 255, 255, 0.6);
}

/* Premium Hero Animations */
@keyframes heroSlideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Premium Hero */
@media (max-width: 768px) {
    .hero-services-bar {
        justify-content: center;
    }
    
    .service-item {
        font-size: 10px;
    }
    
    .hero-cta-premium {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-premium {
        min-width: 250px;
    }
}

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

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

.section-title {
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Preview */
.services-preview {
    background: #000;
    position: relative;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ff8c00" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23ff8c00" opacity="0.03"/><circle cx="50" cy="10" r="1" fill="%23ff8c00" opacity="0.02"/><circle cx="10" cy="90" r="1" fill="%23ff8c00" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

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

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: #000;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 149, 0, 0.3);
    border-color: #FF6B35;
}

.service-card.featured {
    border: 2px solid #FF6B35;
    background: #000;
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #FF6B35, #ffb347, #ffffff);
    color: #000;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid #FF6B35;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 15px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-title {
    margin-bottom: 15px;
    color: #fff;
}

.service-description {
    margin-bottom: 20px;
    opacity: 0.8;
    font-size: 14px;
}

.service-price {
    font-size: 18px;
    margin-bottom: 20px;
}

.price {
    font-weight: 700;
    color: #FF6B35;
    font-size: 24px;
}

.service-link {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.service-link:hover {
    text-decoration: underline;
}

/* Why Choose Us */
.why-choose-us {
    background: #000;
    padding: 80px 0;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 40px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-content h4 {
    margin-bottom: 10px;
    color: #FF6B35;
}

.benefit-content p {
    opacity: 0.8;
    margin-bottom: 0;
}

.image-container {
    position: relative;
    margin-top: 30px;
}

.feature-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
    .image-container {
        margin-top: 0;
    }
}

/* Process Section */
.process-section {
    background: #000;
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(7, 1fr);
        gap: 0;
    }
}

.process-step {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #FF6B35, #ffb347, #ffffff);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    margin: 0 auto 20px;
}

.step-content h3 {
    margin-bottom: 15px;
    color: #FF6B35;
}

.step-content p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 0;
}

.process-arrow {
    display: none;
    color: #FF6B35;
    font-size: 24px;
    text-align: center;
}

@media (min-width: 768px) {
    .process-arrow {
        display: block;
    }
}

/* Testimonials */
.testimonials {
    background: #000;
    padding: 80px 0;
}

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

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: #000;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.1);
}

.testimonial-stars {
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 16px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: #FF6B35;
}

.author-title {
    font-size: 14px;
    opacity: 0.7;
}

/* CTA Section */
.cta-section {
    background: #000;
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #000;
    border-top: 1px solid #333;
    padding: 60px 0 30px;
}

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

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 60px;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-description {
    margin-bottom: 30px;
    opacity: 0.8;
    line-height: 1.6;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(45deg, #FF6B35, #ffb347);
    transform: translateY(-2px);
}

.footer-title {
    color: #FF6B35;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF6B35;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-icon {
    font-size: 16px;
    min-width: 20px;
}

.contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #FF6B35;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
}

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

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #FF6B35;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .hero-features {
        gap: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        gap: 20px;
    }
    
    .process-steps {
        gap: 20px;
    }
    
    .benefits-list {
        gap: 20px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    /* Mobile-specific improvements */
    .btn {
        min-width: 200px;
        padding: 15px 25px;
        font-size: 16px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Mobile form improvements */
    input, textarea, select {
        font-size: 16px !important; /* Prevents zoom on iOS */
        padding: 15px 12px !important;
        border-radius: 8px !important;
    }
    
    /* Better touch targets */
    .nav-link, .service-link, .footer-links a {
        padding: 12px 8px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Gallery improvements */
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .filter-buttons {
        flex-direction: column;
        gap: 10px !important;
    }
    
    .filter-btn {
        min-width: 200px;
        padding: 12px 20px !important;
    }
    
    /* Service cards mobile */
    .services-grid {
        grid-template-columns: 1fr !important;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    /* Quote form mobile */
    .quote-form .row {
        flex-direction: column;
    }
    
    .quote-form .col-md-6 {
        width: 100%;
        margin-bottom: 15px;
    }
    
    /* Contact page mobile */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    /* Improved scrolling */
    html {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Mobile typography */
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.75rem !important; }
    h3 { font-size: 1.25rem !important; }
    
    /* Mobile spacing */
    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

/* Video Showcase Section */
.video-showcase {
    background: #000;
    padding: 80px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

@media (min-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.video-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.showcase-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(255, 140, 0, 0.3) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

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

.video-content {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.video-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-content p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
    .video-content h3 {
        font-size: 1.25rem;
    }
    
    .video-content p {
        font-size: 0.9rem;
    }
}

/* Enhanced Image and Video Styling */
.service-icon img,
.feature-image,
.author-photo,
.gallery-image img {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
    transform: translateZ(0);
    border-radius: 15px;
}

.service-card:hover .service-icon img,
.image-container:hover .feature-image {
    transform: scale(1.02);
    filter: brightness(1.05) contrast(1.02);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

/* Premium Video Effects */
.hero-video,
.showcase-video {
    filter: brightness(0.9) contrast(1.1) saturate(1.2);
    transition: all 0.3s ease;
}

.video-item:hover .showcase-video,
.gallery-video:hover video {
    filter: brightness(1) contrast(1.2) saturate(1.3);
}

/* Enhanced Testimonial Photos */
.author-photo {
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    filter: grayscale(0.2);
}

.testimonial-card:hover .author-photo {
    border-color: rgba(255, 255, 255, 0.5);
    filter: grayscale(0);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Gallery Image Enhancements */
.gallery-image img {
    filter: brightness(0.98) contrast(1.02);
}

.gallery-item:hover .gallery-image img {
    filter: brightness(1.02) contrast(1.05);
    transform: scale(1.01);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

/* Premium Loading Animation for Images */
.service-icon,
.gallery-image,
.image-container {
    position: relative;
    overflow: hidden;
}

.service-icon::before,
.gallery-image::before,
.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
    z-index: 2;
    pointer-events: none;
}

.service-card:hover .service-icon::before,
.gallery-item:hover .gallery-image::before,
.image-container:hover::before {
    left: 100%;
}

/* Enhanced Section Backgrounds */
.services-preview {
    background: #000;
    position: relative;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ff8c00" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23ff8c00" opacity="0.03"/><circle cx="50" cy="10" r="1" fill="%23ff8c00" opacity="0.02"/><circle cx="10" cy="90" r="1" fill="%23ff8c00" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

/* Enhanced Video Quality and Performance */
video {
    /* Optimize for smooth, HD video rendering */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: auto;
    
    /* Force hardware acceleration for smooth playback */
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
    
    /* Ensure maximum video quality */
    object-fit: cover;
    object-position: center;
    
    /* Optimize playback performance */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Smooth Scroll Enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
    
    * {
        scroll-behavior: smooth;
    }
}

/* Enhanced Mobile Responsiveness for Images */
@media (max-width: 768px) {
    .service-icon img,
    .feature-image,
    .gallery-image img {
        object-fit: cover;
        object-position: center;
    }
    
    .hero-video,
    .showcase-video {
        object-position: center center;
    }
}

/* Premium Button Hover Effects */
.btn:hover {
    box-shadow: 0 8px 25px rgba(255, 149, 0, 0.5);
    transform: translateY(-2px);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #ffaa00, #ffcc66, #ffffff);
    box-shadow: 0 8px 30px rgba(255, 170, 0, 0.6);
    color: #000;
    font-weight: 600;
}

/* Enhanced Gallery Filter Buttons */
.filter-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.filter-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 ease;
}

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

/* Contact Page Enhancements */

/* Hero Logo Watermark */
.hero-logo-watermark {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.watermark-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.hero-logo-watermark:hover {
    opacity: 0.6;
}

/* Contact Boxes Hover Animations */
.contact-box {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.contact-box:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 149, 0, 0.4);
    border-color: #FF6B35 !important;
}

.contact-box:hover::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FF6B35, #ffb347, #ffffff, #FF6B35);
    border-radius: 17px;
    z-index: -1;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        opacity: 0.5;
        filter: blur(2px);
    }
    to {
        opacity: 0.8;
        filter: blur(4px);
    }
}

/* Service Areas Box Enhancement */
.service-areas-box {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-areas-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 149, 0, 0.3);
    border-color: #FF6B35 !important;
}

/* Enhanced Hero Text Shadow for Better Contrast */
.hero-title {
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8), 1px 1px 2px rgba(0,0,0,0.9);
}

.hero-subtitle {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8), 1px 1px 2px rgba(0,0,0,0.9);
}

/* Media Queries for Contact Enhancements */
@media (max-width: 768px) {
    .hero-logo-watermark {
        top: 15px;
        left: 15px;
    }
    
    .watermark-logo {
        height: 45px;
    }
    
    .contact-box:hover {
        transform: scale(1.02) translateY(-3px);
    }
}

/* Hero Logo Styles */
.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-logo-img {
    max-height: 150px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
    transition: all 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(255, 107, 0, 0.3));
}

/* Brand Evolution Styles for Gallery */
.brand-evolution {
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(255, 149, 0, 0.3);
    backdrop-filter: blur(10px);
    animation: fadeInUp 1.2s ease-out;
}

.brand-past, .brand-present {
    transition: all 0.3s ease;
}

.brand-past:hover, .brand-present:hover {
    transform: translateY(-5px);
}

.brand-arrow {
    animation: pulse 2s infinite;
    color: #FF6B35;
}

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

@media (max-width: 768px) {
    .hero-logo-img {
        max-height: 100px;
    }
    
    .brand-evolution {
        padding: 15px;
        gap: 20px !important;
    }
    
    .brand-past img, .brand-present img {
        height: 60px !important;
    }
    
    .brand-arrow {
        font-size: 20px !important;
        transform: rotate(90deg);
    }
}

/* Newsletter Popup Styles */
.newsletter-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.newsletter-popup {
    background: #000;
    border: 1px solid #333;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.newsletter-popup-overlay.active .newsletter-popup {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: #ccc;
    cursor: pointer;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FF6B35;
    transform: rotate(90deg);
}

.popup-content {
    padding: 40px 30px 30px;
    text-align: center;
    color: #fff;
}

.popup-logo {
    margin-bottom: 25px;
}

.popup-logo-img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

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

.popup-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.highlight-text {
    color: #FF6B35;
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
}

.popup-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 0;
}

.popup-offer-details {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.offer-item {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-item::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #FF6B35;
    border-radius: 50%;
    flex-shrink: 0;
}

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

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

.popup-email-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #333;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.popup-email-input:focus {
    outline: none;
    border-color: #FF6B35;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.popup-email-input::placeholder {
    color: #999;
}

.popup-submit-btn {
    width: 100%;
    background: linear-gradient(45deg, #FF6B35, #ff8c5a);
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.popup-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.6s ease;
}

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

.popup-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(45deg, #e55a2b, #FF6B35);
}

.popup-submit-btn:active {
    transform: translateY(0);
}

.popup-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

.popup-disclaimer {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.4;
    margin: 0;
}

.popup-disclaimer small {
    font-size: 0.75rem;
    color: #777;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .newsletter-popup {
        width: 95%;
        margin: 20px;
    }
    
    .popup-content {
        padding: 30px 20px 25px;
    }
    
    .popup-title {
        font-size: 1.5rem;
    }
    
    .highlight-text {
        font-size: 1.7rem;
    }
    
    .popup-offer-details {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 15px;
    }
    
    .offer-item {
        font-size: 0.9rem;
    }
    
    .popup-email-input {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .popup-submit-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .form-group {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .newsletter-popup {
        width: 98%;
        margin: 10px;
        border-radius: 15px;
    }
    
    .popup-content {
        padding: 25px 15px 20px;
    }
    
    .popup-logo-img {
        height: 60px;
    }
    
    .popup-title {
        font-size: 1.3rem;
    }
    
    .highlight-text {
        font-size: 1.5rem;
    }
}

/* Smooth Animations */
@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Enhanced Focus States for Accessibility */
.popup-close:focus,
.popup-email-input:focus,
.popup-submit-btn:focus {
    outline: 2px solid #FF6B35;
    outline-offset: 2px;
}

/* Loading Animation */
.popup-submit-btn.loading .btn-text::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}