/* Miami Video Company - Dynamic Production Design */
/* Color Scheme: Primary #FF3366, Secondary #1A1A2E, Accent #F7B731, Light #F5F5F7 */

:root {
    --primary: #FF3366;
    --primary-dark: #e01f52;
    --secondary: #1A1A2E;
    --accent: #F7B731;
    --highlight: #F7B731;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --black: #0a0a0a;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--highlight) 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 3px 3px 7px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 1rem;
}

h1 { font-size: 4em; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

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

a:hover { color: var(--accent); }

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

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

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

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo svg, .logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    color: var(--white);
    font-weight: 500;
    padding: 10px 0;
    display: block;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu > li > a:hover,
.nav-menu > li.current > a {
    color: var(--highlight);
}

/* Dropdown Menu */
.dropdown > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    vertical-align: middle;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--black);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
    z-index: 100;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--white);
    font-size: 0.9rem;
}

.dropdown-menu li a:hover {
    background: var(--primary);
    color: var(--white);
}

.dropdown-menu li.current a {
    color: var(--highlight);
    background: rgba(255,255,255,0.05);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 5px;
}

.lang-switcher a {
    padding: 8px 14px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.lang-switcher a:hover,
.lang-switcher a.active {
    background: var(--highlight);
    color: var(--black);
    border-color: var(--highlight);
}

/* CTA Button in Header */
.header-cta {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-cta:hover {
    transform: scale(1.05);
    color: var(--white);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================
   HERO SECTION - Full Viewport Video
   ================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black) url('/assets/images/hero-poster.webp') center center / cover no-repeat;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10,10,20,0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4.5em;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero .btn-primary {
    background: var(--highlight);
    color: var(--black);
    font-weight: 700;
}

.hero .btn-primary:hover {
    background: var(--white);
}

/* Watch Reel Button */
.btn-watch-reel {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-watch-reel:hover {
    background: var(--white);
    color: var(--black);
}

.btn-watch-reel svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
    opacity: 0.7;
}

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

/* ================================
   CLIENT MARQUEE
   ================================ */
.clients-marquee {
    background: var(--black);
    padding: 40px 0;
    overflow: hidden;
    position: relative;
}

.clients-marquee::before,
.clients-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.clients-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--black) 0%, transparent 100%);
}

.clients-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--black) 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-track img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: var(--transition);
}

.marquee-track img:hover {
    opacity: 1;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ================================
   SERVICES SECTION - Keyword Carousel
   ================================ */
.services-section {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--primary-dark) 100%);
    overflow: hidden;
}

.services-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.services-section .section-title h2 {
    color: var(--white);
}

.services-section .section-title p {
    color: rgba(255,255,255,0.8);
}

/* Keyword Carousel */
.keyword-carousel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
}

.carousel-row {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.carousel-track {
    display: flex;
    gap: 15px;
    width: max-content;
    animation: scrollLeft 240s linear infinite;
}

.carousel-track.reverse {
    animation: scrollRight 250s linear infinite;
}

.row-1 .carousel-track {
    animation-duration: 240s;
}

.row-2 .carousel-track {
    animation-duration: 250s;
}

.row-3 .carousel-track {
    animation-duration: 260s;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.keyword-pill {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.keyword-pill:hover {
    background: var(--highlight);
    color: var(--black);
    border-color: var(--highlight);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(244, 179, 66, 0.4);
}

.carousel-row:hover .carousel-track {
    animation-play-state: paused;
}

/* Keyword Modal */
.keyword-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.keyword-modal.active {
    display: flex;
}

.keyword-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px);
}

.keyword-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.5);
    animation: modalSlideIn 0.4s ease;
}

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

.keyword-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border: none;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.keyword-modal-close:hover {
    background: var(--accent);
    transform: rotate(90deg);
}

.keyword-modal-close svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.keyword-modal-body {
    padding: 50px;
    max-height: 85vh;
    overflow-y: auto;
}

