/* Miami Video Production - VPLA-Inspired Design */
/* Color Scheme: Primary #360185, Secondary #8F0177, Accent #DE1A58, Highlight #F4B342 */

:root {
    --primary: #360185;
    --primary-dark: #2a0168;
    --secondary: #8F0177;
    --accent: #DE1A58;
    --highlight: #F4B342;
    --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.jpg') 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;
}

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

/* ================================
   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: 40px;
}

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

.proposal-modal-body > p {
    color: var(--gray);
    margin-bottom: 25px;
}

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

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

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

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

/* 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: 500px;
        max-height: 90vh;
        overflow-y: auto;
    }

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

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

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

    .proposal-modal-body .btn {
        grid-column: 1;
    }
}

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

/* Smaller Proposal Modal */
.proposal-modal-content {
    max-width: 500px !important;
    max-height: 85vh;
    overflow-y: auto;
}

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

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

.proposal-modal-body > p {
    font-size: 0.95rem;
    margin-bottom: 20px !important;
}

.proposal-modal-body form {
    gap: 12px !important;
}

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

.proposal-modal-body .form-group input,
.proposal-modal-body .form-group select,
.proposal-modal-body .form-group textarea {
    padding: 10px 14px;
    font-size: 0.9rem;
}

.proposal-modal-body textarea {
    min-height: 80px;
}

/* 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% !important;
        margin: 10px;
    }

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

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