/* ===================================
   DHC Cleaning Services - Main Stylesheet
   Brand Colors: Dark Gray (#363333, #383434, #393636)
                 Pastel Pink (#ef97c0, #fa9ec9)
   Design: Elegant, Modern, Premium, Trustworthy
   =================================== */

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

:root {
    --primary-pink: #d6009c;
    --light-pink: #ef97c0;
    --pink-hover: #b8007d;
    --dark-charcoal: #1a1a1a;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --medium-gray: #e5e5e5;
    --text-dark: #2a2a2a;
    --text-medium: #555555;
    --text-light: #777777;
    
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-pink);
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-pink);
}

h3 {
    font-size: 1.75rem;
    color: var(--light-pink);
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-medium);
    line-height: 1.8;
}

a {
    color: var(--pastel-pink-2);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--pastel-pink-1);
}

/* ===================================
   Layout & Container
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
}

.intro-image img {
    max-height: 500px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.intro-video {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.intro-video:hover {
    box-shadow: 0 15px 50px rgba(214, 0, 156, 0.2);
    transform: translateY(-5px);
}

.blog-image img {
    max-height: 250px;
    width: 100%;
    object-fit: cover;
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 85%, rgba(255, 255, 255, 0.95) 95%, rgba(255, 255, 255, 0) 100%);
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-top {
    background-color: var(--dark-gray-1);
    color: var(--white);
    padding: 0.45rem 0;
    font-size: 0.8rem;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-link {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.contact-link:hover {
    color: var(--light-pink);
}

.business-hours {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.icon {
    flex-shrink: 0;
}

.navbar {
    padding: 0.85rem 0;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-gray-1);
    display: flex;
    align-items: center;
}

.logo:hover {
    color: var(--light-pink);
}

.logo-image {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.logo-image:hover {
    transform: scale(1.03);
}

.logo-text {
    display: inline-block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-pink);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-pink);
    transition: var(--transition);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--pastel-pink-2);
}

.dropdown {
    position: relative;
}

.dropdown .nav-link {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background-color: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    list-style: none;
    min-width: 240px;
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    border: 1px solid rgba(214, 0, 156, 0.08);
    backdrop-filter: blur(10px);
}

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

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.85rem 1.5rem;
    color: #2a2a2a;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background: linear-gradient(90deg, rgba(214, 0, 156, 0.08) 0%, rgba(214, 0, 156, 0.02) 100%);
    color: var(--primary-pink);
    padding-left: 2rem;
}

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

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

/* Header Scrolled State */
.header.scrolled {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 90%, rgba(255, 255, 255, 0.98) 100%);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.header.scrolled .logo-image {
    height: 50px;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-pink), var(--light-pink));
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(214, 0, 156, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--pink-hover), var(--primary-pink));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-pink);
    border: 2px solid transparent;
    border-radius: 0 !important;
    position: relative;
    overflow: hidden;
    font-weight: 700;
    text-shadow: none;
    box-shadow: 0 4px 15px rgba(214, 0, 156, 0.15),
                0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--light-pink) 100%);
    border-radius: 0;
    z-index: -1;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 45%, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0.3) 55%, 
        transparent 100%);
    transition: left 0.6s ease;
}

.btn-secondary:hover::after {
    left: 100%;
}

.btn-secondary.btn-nav {
    box-shadow: 0 4px 15px rgba(214, 0, 156, 0.25),
                0 2px 8px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    border-radius: 0 !important;
}

.btn-secondary:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 0, 156, 0.25),
                0 3px 10px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover::before {
    background: linear-gradient(135deg, var(--pink-hover) 0%, var(--primary-pink) 100%);
}

.btn-secondary.btn-nav:hover {
    box-shadow: 0 6px 20px rgba(214, 0, 156, 0.25),
                0 3px 10px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background-color: transparent;
    color: var(--pastel-pink-2);
    border-color: var(--pastel-pink-2);
}