.keyword-modal-body h1 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.keyword-modal-body h2 {
    color: var(--secondary);
    font-size: 1.4rem;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.keyword-modal-body p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.keyword-modal-body ul, .keyword-modal-body ol {
    margin: 15px 0 15px 25px;
    color: var(--dark-gray);
}

.keyword-modal-body li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .keyword-pill {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .keyword-carousel {
        gap: 15px;
    }

    .keyword-modal-content {
        max-height: 90vh;
        border-radius: 15px;
    }

    .keyword-modal-body {
        padding: 30px 25px;
    }

    .keyword-modal-body h1 {
        font-size: 1.5rem;
    }

    .keyword-modal-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .keyword-pill {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .services-section {
        padding: 60px 0 40px;
    }

    .keyword-modal-body {
        padding: 25px 20px;
    }
}

/* ================================
   VIDEO PORTFOLIO GRID
   ================================ */
.portfolio-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.portfolio-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.portfolio-section .section-title h2 {
    color: var(--primary);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--gray);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    background: var(--black);
}

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

.portfolio-item:hover img,
.portfolio-item:hover video {
    transform: scale(1.05);
    opacity: 0.8;
}

.portfolio-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(54, 1, 133, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition);
}

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

.portfolio-item-overlay h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.portfolio-item-overlay span {
    color: var(--highlight);
    font-size: 0.85rem;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .play-icon {
    opacity: 1;
}

.play-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
    margin-left: 4px;
}

/* ================================
   WHY CHOOSE US
   ================================ */
.features-section {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
}

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

.features-section .section-title h2 {
    color: var(--white);
}

.features-section .section-title p {
    color: rgba(255,255,255,0.7);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.feature-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--white);
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--white);
}

.feature-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ================================
   TESTIMONIALS
   ================================ */
.testimonials-section {
    padding: 100px 0;
    background: var(--white);
}

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

.testimonials-section .section-title h2 {
    color: var(--primary);
}

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

.testimonial-card {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 40px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    line-height: 1.8;
    color: var(--dark-gray);
}

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

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-info h5 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--black);
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--gray);
}

.testimonial-stars {
    color: var(--highlight);
    margin-top: 15px;
    font-size: 1.2rem;
}

/* ================================
   CONTACT SECTION
   ================================ */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

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

.contact-section .section-title h2 {
    color: var(--white);
}

.contact-section .section-title p {
    color: rgba(255,255,255,0.8);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--light-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: var(--light-gray);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px 12px;
    padding-right: 45px;
    cursor: pointer;
}

.form-group select:focus {
    background-color: var(--white);
}


.contact-form .btn-primary {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

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

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

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.contact-info-text h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: var(--white);
}

.contact-info-text p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 0;
    font-size: 1.05rem;
}

.contact-info-text a,
.contact-info-text a:link,
.contact-info-text a:visited,
.contact-info-text a:active {
    color: #ffffff !important;
    text-decoration: none;
}

.contact-info-text a:hover {
    color: var(--accent) !important;
    text-decoration: underline;
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    margin-bottom: 25px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    max-width: 350px;
    font-size: 0.95rem;
}

.footer-title {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 700;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.footer-bottom {
    padding: 30px 0;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
}

/* ================================
   SECTION TITLES
   ================================ */
.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.75rem;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   VIDEO MODAL
   ================================ */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
}

