/* Modern Website CSS for Edge Cleaning Solutions */
/* Video Hero & Modern Layout Design */

:root {
    --primary-color: #1c3b60;
    --secondary-color: #326799;
    --accent-color: #4a90e2;
    --cta-color: #ff6b35;
    --text-light: #fff;
    --text-dark: #333;
    --text-gray: #666;
    --bg-light: #f8f9fa;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    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;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== MODERN NAVIGATION ===== */
.modern-nav {
    background: rgba(28, 59, 96, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.modern-nav.scrolled {
    background: rgba(28, 59, 96, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.logo-img,
.footer-logo {
    width: 80px;
    height: 80px;
    margin-right: 12px;
    object-fit: cover;
    
}

.brand-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
}

.modern-nav .nav-link {
    color: var(--text-light);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition);
    position: relative;
}

.modern-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--cta-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.modern-nav .nav-link:hover::after {
    width: 80%;
}

.btn-cta-modern {
    background: linear-gradient(135deg, var(--cta-color), #e85d2a);
    color: var(--text-light);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-cta-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    color: var(--text-light);
}

/* ===== VIDEO HERO SECTION ===== */
.video-hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 59, 96, 0.85), rgba(50, 103, 153, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    text-align: center;
    padding: 0 1rem;
}

.hero-title-modern {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.highlight-text {
    color: var(--cta-color);
    display: block;
}

.hero-subtitle-modern {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--cta-color), #e85d2a);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    font-size: 1.1rem;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    color: var(--text-light);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--text-light);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--text-light);
    transition: var(--transition);
    text-decoration: none;
    font-size: 1.1rem;
}

.btn-hero-secondary:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

/* Trust Badges */
.trust-badges-modern {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.trust-item i {
    font-size: 2rem;
    color: var(--cta-color);
}

.trust-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    color: var(--text-light);
    font-size: 2rem;
    animation: bounce 2s infinite;
    display: block;
    text-decoration: none;
}

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

/* ===== ANIMATIONS ===== */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

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

/* ===== SECTIONS ===== */
section {
    padding: 100px 0;
}

.section-label {
    display: inline-block;
    background: rgba(74, 144, 226, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--text-light);
}

.about-image-wrapper {
    position: relative;
}

.rounded-modern {
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.image-overlay-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.image-overlay-badge i {
    font-size: 1.5rem;
    color: var(--cta-color);
}

.features-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: start;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-item h5 {
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-gray);
    margin: 0;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--bg-light);
}

.service-card-modern {
    background: var(--text-light);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 59, 96, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card-modern:hover .service-overlay {
    opacity: 1;
}

.service-overlay i {
    font-size: 3rem;
    color: var(--text-light);
}

.service-content {
    padding: 2rem;
}

.service-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--cta-color);
    gap: 0.8rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: var(--text-light);
}

.testimonial-card-modern {
    background: var(--text-light);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: var(--transition);
    height: 100%;
    border-left: 4px solid var(--accent-color);
}

.testimonial-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.stars {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--bg-light);
}

.contact-info-items {
    margin-top: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: start;
}

.contact-info-item i {
    font-size: 1.8rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.contact-info-item h5 {
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.contact-info-item a,
.contact-info-item p {
    color: var(--text-gray);
    text-decoration: none;
    margin: 0;
}

.contact-info-item a:hover {
    color: var(--accent-color);
}

.contact-form-modern {
    background: var(--text-light);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-control-modern {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-control-modern:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.btn-submit-modern {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--text-light);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.4);
}

/* ===== FOOTER ===== */
.modern-footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.modern-footer h4,
.modern-footer h5 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.modern-footer p {
    color: rgba(255,255,255,0.8);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
    text-decoration: none;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--cta-color);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255,255,255,0.2);
    margin: 2rem 0;
}

/* ===== FLOATING CTA ===== */
.floating-cta-modern {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cta-color), #e85d2a);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 25px rgba(255, 107, 53, 0.4);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
    animation: pulse 2s infinite;
}

.floating-cta-modern:hover {
    transform: scale(1.1);
    color: var(--text-light);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 25px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(255, 107, 53, 0.6);
    }
}

/* ===== COOKIE CONSENT ===== */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1.5rem;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
    z-index: 9999;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-decline {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-accept {
    background: var(--cta-color);
    color: var(--text-light);
}

.btn-accept:hover {
    background: #e85d2a;
}

.btn-decline {
    background: rgba(255,255,255,0.2);
    color: var(--text-light);
}

.btn-decline:hover {
    background: rgba(255,255,255,0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-title-modern {
        font-size: 3rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
    }
    
    .trust-badges-modern {
        gap: 1rem;
    }
    
    .trust-item {
        min-width: 120px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form-modern {
        padding: 2rem;
    }
    
    .floating-cta-modern {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-title-modern {
        font-size: 2rem;
    }
    
    .trust-badges-modern {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .trust-item {
        flex-direction: row;
        justify-content: center;
    }
}

/* Services Detail Page Styles */
.services-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4f7a 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.service-detail-modern {
    background: var(--text-light);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.service-detail-modern:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.service-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    min-height: 350px;
}

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

.service-detail-modern:hover .service-image-wrapper img {
    transform: scale(1.05);
}

.service-icon-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background: rgba(28, 59, 96, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.service-icon-overlay i {
    font-size: 2rem;
    color: var(--text-light);
}

.service-detail-content {
    padding: 1rem 0;
}

.service-detail-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-detail-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .services-hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-detail-modern {
        padding: 2rem 1.5rem;
    }
    
    .service-detail-title {
        font-size: 1.8rem;
    }
    
    .service-image-wrapper {
        min-height: 250px;
    }
}