.btn-outline:hover {
    background-color: var(--pastel-pink-2);
    color: var(--white);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
}

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

.btn-nav {
    padding: 0.7rem 1.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 30px;
    box-shadow: 0 3px 12px rgba(214, 0, 156, 0.2);
    transition: all 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(214, 0, 156, 0.3);
}

.btn-text {
    background: none;
    border: none;
    color: var(--primary-pink);
    font-weight: 600;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--pink-hover);
    transform: translateX(5px);
}

/* ===================================
   Hero Sections
   =================================== */
.hero {
    background: linear-gradient(135deg, var(--dark-gray-1) 0%, var(--dark-gray-3) 100%);
    color: var(--white);
    padding: 8rem 0 6rem;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.page-hero {
    background: linear-gradient(135deg, var(--dark-gray-1) 0%, var(--dark-gray-3) 100%);
    color: var(--white);
    padding: 5rem 0 4rem;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
    color: var(--pastel-pink-1);
}

.service-hero,
.quote-hero {
    background: linear-gradient(135deg, var(--dark-gray-2) 0%, var(--dark-gray-1) 100%);
}

/* ===================================
   Grid Layouts
   =================================== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* ===================================
   Cards
   =================================== */
.card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.card h3 {
    color: var(--dark-gray-1);
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-medium);
}

/* ===================================
   Features & Benefits
   =================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-card:hover {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--primary-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--pink-hover);
    transform: scale(1.1);
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefits-grid-service {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-item-service {
    padding: 2rem;
    background-color: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: 12px;
    transition: var(--transition);
}

.benefit-item-service:hover {
    border-color: var(--pastel-pink-1);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.benefit-icon-service {
    margin-bottom: 1.5rem;
}

.benefit-icon-service svg {
    stroke: var(--pastel-pink-2);
}

/* ===================================
   Service Sections
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.service-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

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

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

.service-card-content {
    padding: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-pink);
}

.service-card p {
    margin-bottom: 1.5rem;
}

.service-intro {
    padding: 5rem 0;
}

.service-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

/* ===================================
   Testimonials Carousel
   =================================== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-pink);
}

.testimonials-carousel-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.testimonials-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.testimonials-image-side {
    position: relative;
}

.testimonials-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonials-owner-image {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 16px;
    mix-blend-mode: multiply;
    filter: contrast(1.1) brightness(1.05);
    box-shadow: 
        0 20px 60px rgba(214, 0, 156, 0.15),
        0 0 0 12px rgba(255, 255, 255, 0.55),
        0 0 0 24px rgba(239, 151, 192, 0.1);
    transition: all 0.4s ease;
    animation: gentleFloat 4s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.testimonials-owner-image:hover {
    transform: scale(1.05);
    box-shadow: 
        0 25px 80px rgba(214, 0, 156, 0.2),
        0 0 0 15px rgba(255, 255, 255, 0.6),
        0 0 0 30px rgba(239, 151, 192, 0.15);
}

.testimonials-carousel-side {
    position: relative;
}

.carousel-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0;
}

.testimonials-carousel {
    overflow: hidden;
    border-radius: 16px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card-carousel {
    min-width: 100%;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    border: 2px solid var(--primary-pink);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.carousel-nav:hover {
    background-color: var(--primary-pink);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav:hover svg {
    stroke: var(--white);
}

.carousel-nav svg {
    stroke: var(--primary-pink);
    transition: var(--transition);
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

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

.testimonial-text {
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.9;
    font-size: 1.1rem;
}

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

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

.testimonial-location {
    font-size: 0.95rem;
    color: var(--text-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-pink);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding: 3rem 0;
    background-color: var(--light-gray);
    border-radius: 12px;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--pastel-pink-2);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-medium);
}

/* ===================================
   FAQ Section
   =================================== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--dark-gray-1);
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark-gray-1);
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.faq-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.faq-service-item {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
}

.faq-service-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
}

.faq-preview {
    padding: 6rem 0;
    background-color: var(--white);
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.faq-list .faq-item {
    background-color: var(--light-gray);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-pink);
    transition: var(--transition);
}

.faq-list .faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.faq-list .faq-item h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--dark-charcoal);
    margin-bottom: 1rem;
}

.faq-list .faq-item p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* ===================================
   Blog Section
   =================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.blog-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.blog-category {
    color: var(--pastel-pink-2);
    font-weight: 600;
}

.blog-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.blog-card p {
    margin-bottom: 1.5rem;
}

/* ===================================
   Forms
   =================================== */