.video-modal video {
    width: 100%;
    border-radius: 10px;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-modal-close:hover {
    background: var(--highlight);
}

.video-modal-close svg {
    width: 20px;
    height: 20px;
}

/* ================================
   FORM MESSAGES
   ================================ */
.form-message {
    padding: 18px 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: none;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

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

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* White overlay fade for hero video */
.hero-white-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 10;
    animation: fadeOut 2s ease forwards;
}

@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; pointer-events: none; }
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1300px) {
    .service-card-image {
        height: 200px;
    }

    .container {
        padding: 0 30px;
    }
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3em;
    }

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

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

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

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .hamburger {
        display: flex;
    }

    .nav-main {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 20px;
        transition: var(--transition);
        z-index: 999;
    }

    .nav-main.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-menu > li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-menu > li > a {
        padding: 18px 0;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0 0 15px 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: transparent;
    }

    .dropdown.active .dropdown-menu {
        max-height: 600px;
    }

    .hero {
        min-height: 100vh;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        max-width: 100%;
    }

    .service-card:nth-child(2) {
        flex: 1;
    }

    .service-card-image {
        height: 220px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 35px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .clients-marquee {
        padding: 30px 0;
    }

    .marquee-track img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2em;
    }

    .btn {
        width: 100%;
        padding: 14px 30px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 20px;
    }
}

/* Schema markup styles (hidden) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ================================
   SERVICES PAGE STYLES
   ================================ */

/* Services Hero */
.services-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

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

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

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10,10,20,0.5);
}

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

.services-hero-content {
    max-width: 700px;
}

.services-hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.services-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.services-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

/* Services Navigation Grid */
.services-nav-section {
    padding: 80px 0;
    background: var(--white);
}

.services-nav-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.service-nav-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    background: var(--light-gray);
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.service-nav-card:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(54, 1, 133, 0.3);
}

.service-nav-card:hover .service-nav-icon svg {
    fill: var(--white);
}

.service-nav-card:hover h3 {
    color: var(--white);
}

.service-nav-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.service-nav-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--primary);
    transition: all 0.3s ease;
}

.service-nav-card h3 {
    font-size: 1rem;
    color: var(--dark-gray);
    margin: 0;
    transition: all 0.3s ease;
}

/* How We Work */
.how-we-work-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.how-we-work-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.how-we-work-intro p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.principle-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.principle-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.principle-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

.principle-card h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.principle-card p {
    font-size: 0.95rem;
    color: var(--gray);
    margin: 0;
}

/* Services Breakdown */
.services-breakdown-section {
    padding: 80px 0;
    background: var(--white);
}

