/* ===================================================================
   LILAS DENTAL CENTER - COMPLETE CSS (Version 2)
   Part 1: Base Styles, Header, Navigation, Hero Section
   =================================================================== */

/* -------------------------------------------------------------------
   1. FONTS & BASE STYLES
------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Geist', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
}

/* -------------------------------------------------------------------
   2. BUTTON COMPONENTS
------------------------------------------------------------------- */
.cta-button {
    background: #AECEFF;
    color: white;
    padding: clamp(12px, 2vh, 16px) clamp(20px, 4vw, 28px);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(14px, 2vw, 15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(174, 206, 255, 0.25);
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-block;
    text-align: center;
}

.cta-button:hover {
    background: #96D7FF;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(174, 206, 255, 0.35);
}

.secondary-button {
    background: transparent;
    color: #1a1a1a;
    padding: clamp(12px, 2vh, 16px) clamp(20px, 4vw, 28px);
    border: 2px solid #e5e5e5;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(14px, 2vw, 15px);
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
    text-align: center;
}

.secondary-button:hover {
    border-color: #AECEFF;
    color: #AECEFF;
    transform: translateY(-2px);
}

.primary-cta {
    background: #AECEFF;
    color: white;
    padding: clamp(16px, 3vh, 20px) clamp(32px, 6vw, 40px);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(16px, 3vw, 18px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(174, 206, 255, 0.3);
    margin-bottom: clamp(12px, 2vh, 16px);
    display: inline-block;
    text-align: center;
}

.primary-cta:hover {
    background: #96D7FF;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(174, 206, 255, 0.4);
}

/* -------------------------------------------------------------------
   3. SECTION COMPONENTS
------------------------------------------------------------------- */


.section-header h2 {
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: clamp(12px, 2vh, 20px);
    line-height: 1.2;
}

.section-header p {
    font-size: clamp(16px, 3vw, 20px);
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-tag {
    display: inline-block;
    background: rgba(174, 206, 255, 0.1);
    color: #AECEFF;
    padding: clamp(6px, 1vh, 8px) clamp(16px, 3vw, 20px);
    border-radius: 20px;
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 500;
    margin-bottom: clamp(12px, 2vh, 16px);
}

/* -------------------------------------------------------------------
   4. HEADER & NAVIGATION
------------------------------------------------------------------- */
header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(174, 206, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(16px, 3vh, 24px) 0;
    min-height: 70px;
}

.logo {
    font-size: clamp(22px, 4vw, 28px);
    font-weight: 500;
    color: #AECEFF;
    letter-spacing: 1px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 100px;
    width: auto;
}

/* Desktop Navigation */
.nav-links.desktop-nav {
    display: flex;
    list-style: none;
    gap: clamp(24px, 4vw, 40px);
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    font-size: clamp(14px, 2vw, 15px);
    transition: all 0.2s ease;
    position: relative;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #AECEFF;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #AECEFF;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Desktop CTA Button */
.whatsapp-btn {
    background: #25D366;
    /* WhatsApp Green */
    position: relative;
    overflow: hidden;
}

.whatsapp-btn:hover {
    background: #1DA851;
    /* Darker WhatsApp Green */
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

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

.whatsapp-icon,
.phone-icon {
    margin-right: 8px;
    font-size: 1.1em;
}

/* Contact Buttons Container */
.contact-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

@media (max-width: 480px) {
    .contact-buttons {
        flex-direction: column;
        width: 100%;
    }

    .contact-buttons .cta-button,
    .contact-buttons .secondary-button {
        width: 100%;
        max-width: 280px;
    }
}

/* Floating WhatsApp Button (Optional) */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp::before {
    content: '💬';
}

/* Pulse animation for floating button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.floating-whatsapp.pulse {
    animation: pulse 2s infinite;
}

/* Hide Mobile Elements on Desktop */
.burger,
.mobile-menu {
    display: none;
}

/* -------------------------------------------------------------------
   5. MOBILE NAVIGATION
------------------------------------------------------------------- */
@media (max-width: 768px) {

    /* Mobile Header Layout */
    nav {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 1rem;
        padding: 1rem 0;
    }

    .logo {
        grid-column: 1;
        justify-self: start;
    }

    .logo img {
        height: 45px !important;
        width: auto;
    }

    /* Hide Desktop Navigation */
    .nav-links.desktop-nav,
    .cta-button.desktop-cta {
        display: none;
    }

    /* Mobile Hamburger Button */
    .burger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
        padding: 12px;
        background: rgba(174, 206, 255, 0.1);
        border: 1px solid rgba(174, 206, 255, 0.2);
        border-radius: 8px;
        z-index: 1001;
        position: relative;
        transition: all 0.3s ease;
        grid-column: 2;
        justify-self: end;
    }

    .burger:hover {
        background: rgba(174, 206, 255, 0.15);
    }

    .burger span {
        width: 20px;
        height: 2px;
        background: #666;
        transition: all 0.3s ease;
        border-radius: 2px;
        transform-origin: center;
    }

    /* Hamburger Animation */
    .burger.active {
        background: rgba(174, 206, 255, 0.2);
    }

    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
        background: #AECEFF;
    }

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

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

    /* Mobile Menu Overlay */
    .mobile-menu {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        z-index: 1000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        padding: 2rem;
    }

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

    /* Mobile Navigation Links */
    .nav-links.mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        margin-bottom: 2rem;
        list-style: none;
    }

    .nav-links.mobile-nav a {
        font-size: 1.5rem;
        font-weight: 500;
        color: #1a1a1a;
        text-decoration: none;
        padding: 1rem 2rem;
        border-radius: 12px;
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-links.mobile-nav a:hover {
        color: #AECEFF;
        background: rgba(174, 206, 255, 0.1);
        transform: translateY(-2px);
    }

    /* Mobile CTA Button */
    .cta-button.mobile-cta {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        margin-top: 1rem;
        min-width: 250px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .logo img {
        height: 40px !important;
    }

    .burger {
        padding: 10px;
    }

    .burger span {
        width: 18px;
        height: 2px;
    }

    .nav-links.mobile-nav a {
        font-size: 1.25rem;
        padding: 0.75rem 1.5rem;
    }

    .cta-button.mobile-cta {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
        min-width: 220px;
    }
}

/* Very Small Mobile */
@media (max-width: 360px) {
    .logo img {
        height: 35px !important;
    }

    .burger {
        padding: 8px;
    }

    .burger span {
        width: 16px;
    }
}

/* -------------------------------------------------------------------
   6. HERO SECTION
------------------------------------------------------------------- */
.hero {
    padding: clamp(120px, 20vh, 160px) 0 clamp(60px, 12vh, 100px);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(174, 206, 255, 0.05), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(205, 188, 255, 0.05), transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(40px, 8vw, 80px);
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text h1 {
    font-size: clamp(32px, 8vw, 72px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: clamp(16px, 3vh, 24px);
    color: #1a1a1a;
    opacity: 0;
    animation: slideUp 0.8s ease forwards 0.3s;
}

.hero-text .highlight {
    color: #AECEFF;
    position: relative;
}

.hero-text .highlight::after {
    content: '';
    position: absolute;
    bottom: clamp(4px, 1vw, 8px);
    left: 0;
    right: 0;
    height: clamp(4px, 1vw, 8px);
    background: rgba(174, 206, 255, 0.2);
    border-radius: 4px;
    z-index: -1;
}

.hero-text p {
    font-size: clamp(16px, 3vw, 20px);
    margin-bottom: clamp(24px, 5vh, 40px);
    color: #666;
    line-height: 1.6;
    opacity: 0;
    animation: slideUp 0.8s ease forwards 0.5s;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(12px, 3vw, 16px);
    opacity: 0;
    animation: slideUp 0.8s ease forwards 0.7s;
}

.hero-image {
    opacity: 0;
    animation: slideUp 0.8s ease forwards 0.4s;
    position: relative;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: clamp(300px, 50vh, 600px);
    object-fit: cover;
    border-radius: clamp(16px, 3vw, 24px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: clamp(-10px, -2vw, -20px);
    left: clamp(-10px, -2vw, -20px);
    right: clamp(10px, 2vw, 20px);
    bottom: clamp(10px, 2vw, 20px);
    background: rgba(174, 206, 255, 0.1);
    border-radius: clamp(20px, 4vw, 32px);
    z-index: -1;
}

.trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(20px, 4vw, 40px);
    margin-top: clamp(40px, 8vh, 60px);
    opacity: 0;
    animation: slideUp 0.8s ease forwards 0.9s;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: clamp(8px, 2vw, 12px);
    color: #666;
    font-size: clamp(13px, 2vw, 14px);
    white-space: nowrap;
}

.trust-icon {
    width: clamp(18px, 3vw, 20px);
    height: clamp(18px, 3vw, 20px);
    background: #AECEFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: clamp(10px, 2vw, 12px);
    flex-shrink: 0;
}

/* -------------------------------------------------------------------
   7. ANIMATIONS
------------------------------------------------------------------- */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* -------------------------------------------------------------------
   8. HERO MOBILE RESPONSIVE
------------------------------------------------------------------- */
@media (max-width: 768px) {
    .hero {
        padding: clamp(100px, 15vh, 120px) 0 clamp(40px, 8vh, 60px);
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: clamp(30px, 6vw, 40px);
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-image img {
        height: clamp(250px, 40vh, 400px);
    }

    .trust-bar {
        justify-content: center;
        gap: clamp(16px, 4vw, 24px);
        flex-wrap: wrap;
    }

    .hero-cta {
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 0 40px;
    }

    .hero-text h1 {
        font-size: clamp(28px, 8vw, 36px);
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-button,
    .secondary-button {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.5rem;
    }

    .trust-bar {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .trust-item {
        justify-content: center;
    }
}

/* ===================================================================
   LILAS DENTAL CENTER - COMPLETE CSS (Version 2)
   Part 2: Services Section & Technology Section
   =================================================================== */

/* -------------------------------------------------------------------
   SERVICES SECTION
------------------------------------------------------------------- */
.services {
    padding: clamp(60px, 12vh, 100px) 0;
    background: #fff;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 6vw, 60px);
    margin-bottom: clamp(60px, 10vh, 100px);
}

.service-category {
    background: #fff;
    border-radius: clamp(16px, 3vw, 24px);
    padding: clamp(24px, 4vw, 40px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f5f5f5;
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
    transition: all 0.3s ease;
}

.service-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.service-category.premium {
    animation-delay: 0.2s;
    border-left: 4px solid #AECEFF;
}

.service-category.general {
    animation-delay: 0.4s;
    border-left: 4px solid #CDBCFF;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(24px, 4vh, 32px);
    padding-bottom: clamp(16px, 3vh, 20px);
    border-bottom: 1px solid #f0f0f0;
}

.category-header h3 {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 600;
    color: #1a1a1a;
}

.category-badge {
    background: rgba(174, 206, 255, 0.1);
    color: #AECEFF;
    padding: clamp(6px, 1vh, 8px) clamp(12px, 2vw, 16px);
    border-radius: 20px;
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 500;
}

.general .category-badge {
    background: rgba(205, 188, 255, 0.1);
    color: #CDBCFF;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 3vh, 24px);
}

.service-item {
    display: flex;
    gap: clamp(16px, 3vw, 20px);
    padding: clamp(16px, 3vh, 20px);
    border-radius: clamp(12px, 2vw, 16px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item:hover {
    background: rgba(174, 206, 255, 0.03);
    transform: translateX(8px);
}

.service-icon {
    flex-shrink: 0;
    width: clamp(50px, 8vw, 60px);
    height: clamp(50px, 8vw, 60px);
    border-radius: clamp(10px, 2vw, 12px);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.service-content h4 {
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: clamp(6px, 1vh, 8px);
}

.service-content p {
    font-size: clamp(14px, 2.5vw, 16px);
    color: #666;
    line-height: 1.5;
    margin-bottom: clamp(8px, 1.5vh, 12px);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: clamp(4px, 0.5vh, 6px);
}

.service-features span {
    font-size: clamp(12px, 2vw, 14px);
    color: #4289f3;
    font-weight: 500;
}

.services-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(174, 206, 255, 0.05), rgba(205, 188, 255, 0.05));
    padding: clamp(40px, 8vh, 60px) clamp(20px, 4vw, 40px);
    border-radius: clamp(16px, 3vw, 24px);
    border: 1px solid rgba(174, 206, 255, 0.1);
    opacity: 0;
    animation: slideUp 0.8s ease forwards 0.6s;
}

.services-cta h3 {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: clamp(12px, 2vh, 16px);
}

.services-cta p {
    font-size: clamp(16px, 3vw, 18px);
    color: #666;
    margin-bottom: clamp(24px, 4vh, 32px);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Mobile Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .service-icon {
        align-self: center;
        width: 60px;
        height: 60px;
    }

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

    .service-item:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 480px) {
    .category-header {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .service-item {
        padding: 1rem;
    }

    .services-cta {
        padding: 2rem 1rem;
    }
}

/* ===================================================================
   TECHNOLOGY SECTION - FIXED LAYOUT
   Replace the existing technology CSS with this improved version
   =================================================================== */

.technology {
    padding: clamp(60px, 12vh, 100px) 0;
    background: linear-gradient(135deg, rgba(174, 206, 255, 0.02), rgba(205, 188, 255, 0.02));
    position: relative;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(30px, 5vw, 40px);
    margin-bottom: clamp(60px, 10vh, 80px);
}

.tech-feature {
    background: #fff;
    padding: clamp(28px, 5vw, 36px);
    border-radius: clamp(16px, 3vw, 20px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(174, 206, 255, 0.1);
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.tech-feature:nth-child(1) {
    animation-delay: 0.1s;
}

.tech-feature:nth-child(2) {
    animation-delay: 0.2s;
}

.tech-feature:nth-child(3) {
    animation-delay: 0.3s;
}

.tech-feature:nth-child(4) {
    animation-delay: 0.4s;
}

.tech-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #AECEFF, #CDBCFF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.tech-feature:hover::before {
    transform: scaleX(1);
}

.tech-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

/* Fixed Icon Positioning */
.tech-icon {
    width: clamp(150px, 12vw, 85px);
    height: clamp(90px, 12vw, 85px);
    border-radius: clamp(12px, 2vw, 16px);
    overflow: hidden;
    margin-bottom: clamp(20px, 4vh, 24px);
    box-shadow: 0 6px 20px rgba(174, 206, 255, 0.2);
    flex-shrink: 0;
    position: relative;
}

.tech-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Content Container */
.tech-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tech-content h3 {
    font-size: clamp(20px, 4vw, 26px);
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: clamp(12px, 2vh, 16px);
    line-height: 1.3;
}

.tech-content p {
    font-size: clamp(15px, 3vw, 17px);
    color: #666;
    line-height: 1.6;
    margin-bottom: clamp(16px, 3vh, 20px);
    flex: 1;
}

.tech-benefits {
    display: flex;
    flex-direction: column;
    gap: clamp(6px, 1.5vh, 8px);
    margin-top: auto;
}

.tech-benefits span {
    font-size: clamp(14px, 2.5vw, 15px);
    color: #AECEFF;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tech-benefits span::before {
    content: '•';
    color: #AECEFF;
    font-weight: bold;
    font-size: 1.2em;
}

/* Credentials Section - Also improved */
.credentials-section {
    background: #fff;
    padding: clamp(45px, 7vh, 65px);
    border-radius: clamp(16px, 3vw, 24px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: clamp(60px, 10vh, 80px);
    border: 1px solid rgba(174, 206, 255, 0.1);
    opacity: 0;
    animation: slideUp 0.8s ease forwards 0.5s;
}

.credentials-header {
    text-align: center;
    margin-bottom: clamp(35px, 6vh, 45px);
}

.credentials-header h3 {
    font-size: clamp(26px, 5vw, 34px);
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: clamp(12px, 2vh, 16px);
    line-height: 1.2;
}

.credentials-header p {
    font-size: clamp(16px, 3vw, 18px);
    color: #666;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(25px, 4vw, 30px);
}

.credential-item {
    display: flex;
    gap: clamp(16px, 3vw, 20px);
    padding: clamp(20px, 4vh, 24px);
    border-radius: clamp(12px, 2vw, 16px);
    transition: all 0.3s ease;
    cursor: pointer;
    align-items: flex-start;
}

.credential-item:hover {
    background: rgba(174, 206, 255, 0.05);
    transform: translateX(8px);
}

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

.cert-badge {
    width: clamp(50px, 8vw, 60px);
    height: clamp(50px, 8vw, 60px);
    background: linear-gradient(135deg, #AECEFF, #CDBCFF);
    border-radius: clamp(10px, 2vw, 12px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: clamp(14px, 2.5vw, 16px);
}

.credential-content h4 {
    font-size: clamp(18px, 3.5vw, 20px);
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: clamp(6px, 1vh, 8px);
    line-height: 1.3;
}

.credential-content p {
    font-size: clamp(14px, 2.5vw, 16px);
    color: #666;
    line-height: 1.5;
}

/* Technology CTA - Improved */
.tech-cta {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: clamp(40px, 7vw, 60px);
    align-items: center;
    background: #fff;
    padding: clamp(40px, 6vh, 60px);
    border-radius: clamp(16px, 3vw, 24px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(174, 206, 255, 0.1);
    opacity: 0;
    animation: slideUp 0.8s ease forwards 0.7s;
}

.cta-content h3 {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: clamp(16px, 3vh, 20px);
    line-height: 1.2;
}

.cta-content p {
    font-size: clamp(17px, 3.5vw, 19px);
    color: #666;
    line-height: 1.6;
    margin-bottom: clamp(28px, 5vh, 36px);
}

.cta-buttons {
    display: flex;
    gap: clamp(16px, 3vw, 20px);
    flex-wrap: wrap;
}

.cta-image {
    border-radius: clamp(14px, 3vw, 18px);
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.cta-image img {
    width: 100%;
    height: clamp(220px, 35vh, 320px);
    object-fit: cover;
}

/* Technology Mobile Responsive */
@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .tech-feature {
        min-height: auto;
        padding: 24px;
    }

    .tech-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 16px;
    }

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

    .tech-cta {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .cta-image {
        order: -1;
    }

    .credential-item:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 480px) {
    .tech-feature {
        padding: 20px;
    }

    .credentials-section {
        padding: 30px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .cta-buttons .cta-button,
    .cta-buttons .secondary-button {
        width: 100%;
        max-width: 280px;
    }

    .tech-content h3 {
        font-size: 18px;
    }

    .tech-content p {
        font-size: 15px;
    }
}

/* ===================================================================
   LILAS DENTAL CENTER - COMPLETE CSS (Version 2)
   Part 3: About Section & Contact Section
   =================================================================== */

/* -------------------------------------------------------------------
   ABOUT SECTION
------------------------------------------------------------------- */
.about {
    padding: clamp(60px, 12vh, 100px) 0;
    background: #fff;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(40px, 8vw, 80px);
    align-items: center;
    margin-bottom: clamp(60px, 12vh, 100px);
}

.about-image {
    position: relative;
    opacity: 0;
    animation: slideUp 0.8s ease forwards 0.2s;
}

.image-wrapper {
    position: relative;
    border-radius: clamp(16px, 3vw, 24px);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: clamp(500px, 60vh, 700px);
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.image-accent {
    position: absolute;
    top: clamp(-15px, -3vw, -20px);
    right: clamp(-15px, -3vw, -20px);
    width: clamp(80px, 15vw, 120px);
    height: clamp(80px, 15vw, 120px);
    background: linear-gradient(135deg, #AECEFF, #CDBCFF);
    border-radius: 50%;
    opacity: 0.8;
    z-index: -1;
}

.about-text {
    opacity: 0;
    animation: slideUp 0.8s ease forwards 0.4s;
}

.about-text h2 {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: clamp(8px, 1.5vh, 12px);
}

.lead {
    font-size: clamp(18px, 3.5vw, 24px);
    color: #AECEFF;
    font-weight: 500;
    margin-bottom: clamp(24px, 4vh, 32px);
    line-height: 1.4;
}

.about-story {
    margin-bottom: clamp(32px, 5vh, 40px);
}

.about-story p {
    font-size: clamp(15px, 2.5vw, 17px);
    line-height: 1.7;
    color: #666;
    margin-bottom: clamp(16px, 3vh, 20px);
}

.qualifications {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 3vh, 20px);
    margin-bottom: clamp(32px, 5vh, 40px);
}

.qual-item {
    display: flex;
    gap: clamp(12px, 2vw, 16px);
    align-items: flex-start;
}

.qual-icon .icon-circle {
    width: clamp(40px, 6vw, 50px);
    height: clamp(40px, 6vw, 50px);
    background: linear-gradient(135deg, #AECEFF, #CDBCFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(16px, 3vw, 20px);
}

.qual-content h4 {
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: clamp(4px, 1vh, 6px);
}

.qual-content p {
    font-size: clamp(14px, 2.5vw, 15px);
    color: #666;
    line-height: 1.5;
}

.about-cta {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 3vh, 20px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: clamp(6px, 1vh, 8px);
}

.contact-info span {
    font-size: clamp(13px, 2vw, 14px);
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, rgba(174, 206, 255, 0.03), rgba(205, 188, 255, 0.03));
    padding: clamp(40px, 6vh, 60px);
    border-radius: clamp(16px, 3vw, 24px);
    border: 1px solid rgba(174, 206, 255, 0.1);
    opacity: 0;
    animation: slideUp 0.8s ease forwards 0.6s;
}

.values-header {
    text-align: center;
    margin-bottom: clamp(30px, 5vh, 40px);
}

.values-header h3 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: clamp(8px, 1.5vh, 12px);
}

.values-header p {
    font-size: clamp(14px, 2.5vw, 16px);
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(24px, 4vw, 32px);
}

.value-item {
    text-align: center;
    padding: clamp(20px, 3vh, 24px);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-8px);
}

.value-icon {
    width: clamp(60px, 10vw, 80px);
    height: clamp(60px, 10vw, 80px);
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto clamp(16px, 3vh, 20px);
    box-shadow: 0 8px 25px rgba(174, 206, 255, 0.2);
}

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

.value-item h4 {
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: clamp(8px, 1.5vh, 12px);
}

.value-item p {
    font-size: clamp(14px, 2.5vw, 15px);
    color: #666;
    line-height: 1.6;
}

/* Promise Section */
.promise-section {
    background: #fff;
    padding: clamp(40px, 6vh, 60px);
    border-radius: clamp(16px, 3vw, 24px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(174, 206, 255, 0.1);
    text-align: center;
    opacity: 0;
    animation: slideUp 0.8s ease forwards 0.8s;
}

.promise-content h3 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: clamp(12px, 2vh, 16px);
}

.promise-content>p {
    font-size: clamp(16px, 3vw, 18px);
    color: #666;
    margin-bottom: clamp(24px, 4vh, 32px);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.promise-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(16px, 3vh, 20px);
    max-width: 800px;
    margin: 0 auto;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 16px);
    text-align: left;
    padding: clamp(12px, 2vh, 16px);
    border-radius: clamp(8px, 1.5vw, 12px);
    transition: background 0.3s ease;
}

.promise-item:hover {
    background: rgba(174, 206, 255, 0.05);
}

.promise-check {
    flex-shrink: 0;
    width: clamp(24px, 4vw, 28px);
    height: clamp(24px, 4vw, 28px);
    background: #AECEFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: clamp(12px, 2vw, 14px);
}

.promise-item span:last-child {
    font-size: clamp(14px, 2.5vw, 16px);
    color: #1a1a1a;
    font-weight: 500;
}

/* About Mobile Responsive */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-image {
        order: -1;
    }

    .image-wrapper img {
        height: clamp(300px, 50vh, 500px);
    }

    .qualifications {
        text-align: left;
        max-width: 500px;
        margin: 0 auto clamp(32px, 5vh, 40px);
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .promise-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-cta .cta-button {
        width: 100%;
        max-width: 280px;
    }

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

    .values-section,
    .promise-section {
        padding: 2rem 1rem;
    }
}

/* -------------------------------------------------------------------
   CONTACT SECTION
------------------------------------------------------------------- */
.contact {
    padding: clamp(60px, 12vh, 100px) 0;
    background: linear-gradient(135deg, rgba(174, 206, 255, 0.03), rgba(205, 188, 255, 0.03));
    position: relative;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    opacity: 0;
    animation: slideUp 0.8s ease forwards 0.2s;
}

.contact-info h2 {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: clamp(12px, 2vh, 16px);
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 3vh, 24px);
    margin: clamp(32px, 5vh, 40px) 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 2vh, 16px);
    padding: clamp(20px, 4vh, 28px);
    background: #fff;
    border-radius: clamp(12px, 2vw, 16px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(174, 206, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-icon .icon-circle {
    width: clamp(45px, 7vw, 55px);
    height: clamp(45px, 7vw, 55px);
    background: linear-gradient(135deg, #AECEFF, #CDBCFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(18px, 3vw, 22px);
    flex-shrink: 0;
    margin: 0 auto;
}

.contact-text h4 {
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: clamp(4px, 1vh, 6px);
}

.contact-text p {
    font-size: clamp(14px, 2.5vw, 15px);
    color: #666;
    line-height: 1.5;
}

.contact-cta {
    text-align: center;
    padding: clamp(24px, 4vh, 32px);
    background: #fff;
    border-radius: clamp(16px, 3vw, 20px);
    box-shadow: 0 8px 30px rgba(174, 206, 255, 0.15);
    border: 1px solid rgba(174, 206, 255, 0.2);
    max-width: 500px;
    margin: clamp(32px, 5vh, 40px) auto 0;
}

.cta-note span {
    font-size: clamp(13px, 2vw, 14px);
    color: #666;
    font-weight: 500;
}

/* Contact Mobile Responsive */
@media (max-width: 768px) {
    .contact-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-item {
        padding: 1.5rem 1rem;
    }

    .contact-cta {
        padding: 1.5rem;
    }
}

/* ===================================================================
   LILAS DENTAL CENTER - COMPLETE CSS (Version 2)
   Part 4: Footer & Final Responsive Styles
   =================================================================== */

/* -------------------------------------------------------------------
   FOOTER SECTION
------------------------------------------------------------------- */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: clamp(50px, 8vh, 80px) 0 clamp(20px, 3vh, 30px);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: clamp(40px, 8vw, 80px);
    margin-bottom: clamp(40px, 6vh, 60px);
}

.footer-brand .logo {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 500;
    color: #AECEFF;
    letter-spacing: 1px;
    margin-bottom: clamp(16px, 3vh, 20px);
}

.footer-brand p {
    font-size: clamp(14px, 2.5vw, 16px);
    line-height: 1.6;
    color: #ccc;
    margin-bottom: clamp(24px, 4vh, 32px);
}

.social-links {
    display: flex;
    gap: clamp(12px, 2vw, 16px);
}

.social-link {
    width: clamp(40px, 6vw, 45px);
    height: clamp(40px, 6vw, 45px);
    background: rgba(174, 206, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #AECEFF;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #AECEFF;
    color: white;
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(30px, 5vw, 40px);
}

.footer-section h4 {
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 600;
    color: #fff;
    margin-bottom: clamp(16px, 3vh, 20px);
}

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

.footer-section ul li {
    margin-bottom: clamp(8px, 1.5vh, 12px);
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: clamp(14px, 2.5vw, 15px);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #AECEFF;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: clamp(20px, 3vh, 30px);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(16px, 3vw, 20px);
}

.footer-bottom p {
    font-size: clamp(13px, 2vw, 14px);
    color: #999;
}

.footer-book-btn {
    background: #AECEFF;
    color: white;
    padding: clamp(10px, 2vh, 12px) clamp(20px, 4vw, 24px);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(13px, 2vw, 14px);
    transition: all 0.3s ease;
}

.footer-book-btn:hover {
    background: #96D7FF;
    transform: translateY(-2px);
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-brand p {
        font-size: 0.875rem;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }
}

/* -------------------------------------------------------------------
   FINAL RESPONSIVE & MOBILE OPTIMIZATIONS
------------------------------------------------------------------- */

/* Large screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

/* Very Small Phones */
@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .about-text h2 {
        font-size: 1.75rem;
    }

    .tech-feature,
    .service-category {
        padding: 1rem;
    }
}

/* Landscape Mobile Optimization */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .hero-image img {
        height: 250px;
    }

    .mobile-menu {
        padding: 2rem 0;
        justify-content: flex-start;
        padding-top: 80px;
    }

    .mobile-menu .nav-links.mobile-nav {
        gap: 1rem;
    }

    .mobile-menu .nav-links.mobile-nav a {
        font-size: 1.25rem;
        padding: 0.5rem;
    }
}

/* Improved Touch Targets for Mobile */
@media (max-width: 768px) {

    .nav-links a,
    .cta-button,
    .secondary-button,
    .service-item,
    .tech-feature,
    .credential-item {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .burger {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Fix for iOS Safari viewport issues */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
}

/* High DPI / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* -------------------------------------------------------------------
   ACCESSIBILITY & PERFORMANCE OPTIMIZATIONS
------------------------------------------------------------------- */

/* Focus states for keyboard navigation */
*:focus {
    outline: 2px solid #AECEFF;
    outline-offset: 2px;
}

.burger:focus {
    outline: 2px solid #AECEFF;
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero::before {
        animation: none;
    }
}

/* Print styles */
@media print {
    header {
        position: static;
        background: white;
        box-shadow: none;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .mobile-menu,
    .burger {
        display: none !important;
    }

    .cta-button,
    .secondary-button {
        background: transparent !important;
        color: #1a1a1a !important;
        border: 1px solid #1a1a1a !important;
    }

    .hero-image,
    .service-icon,
    .tech-icon,
    .value-icon {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}

/* -------------------------------------------------------------------
   UTILITY CLASSES & HELPERS
------------------------------------------------------------------- */

/* Screen reader only content */
.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;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #AECEFF;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

/* Container modifications for different sections */
.container-fluid {
    max-width: 100%;
    padding: 0;
}

.container-narrow {
    max-width: 800px;
}

/* Text utilities */
.text-center {
    text-align: center;
}

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

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

/* Spacing utilities */
.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* Display utilities */
.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

@media (max-width: 768px) {
    .d-md-none {
        display: none;
    }

    .d-md-block {
        display: block;
    }

    .d-md-flex {
        display: flex;
    }

    .d-md-grid {
        display: grid;
    }
}

@media (max-width: 480px) {
    .d-sm-none {
        display: none;
    }

    .d-sm-block {
        display: block;
    }

    .d-sm-flex {
        display: flex;
    }

    .d-sm-grid {
        display: grid;
    }
}

/* -------------------------------------------------------------------
   FINAL PERFORMANCE OPTIMIZATIONS
------------------------------------------------------------------- */

/* GPU acceleration for animations */
.hero-text h1,
.hero-text p,
.hero-cta,
.hero-image,
.trust-bar,
.service-category,
.tech-feature {
    will-change: transform, opacity;
}

/* Remove will-change after animations complete */
.hero-text h1:not(.animating),
.hero-text p:not(.animating),
.hero-cta:not(.animating),
.hero-image:not(.animating),
.trust-bar:not(.animating) {
    will-change: auto;
}

/* Optimize repaints */
.service-item,
.cta-button,
.secondary-button,
.mobile-menu {
    contain: layout style paint;
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Optimize font loading */


/* Preload critical fonts */
body {
    font-feature-settings: 'kern' 1, 'liga' 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
#slideshow {
  transition: opacity 1s ease-in-out;
}

.fade-out {
  opacity: 0;
}