.form-container,
.form-container-large {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-form,
.quote-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-gray-2);
    font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--pastel-pink-2);
    box-shadow: 0 0 0 3px rgba(250, 158, 201, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
}

input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
    text-align: center;
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--medium-gray);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-gray-1);
}

/* ===================================
   Contact & Quote Pages
   =================================== */
.contact-layout,
.quote-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.quote-layout {
    grid-template-columns: 2fr 1fr;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--medium-gray);
}

.contact-method:last-child {
    border-bottom: none;
}

.method-icon {
    flex-shrink: 0;
}

.method-icon svg {
    stroke: var(--pastel-pink-2);
}

.method-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.method-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.sidebar-box {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.sidebar-box h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.trust-list {
    list-style: none;
}

.trust-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.trust-list svg {
    flex-shrink: 0;
    stroke: var(--pastel-pink-2);
    margin-top: 0.25rem;
}

.hours-list-simple {
    list-style: none;
}

.hours-list-simple li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.hours-list-simple strong {
    color: var(--dark-gray-1);
}

.hours-list-simple span {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* ===================================
   Service Areas
   =================================== */
.service-areas-box,
.service-areas-section {
    background-color: var(--light-gray);
    padding: 3rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.service-areas-section {
    padding: 5rem 0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.area-item {
    background-color: var(--white);
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
    font-weight: 500;
    color: var(--dark-gray-2);
    transition: var(--transition);
}

.area-item:hover {
    background-color: var(--pastel-pink-2);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===================================
   CTA Sections
   =================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--pastel-pink-2), var(--pastel-pink-1));
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

/* ===================================
   Process Steps - Water Bubble Design
   =================================== */
.process-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.process-bubbles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
}

.process-bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.process-bubble:nth-child(1) {
    animation-delay: 0s;
}

.process-bubble:nth-child(2) {
    animation-delay: 1.5s;
}

.process-bubble:nth-child(3) {
    animation-delay: 3s;
}

.process-bubble:nth-child(4) {
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.bubble-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(214, 0, 156, 0.15), rgba(239, 151, 192, 0.25));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 8px 32px rgba(214, 0, 156, 0.15),
        inset 0 0 20px rgba(255, 255, 255, 0.3),
        0 0 60px rgba(214, 0, 156, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-bottom: 1.5rem;
}

.bubble-circle::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 20%;
    width: 35px;
    height: 35px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 50%;
    filter: blur(8px);
}

.bubble-circle::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 25%;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 50%;
    filter: blur(5px);
}

.process-bubble:hover .bubble-circle {
    transform: scale(1.1);
    box-shadow: 
        0 12px 48px rgba(214, 0, 156, 0.25),
        inset 0 0 30px rgba(255, 255, 255, 0.4),
        0 0 80px rgba(214, 0, 156, 0.2);
    background: linear-gradient(135deg, rgba(214, 0, 156, 0.25), rgba(239, 151, 192, 0.35));
}

.bubble-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--primary-pink), var(--light-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.bubble-content {
    max-width: 280px;
}

.bubble-content h3 {
    font-size: 1.35rem;
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.process-bubble:hover .bubble-content h3 {
    color: var(--primary-pink);
}

.bubble-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-medium);
}