.services-breakdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.service-breakdown-card {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 35px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-breakdown-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.service-breakdown-header h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-breakdown-desc {
    color: var(--dark-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-use-cases {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.service-use-cases span {
    background: rgba(54, 1, 133, 0.1);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.service-breakdown-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-breakdown-cta:hover {
    color: var(--primary);
    gap: 12px;
}

.service-breakdown-cta svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Industries */
.industries-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.industries-section .section-title h2,
.industries-section .section-title p {
    color: var(--white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.industry-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.industry-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.industry-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
}

.industry-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--highlight);
}

.industry-card h4 {
    color: var(--white);
    font-size: 1rem;
    margin: 0;
}

/* Production Flow */
.production-flow-section {
    padding: 80px 0;
    background: var(--white);
}

.production-flow-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.production-flow-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50px;
    right: 50px;
    height: 3px;
    background: var(--light-gray);
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.flow-step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.flow-step-content h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.flow-step-content p {
    font-size: 0.9rem;
    color: var(--gray);
    max-width: 150px;
    margin: 0;
}

/* FAQ */
.services-faq-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* Services Contact */
.services-contact-section {
    padding: 80px 0;
    background: var(--white);
}

/* Proposal Modal */
.proposal-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.proposal-modal.active {
    display: flex;
}

.proposal-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px);
}

.proposal-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 25px 80px rgba(0,0,0,0.5);
    animation: modalSlideIn 0.4s ease;
}

.proposal-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.proposal-modal-close:hover {
    background: var(--accent);
    transform: rotate(90deg);
}

.proposal-modal-close svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

.proposal-modal-body {
    padding: 30px 35px;
}

.proposal-modal-body h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.proposal-modal-body > p {
    color: var(--gray);
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.proposal-modal-body form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.proposal-modal-body .form-group {
    margin-bottom: 0;
}

.proposal-modal-body .form-group label {
    font-size: 0.85rem;
    margin-bottom: 4px;
    display: block;
}

.proposal-modal-body .form-group input,
.proposal-modal-body .form-group select,
.proposal-modal-body .form-group textarea {
    padding: 10px 12px;
    font-size: 0.9rem;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    background: var(--light-gray);
    margin: 0;
}

.proposal-modal-body .form-group:nth-child(5),
.proposal-modal-body .form-group:nth-child(6) {
    grid-column: 1 / -1;
}

.proposal-modal-body .form-group textarea {
    min-height: 70px;
    max-height: 70px;
    resize: none;
    display: block;
}

.proposal-modal-body .form-group select {
    padding-right: 40px;
}

.proposal-modal-body .btn {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 4px;
    padding: 12px 24px;
}

/* Services Page Responsive */
@media (max-width: 1024px) {
    .services-nav-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .production-flow-timeline {
        flex-direction: column;
        gap: 30px;
    }

    .production-flow-timeline::before {
        display: none;
    }

    .flow-step {
        flex-direction: row;
        text-align: left;
        gap: 20px;
    }

    .flow-step-content {
        max-width: none;
    }

    .flow-step-content p {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .services-hero {
        min-height: 60vh;
        padding: 120px 0 60px;
    }

    .services-hero h1 {
        font-size: 2.5rem;
    }

    .services-hero-subtitle {
        font-size: 1.1rem;
    }

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

    .services-breakdown-grid {
        grid-template-columns: 1fr;
    }

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

    .proposal-modal-content {
        max-width: 600px;
    }

    .proposal-modal-body {
        padding: 25px 30px;
    }

    .proposal-modal-body h3 {
        font-size: 1.3rem;
    }

    .proposal-modal-body > p {
        margin-bottom: 15px;
    }

    .proposal-modal-body form {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .proposal-modal-body .form-group label {
        font-size: 0.8rem;
        margin-bottom: 3px;
    }

    .proposal-modal-body .form-group input,
    .proposal-modal-body .form-group select,
    .proposal-modal-body .form-group textarea {
        padding: 8px 10px;
        width: 100% !important;
        box-sizing: border-box;
    }

    .proposal-modal-body .form-group textarea {
        min-height: 60px;
        max-height: 60px;
    }

    .proposal-modal-body .btn {
        padding: 10px 20px;
        margin-top: 2px;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .services-nav-grid {
        grid-template-columns: 1fr;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .services-hero-buttons {
        flex-direction: column;
    }

    .services-hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================
   NEW SERVICES PAGE STYLES
   ========================================== */

/* Centered Section Titles */
.section-title.centered {
    text-align: center;
}

.section-title.centered h2,
.section-title.centered p {
    text-align: center;
}

/* New Service Navigation Grid with Gradient Icons */
.services-nav-grid-new {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.service-nav-card-new {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(54, 1, 133, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-nav-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(54, 1, 133, 0.2);
    border-color: rgba(54, 1, 133, 0.2);
}

.service-nav-icon-gradient {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.service-nav-icon-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.service-nav-card-new:hover .service-nav-icon-gradient::before {
    opacity: 1;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.service-nav-icon-gradient svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.service-nav-card-new h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.service-nav-card-new p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 30px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-nav-btn:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
    transform: scale(1.05);
}

/* Centered Contact Form */
.contact-form-centered {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-centered .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form-centered .form-group {
    margin-bottom: 0;
}

.contact-form-centered .form-group:last-of-type {
    margin-bottom: 20px;
}

.contact-form-centered textarea {
    min-height: 120px;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Compact Proposal Modal - No Scroll */
.proposal-modal-content {
    max-width: 580px;
}

.proposal-modal-body form {
    grid-template-columns: 1fr 1fr;
}

/* Services Nav Grid Responsive */
@media (max-width: 1200px) {
    .services-nav-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .services-nav-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-nav-card-new {
        padding: 30px 20px;
    }

    .service-nav-icon-gradient {
        width: 70px;
        height: 70px;
        border-radius: 16px;
    }

    .service-nav-icon-gradient svg {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 768px) {
    .services-nav-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-nav-card-new {
        padding: 25px 15px;
    }

    .service-nav-card-new h3 {
        font-size: 1rem;
    }

    .service-nav-card-new p {
        font-size: 0.85rem;
    }

    .contact-form-centered {
        padding: 30px 20px;
    }

    .contact-form-centered .form-row {
        grid-template-columns: 1fr;
    }

    .proposal-modal-content {
        max-width: 95%;
        margin: 10px;
    }

    .proposal-modal-body {
        padding: 20px 18px;
    }

    .proposal-modal-body h3 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .proposal-modal-body > p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .proposal-modal-body form {
        gap: 8px;
    }

    .proposal-modal-body .form-group label {
        font-size: 0.75rem;
        margin-bottom: 2px;
    }

    .proposal-modal-body .form-group input,
    .proposal-modal-body .form-group select,
    .proposal-modal-body .form-group textarea {
        padding: 8px 10px;
        font-size: 0.85rem;
        width: 100% !important;
        box-sizing: border-box;
    }

    .proposal-modal-body .form-group textarea {
        min-height: 55px;
        max-height: 55px;
    }

    .proposal-modal-body .btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

/* Fullscreen Modal for Mobile */
@media (max-width: 576px) {
    .proposal-modal {
        padding: 0;
    }

    .proposal-modal-content {
        max-width: 100%;
        width: 100%;
        height: 100%;
        max-height: 100%;
        margin: 0;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }

    .proposal-modal-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        z-index: 100;
    }

    .proposal-modal-close svg {
        width: 16px;
        height: 16px;
    }

    .proposal-modal-body {
        padding: 60px 20px 20px;
        overflow-y: auto;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .proposal-modal-body h3 {
        font-size: 1.25rem;
        margin-bottom: 5px;
    }

    .proposal-modal-body > p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .proposal-modal-body form {
        grid-template-columns: 1fr;
        gap: 12px;
        flex: 1;
    }

    .proposal-modal-body .form-group:nth-child(5),
    .proposal-modal-body .form-group:nth-child(6) {
        grid-column: span 1;
    }

    .proposal-modal-body .form-group label {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }

    .proposal-modal-body .form-group input,
    .proposal-modal-body .form-group select,
    .proposal-modal-body .form-group textarea {
        padding: 12px 14px;
        font-size: 16px;
        border-radius: 10px;
    }

    .proposal-modal-body .form-group textarea {
        min-height: 80px;
        max-height: none;
        flex: 1;
    }

    .proposal-modal-body .btn {
        padding: 14px 20px;
        font-size: 1rem;
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .services-nav-grid-new {
        grid-template-columns: 1fr;
    }

    .service-nav-card-new {
        flex-direction: row;
        text-align: left;
        gap: 20px;
        padding: 20px;
    }

    .service-nav-icon-gradient {
        width: 60px;
        height: 60px;
        min-width: 60px;
        border-radius: 14px;
        margin-bottom: 0;
    }

    .service-nav-icon-gradient svg {
        width: 30px;
        height: 30px;
    }

    .service-nav-card-new h3 {
        margin-bottom: 8px;
    }

    .service-nav-card-new p {
        margin-bottom: 12px;
        font-size: 0.8rem;
    }

    .service-nav-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* ================================
   HOMEPAGE - OUR SERVICES IMAGE GRID
   ================================ */
.services-image-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.services-image-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.services-image-section .section-title h2 {
    color: var(--primary);
}

.services-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: var(--black);
    text-decoration: none;
}

.service-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.service-image-card:hover img {
    transform: scale(1.08);
    opacity: 0.85;
}

.service-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(54, 1, 133, 0.9) 0%, transparent 100%);
    transition: all 0.3s ease;
}

.service-image-card:hover .service-image-overlay {
    padding-bottom: 35px;
}

.service-image-overlay h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin: 0;
    font-weight: 700;
}

/* ================================
   HOMEPAGE - RENTAL HOUSE SECTION
   ================================ */
.rental-house-section {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
}

.rental-house-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.rental-house-section .section-title h2 {
    color: var(--white);
}

.rental-house-section .section-title p {
    color: rgba(255,255,255,0.7);
}

.rental-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.rental-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.rental-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--highlight);
    transform: translateY(-5px);
}

.rental-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.rental-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.rental-card h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.rental-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

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

.rental-cta .btn-secondary {
    border-color: var(--highlight);
    color: var(--highlight);
}

.rental-cta .btn-secondary:hover {
    background: var(--highlight);
    color: var(--black);
}

/* ================================
   HOMEPAGE - OUR CLIENTS SECTION
   ================================ */
.our-clients-section {
    padding: 100px 0;
    background: var(--white);
}

.our-clients-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.our-clients-section .section-title h2 {
    color: var(--primary);
}

.clients-image-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.clients-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* ================================
   VIDEO SHOWCASE SECTION
   ================================ */
.video-showcase-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.video-showcase-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.video-showcase-section .section-title h2 {
    color: var(--primary);
}

.video-showcase-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.video-showcase-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .video-showcase-section {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    .video-showcase-section {
        padding: 50px 0;
    }

    .video-showcase-wrapper {
        border-radius: 10px;
    }
}

/* ================================
   HOMEPAGE - SEO CONTENT BLOCK
   ================================ */
.seo-content-block {
    padding: 80px 0;
    background: var(--light-gray);
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content h2 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 25px;
    text-align: center;
}

.seo-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.seo-content p:last-child {
    margin-bottom: 0;
}

/* ================================
   HOMEPAGE RESPONSIVE - NEW SECTIONS
   ================================ */
@media (max-width: 1024px) {
    .services-image-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rental-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-image-section,
    .rental-house-section,
    .our-clients-section {
        padding: 70px 0;
    }

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

    .rental-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .rental-card {
        padding: 25px 15px;
    }

    .rental-icon {
        width: 50px;
        height: 50px;
    }

    .rental-icon svg {
        width: 24px;
        height: 24px;
    }

    .seo-content-block {
        padding: 60px 0;
    }

    .seo-content h2 {
        font-size: 1.5rem;
    }

    .seo-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .services-image-section,
    .rental-house-section,
    .our-clients-section {
        padding: 50px 0;
    }

    .rental-grid {
        grid-template-columns: 1fr;
    }

    .rental-card {
        padding: 20px;
    }

    .service-image-overlay h4 {
        font-size: 1.1rem;
    }

    .seo-content-block {
        padding: 40px 0;
    }
}

/* ================================
   OUR SERVICES SECTION - ICON CARDS
   ================================ */
.our-services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f6fc 0%, #fff5f8 100%);
}

.our-services-section .section-title.centered {
    text-align: center;
    margin-bottom: 60px;
}

.our-services-section .section-title h2 {
    color: var(--primary);
}

.services-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-icon-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(54, 1, 133, 0.08);
    border: 1px solid rgba(54, 1, 133, 0.05);
}

.service-icon-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(54, 1, 133, 0.15);
    border-color: rgba(54, 1, 133, 0.1);
}

.service-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-wrapper svg {
    width: 100%;
    height: 100%;
}

.service-icon-card h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.service-icon-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ================================
   RENTAL HOUSE SECTION - ICON CARDS
   ================================ */
.rental-house-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fdf8f5 0%, #f5f0fa 100%);
}

.rental-house-section .section-title.centered {
    text-align: center;
    margin-bottom: 60px;
}

.rental-house-section .section-title h2 {
    color: var(--primary);
}

.rental-icon-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.rental-icon-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(54, 1, 133, 0.08);
    border: 1px solid rgba(54, 1, 133, 0.05);
}

.rental-icon-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(54, 1, 133, 0.15);
    border-color: rgba(54, 1, 133, 0.1);
}

.rental-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rental-icon-wrapper svg {
    width: 100%;
    height: 100%;
}

.rental-icon-card h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.rental-icon-card p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* ================================
   RESPONSIVE - SERVICE & RENTAL ICONS
   ================================ */
@media (max-width: 1200px) {
    .rental-icon-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .services-icon-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rental-icon-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .our-services-section,
    .rental-house-section {
        padding: 70px 0;
    }

    .services-icon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .rental-icon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-icon-card,
    .rental-icon-card {
        padding: 30px 20px;
    }

    .service-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .rental-icon-wrapper {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .our-services-section,
    .rental-house-section {
        padding: 50px 0;
    }

    .services-icon-grid,
    .rental-icon-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

    .service-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .rental-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .service-icon-card h3 {
        font-size: 1.2rem;
    }

    .rental-icon-card h3 {
        font-size: 1rem;
    }
}

/* ================================
   SEO SECTION - MODERN MINIMALIST
   ================================ */
.seo-section-modern {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.seo-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(54, 1, 133, 0.02) 0%, rgba(222, 26, 88, 0.03) 100%);
    pointer-events: none;
}

.seo-modern-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: start;
}

.seo-modern-content {
    position: relative;
}

.seo-modern-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 20px;
}

.seo-modern-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 30px;
}

.seo-modern-divider {
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin-bottom: 35px;
}

.seo-modern-content p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--gray);
    margin-bottom: 20px;
}