/* Responsive: Process Bubbles */
@media (max-width: 1024px) {
    .process-bubbles {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 4rem 0;
    }
    
    .process-bubbles {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .bubble-circle {
        width: 120px;
        height: 120px;
    }
    
    .bubble-number {
        font-size: 2.5rem;
    }
}

/* Legacy Process Steps (keep for other pages) */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 12px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--pastel-pink-2), var(--pastel-pink-1));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.process-steps-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.process-step-detailed {
    padding: 2rem;
    background-color: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: 12px;
}

.step-number-large {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--pastel-pink-2), var(--pastel-pink-1));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* ===================================
   Included Services / Checklists
   =================================== */
.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.included-category {
    background-color: var(--light-gray);
    padding: 2.5rem;
    border-radius: 12px;
}

.included-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-gray-1);
}

.checklist {
    list-style: none;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-medium);
}

.checklist li::before {
    content: "✓";
    color: var(--pastel-pink-2);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.service-note-box {
    background-color: var(--pastel-pink-2);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.service-note-box h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.service-note-box p {
    color: rgba(255, 255, 255, 0.95);
}

/* ===================================
   Why Choose / Related Services
   =================================== */
.why-choose-dhc-service {
    background-color: var(--light-gray);
    padding: 5rem 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.why-item h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--dark-gray-1);
}

.related-services {
    padding: 5rem 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.related-card {
    background-color: var(--light-gray);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.related-card:hover {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.related-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* ===================================
   Frequency Options
   =================================== */
.frequency-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.frequency-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--medium-gray);
    transition: var(--transition);
    position: relative;
}

.frequency-card:hover,
.frequency-card.featured {
    border-color: var(--pastel-pink-2);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--pastel-pink-2), var(--pastel-pink-1));
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.frequency-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.frequency-best {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.frequency-benefits {
    list-style: none;
}

.frequency-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-medium);
}

.frequency-benefits li::before {
    content: "✓";
    color: var(--pastel-pink-2);
    font-weight: 700;
    flex-shrink: 0;
}

/* ===================================
   Move/Construction Types
   =================================== */
.move-types,
.construction-types,
.office-types,
.disinfection-when {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.move-types-grid,
.construction-types-grid,
.office-types-grid,
.when-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.construction-types-grid,
.office-types-grid,
.when-grid {
    grid-template-columns: repeat(3, 1fr);
}

.move-type-card,
.construction-type,
.office-type,
.when-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.move-type-card h3,
.construction-type h3,
.office-type h3,
.when-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.move-type-desc {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.move-type-card h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem;
    color: var(--dark-gray-2);
}

.move-type-list {
    list-style: none;
}

.move-type-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-medium);
}

.move-type-list li::before {
    content: "•";
    color: var(--pastel-pink-2);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.2;
    flex-shrink: 0;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--dark-gray-1);
    color: var(--white);
}

.footer-main {
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.footer-column h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-contact {
    margin-top: 1.5rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--pastel-pink-1);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--pastel-pink-1);
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.hours-list span {
    color: rgba(255, 255, 255, 0.6);
}

.areas-title {
    margin-top: 2rem;
}

.areas-text {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .grid-4,
    .features-grid,
    .services-grid,
    .testimonials-grid,
    .blog-grid,
    .benefits-grid-service,
    .why-choose-grid,
    .related-grid,
    .frequency-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        display: none;
        gap: 0.5rem;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        transition: all 0.2s ease;
    }
    
    .nav-link:hover {
        background-color: rgba(214, 0, 156, 0.05);
    }
    
    .btn-nav {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
    
    .btn-secondary.btn-nav {
        background: linear-gradient(135deg, var(--primary-pink) 0%, var(--light-pink) 100%) !important;
        color: var(--light-gray) !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        border-radius: 0 !important;
        position: relative !important;
        overflow: hidden !important;
        font-weight: 700 !important;
        text-shadow: none !important;
        box-shadow: 0 4px 15px rgba(214, 0, 156, 0.15),
                    0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }
    
    .btn-secondary.btn-nav::after {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: 100% !important;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 255, 255, 0.3) 45%, 
            rgba(255, 255, 255, 0.6) 50%, 
            rgba(255, 255, 255, 0.3) 55%, 
            transparent 100%) !important;
        transition: left 0.6s ease !important;
    }
    
    .btn-secondary.btn-nav:hover {
        background: linear-gradient(135deg, var(--pink-hover) 0%, var(--primary-pink) 100%) !important;
        color: #ffffff !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(214, 0, 156, 0.25),
                    0 3px 10px rgba(0, 0, 0, 0.15) !important;
    }
    
    .btn-secondary.btn-nav:hover::after {
        left: 100% !important;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0.5rem 0 0.5rem 1.5rem;
        background-color: rgba(214, 0, 156, 0.02);
        border-radius: 8px;
        margin-top: 0.5rem;
    }
    
    .dropdown-menu a {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .grid-2,
    .grid-3,
    .services-grid,
    .features-grid,
    .testimonials-grid,
    .blog-grid,
    .why-choose-grid,
    .related-grid,
    .benefits-grid-service,
    .frequency-options,
    .included-grid,
    .faq-service-grid,
    .process-steps,
    .trust-stats,
    .contact-layout,
    .quote-layout,
    .faq-list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .testimonials-owner-image {
        max-width: 250px;
    }
    
    .construction-types-grid,
    .office-types-grid,
    .when-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-top {
        padding: 0.3rem 0;
        font-size: 0.7rem;
    }
    
    .contact-info {
        gap: 1rem;
    }
    
    .navbar {
        padding: 0.45rem 0;
    }
    
    .logo-image {
        height: 45px;
    }
    
    .header.scrolled .logo-image {
        height: 40px;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    h1 {
        font-size: 1.875rem;
    }
    
    h2 {
        font-size: 1.625rem;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
    }
}

/* ===================================
   PREMIUM HERO SECTION
   =================================== */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%),
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
        url('../../images/JPEG/herobanner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

@keyframes heroZoomIn {
    0% {
        background-size: 110%;
    }
    100% {
        background-size: cover;
    }
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(239, 151, 192, 0.15) 0%, transparent 50%, rgba(239, 151, 192, 0.15) 100%);
    animation: heroShine 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroShine {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-10%);
    }
    50% {
        opacity: 0.7;
        transform: translateX(10%);
    }
}

.hero-premium-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 6rem 0;
}

.hero-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-premium-text {
    text-align: left;
}

.hero-premium-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.hero-premium-subtitle {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
}

.hero-cta-btn {
    box-shadow: 0 8px 24px rgba(250, 158, 201, 0.4);
}

.hero-cta-btn:hover {
    box-shadow: 0 12px 32px rgba(250, 158, 201, 0.6);
}

/* Quote Form Card */
.hero-premium-form {
    display: flex;
    justify-content: flex-end;
}

.quote-form-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(250, 158, 201, 0.2);
    max-width: 480px;
    width: 100%;
    position: relative;
}

.quote-form-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--pastel-pink-2), var(--pastel-pink-1));
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.quote-form-card:hover::before {
    opacity: 0.3;
}

.quote-form-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--dark-gray-1);
    margin-bottom: 0.5rem;
}

.quote-form-subtitle {
    color: var(--text-medium);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.hero-quote-form .form-group {
    margin-bottom: 1.25rem;
}

.hero-quote-form input,
.hero-quote-form select,
.hero-quote-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--primary-pink);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
}

.hero-quote-form input:focus,
.hero-quote-form select:focus,
.hero-quote-form textarea:focus {
    outline: none;
    border-color: var(--pink-hover);
    box-shadow: 0 0 0 4px rgba(239, 151, 192, 0.2);
}