.seo-modern-content p:last-child {
    margin-bottom: 0;
}

/* Highlight Cards */
.seo-modern-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.seo-highlight-card {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.seo-highlight-card:hover {
    background: var(--white);
    border-color: rgba(54, 1, 133, 0.1);
    box-shadow: 0 10px 30px rgba(54, 1, 133, 0.08);
    transform: translateY(-3px);
}

.seo-highlight-card.featured {
    background: var(--primary);
    grid-column: span 2;
}

.seo-highlight-card.featured:hover {
    background: var(--primary);
    border-color: transparent;
    box-shadow: 0 15px 40px rgba(54, 1, 133, 0.25);
}

.seo-highlight-card.featured .seo-highlight-icon,
.seo-highlight-card.featured .seo-highlight-label,
.seo-highlight-card.featured .seo-highlight-detail {
    color: var(--white);
}

.seo-highlight-card.featured .seo-highlight-icon svg {
    fill: var(--white);
}

.seo-highlight-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.seo-highlight-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
}

.seo-highlight-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--primary);
}

.seo-highlight-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 6px;
}

.seo-highlight-detail {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.4;
}

/* SEO Section Responsive */
@media (max-width: 1024px) {
    .seo-section-modern {
        padding: 90px 0;
    }

    .seo-modern-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .seo-modern-content h2 {
        font-size: 2.25rem;
    }

    .seo-section-modern::before {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
    }
}

@media (max-width: 768px) {
    .seo-section-modern {
        padding: 70px 0;
    }

    .seo-modern-content h2 {
        font-size: 1.85rem;
    }

    .seo-modern-highlights {
        grid-template-columns: 1fr;
    }

    .seo-highlight-card.featured {
        grid-column: span 1;
    }

    .seo-highlight-card {
        padding: 24px 20px;
    }

    .seo-highlight-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .seo-section-modern {
        padding: 50px 0;
    }

    .seo-modern-content h2 {
        font-size: 1.6rem;
    }

    .seo-modern-divider {
        width: 50px;
        margin-bottom: 25px;
    }

    .seo-modern-content p {
        font-size: 1rem;
    }
}