.hero-quote-form input::placeholder,
.hero-quote-form textarea::placeholder {
    color: var(--text-light);
}

.hero-quote-form textarea {
    resize: vertical;
    min-height: 80px;
}

.hero-quote-form .btn-primary {
    margin-top: 0.5rem;
    box-shadow: 0 8px 20px rgba(250, 158, 201, 0.3);
}

.hero-quote-form .btn-primary:hover {
    box-shadow: 0 12px 28px rgba(250, 158, 201, 0.5);
}

/* ===================================
   FOUNDATION OF EXCELLENCE SECTION
   =================================== */
.foundation-excellence-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.foundation-excellence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.foundation-text h2 {
    font-size: 2.75rem;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    color: var(--primary-pink);
}

.foundation-text .lead {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.foundation-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.foundation-text .btn {
    margin-top: 1.5rem;
}

.foundation-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floor-shine-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.floor-shine-img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.floor-shine-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.shine-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    animation: floorShine 4s ease-in-out infinite;
    pointer-events: none;
}

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

/* ===================================
   COMPANY PRESENTATION SECTION
   =================================== */
.company-presentation {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--white) 0%, var(--light-gray) 100%);
}

.company-presentation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.company-presentation-text {
    text-align: left;
}

.section-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--pastel-pink-2);
    margin-bottom: 1rem;
}

.company-presentation-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-pink);
    line-height: 1.3;
    margin-bottom: 2rem;
}

.company-presentation-intro {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.company-presentation-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
}

.company-presentation-text .btn {
    margin-top: 1rem;
}

/* Owner Image Styling */
.company-presentation-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.owner-image-wrapper {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.owner-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    border: 4px solid var(--white);
    transition: var(--transition);
}

.owner-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}

.owner-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--pastel-pink-2), var(--pastel-pink-1));
    border-radius: 20px;
    z-index: 1;
    opacity: 0.15;
    transition: var(--transition);
}

.owner-image-wrapper:hover .owner-image-accent {
    top: -25px;
    right: -25px;
    opacity: 0.25;
}

/* Trust Section Below Hero */
.hero-trust-section {
    background-color: var(--white);
    padding: 3rem 0;
    border-bottom: 1px solid var(--medium-gray);
}

.hero-trust-badges {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-gray-2);
    font-weight: 600;
    font-size: 1rem;
}

.badge-icon {
    stroke: var(--pastel-pink-2);
    flex-shrink: 0;
}

/* ===================================
   RESPONSIVE - PREMIUM SECTIONS
   =================================== */
@media (max-width: 1024px) {
    .hero-premium-title {
        font-size: 3.25rem;
    }
    
    .hero-premium-grid,
    .company-presentation-grid {
        gap: 3rem;
    }
    
    .company-presentation-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header-top {
        padding: 0.35rem 0;
        font-size: 0.75rem;
    }
    
    .navbar {
        padding: 0.55rem 0;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .header.scrolled .logo-image {
        height: 45px;
    }
    
    .nav-link {
        font-size: 0.95rem;
    }
    
    .hero-premium {
        min-height: auto;
        background-attachment: scroll;
    }
    
    .hero-premium-content {
        padding: 4rem 0;
    }
    
    .hero-premium-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-premium-title {
        font-size: 2.5rem;
    }
    
    .hero-premium-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-premium-form {
        justify-content: center;
    }
    
    .quote-form-card {
        padding: 2.5rem;
    }
    
    .company-presentation {
        padding: 5rem 0;
    }
    
    .company-presentation-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .company-presentation-title {
        font-size: 2rem;
    }
    
    .company-presentation-intro {
        font-size: 1.1rem;
    }
    
    .owner-image-wrapper {
        max-width: 400px;
    }
    
    .hero-trust-badges {
        gap: 2rem;
    }
    
    .foundation-excellence-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .foundation-text h2 {
        font-size: 2rem;
    }
    
    .carousel-wrapper {
        margin: 2rem auto 0;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: -10px;
    }
    
    .carousel-next {
        right: -10px;
    }
    
    .testimonial-card-carousel {
        padding: 2rem;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-premium-title {
        font-size: 2rem;
    }
    
    .hero-premium-subtitle {
        font-size: 1rem;
    }
    
    .quote-form-card {
        padding: 2rem;
    }
    
    .quote-form-title {
        font-size: 1.5rem;
    }
    
    .company-presentation-title {
        font-size: 1.75rem;
    }
    
    .owner-image-accent {
        top: -15px;
        right: -15px;
    }
}

/* ===================================
   ISSA SECTION
   =================================== */
.issa-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.issa-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-pink);
    text-align: center;
    margin-bottom: 3rem;
}

.issa-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.issa-image-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.issa-image-item img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.issa-image-item img:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}

.issa-content {
    display: block;
    text-align: center;
}

.issa-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.issa-image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 500px;
}

.issa-image-grid img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.issa-image-grid img:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}

/* Legacy support for single image */
.issa-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.issa-image img:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}

.issa-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.issa-text .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.issa-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.issa-badge-logo {
    display: flex;
    justify-content: flex-start;
}

.issa-badge-logo img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.issa-badge-logo img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.issa-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.issa-stats .stat {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    border-radius: 12px;
    border: 2px solid var(--medium-gray);
    transition: var(--transition);
}

.issa-stats .stat:hover {
    border-color: var(--light-pink);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.issa-stats .stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.issa-stats .stat span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* Responsive ISSA Section */
@media (max-width: 768px) {
    .issa-main-title {
        font-size: 2rem;
    }
    
    .issa-images-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .issa-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .issa-main-title {
        font-size: 1.75rem;
    }
    
    .issa-text .lead {
        font-size: 1.1rem;
    }
}
 
 /* ===================================
    SERVICE AREAS SECTION (Homepage)
    =================================== */
 .service-areas-section {
     padding: 6rem 0;
     background-color: #f7f7fb;
 }
 
 .service-areas-header {
     text-align: center;
     margin-bottom: 2.5rem;
 }
 
 .service-areas-title {
     font-family: var(--font-heading);
     font-size: 2.5rem;
     color: var(--primary-pink);
     margin-bottom: 0.75rem;
 }
 
 .service-areas-subtitle {
     font-size: 1.125rem;
     color: var(--text-medium);
 }
 
 .service-areas-grid {
     display: grid;
     grid-template-columns: repeat(4, minmax(0, 1fr));
     gap: 1.25rem;
     margin-top: 1.5rem;
 }
 
 .service-area-item {
     display: flex;
     align-items: center;
     gap: 0.6rem;
     padding: 0.9rem 1rem;
     background: var(--white);
     border-radius: 12px;
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
     transition: all 0.3s ease;
     cursor: pointer;
 }
 
 .service-area-item:hover {
     transform: translateY(-4px);
     box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
 }
 
 .service-area-item:hover .service-area-name {
     color: var(--primary-pink);
 }
 
 .service-area-icon {
     display: inline-flex;
     width: 28px;
     height: 28px;
     align-items: center;
     justify-content: center;
     color: var(--primary-pink);
     flex-shrink: 0;
     transition: var(--transition);
 }
 
 .service-area-name {
     font-weight: 600;
     color: var(--text-dark);
     transition: var(--transition);
 }
 
 .service-areas-cta {
     text-align: center;
     margin-top: 2.5rem;
     color: var(--text-medium);
     font-size: 1.05rem;
 }
 
 .service-areas-cta a {
     color: var(--primary-pink);
     font-weight: 600;
     text-decoration: none;
     border-bottom: 2px solid transparent;
     transition: var(--transition);
 }
 
 .service-areas-cta a:hover {
     border-bottom-color: var(--primary-pink);
 }
 
 /* Responsive: Service Areas */
 @media (max-width: 1024px) {
     .service-areas-title {
         font-size: 2.25rem;
     }
     .service-areas-grid {
         grid-template-columns: repeat(3, minmax(0, 1fr));
     }
 }
 
 @media (max-width: 768px) {
     .service-areas-title {
         font-size: 2rem;
     }
     .service-areas-grid {
         grid-template-columns: repeat(2, minmax(0, 1fr));
         gap: 1rem;
     }
 }
 
 @media (max-width: 480px) {
     .service-areas-title {
         font-size: 1.75rem;
     }
     .service-areas-subtitle {
         font-size: 1.05rem;
     }
     .service-areas-grid {
         grid-template-columns: 1fr;
     }
 }
 

/* ===================================
   HERO CALL NOW BUTTON
   =================================== */
.hero-cta-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-call-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.btn-call-hero:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-call-hero svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-call-hero:hover svg {
    transform: rotate(-10deg) scale(1.1);
}

/* ===================================
   FLOATING STICKY CALL NOW BUTTON
   =================================== */
.floating-call-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-pink) 0%, #b8007d 100%);
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow:
        0 4px 16px rgba(214, 0, 156, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: floatingCallEntry 0.6s ease-out both;
    animation-delay: 1.5s;
}

@keyframes floatingCallEntry {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.floating-call-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.floating-call-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 28px rgba(214, 0, 156, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, #e000a8 0%, #d6009c 100%);
}

.floating-call-btn:active {
    transform: translateY(-1px);
}

.floating-call-btn svg {
    flex-shrink: 0;
    stroke: #ffffff;
    transition: transform 0.3s ease;
}

.floating-call-btn:hover svg {
    animation: floatingCallRing 0.6s ease;
}

@keyframes floatingCallRing {
    0%, 100% { transform: rotate(0deg); }
    20% { transform: rotate(-15deg); }
    40% { transform: rotate(15deg); }
    60% { transform: rotate(-10deg); }
    80% { transform: rotate(10deg); }
}

.floating-call-text {
    white-space: nowrap;
}

/* Pulse ring animation */
.floating-call-btn::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50px;
    border: 2px solid rgba(214, 0, 156, 0.3);
    animation: floatingCallPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatingCallPulse {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

/* ===================================
   CALL NOW - RESPONSIVE
   =================================== */
@media (max-width: 768px) {
    .hero-cta-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .btn-call-hero {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }

    .floating-call-btn {
        bottom: 1.25rem;
        right: 1.25rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .hero-cta-buttons {
        width: 100%;
    }

    .hero-cta-buttons .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .btn-call-hero {
        width: 100%;
        justify-content: center;
    }

    .floating-call-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 0.7rem 1.1rem;
        font-size: 0.8125rem;
        gap: 0.4rem;
    }

    .floating-call-btn svg {
        width: 18px;
        height: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .floating-call-btn {
        animation: none;
    }
    .floating-call-btn::after {
        animation: none;
    }
    .floating-call-btn:hover svg {
        animation: none;
    }
}

/* ===================================
   Language Tabs (Work With Us Page)
   =================================== */
.language-tabs-section {
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.language-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.lang-tab {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-family: var(--font-primary);
}

.lang-tab:hover {
    border-color: var(--primary-pink);
    background: #fff5fb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 0, 156, 0.15);
}

.lang-tab.active {
    background: linear-gradient(135deg, var(--primary-pink) 0%, #ff1493 100%);
    border-color: var(--primary-pink);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(214, 0, 156, 0.3);
}

.lang-tab.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(214, 0, 156, 0.4);
}

/* Hide inactive language sections but keep tabs visible */
.why-work-section[data-lang]:not(.active) {
    display: none;
}

.why-work-section[data-lang].active {
    display: block;
}

/* Ensure tabs are always visible */
.language-tabs {
    display: flex !important;
}

@media (max-width: 768px) {
    .lang-tab {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
}
