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

:root {
    --primary-color: #2C2C2C;
    --secondary-color: #FFFFFF;
    --accent-color: #DC143C;
    --light-gray: #E8E8E8;
    --dark-gray: #4A4A4A;
    --text-color: #333333;
    --border-color: #DDDDDD;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: var(--secondary-color);
    line-height: 1.6;
    touch-action: manipulation;
}

body.password-protected {
    overflow: hidden;
    background: #000000 !important;
}

body.password-protected > *:not(#passwordModal) {
    display: none;
}

.fa,
.fas,
.far,
.fab,
.fal,
.fa-solid,
.fa-regular,
.fa-brands {
    display: none !important;
}

.footer .fa,
.footer .fas,
.footer .far,
.footer .fab,
.footer .fal,
.footer .fa-solid,
.footer .fa-regular,
.footer .fa-brands {
    display: inline-block !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Password Modal */
.password-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.password-modal.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.password-modal-content {
    background: linear-gradient(135deg, #2C2C2C 0%, #1a1a1a 100%);
    padding: 50px 40px;
    border-radius: 12px;
    border: 2px solid var(--accent-color);
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.4);
    animation: slideUp 0.4s ease;
}

.password-modal-content h2 {
    color: var(--secondary-color);
    font-size: 28px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.password-modal-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    font-size: 14px;
}

.password-modal-content input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--accent-color);
    border-radius: 6px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--secondary-color);
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.password-modal-content input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.password-modal-content input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.3);
    border-color: #FF6B6B;
}

.password-modal-content button {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #FF6B6B 100%);
    color: var(--secondary-color);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.password-modal-content button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.5);
}

.password-modal-content button:active {
    transform: translateY(0);
}

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

/* Navigation */
.navbar {
    background-color: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.logo-text {
    color: var(--primary-color);
    letter-spacing: 1px;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-weight: 600;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), #FF69B4);
    transition: width 0.4s ease;
}

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

.nav-menu a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 6px;
}

.menu-toggle span {
    width: 32px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Hero Section */
.hero {
    padding: 90px 0 95px;
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 18% 20%, rgba(220, 20, 60, 0.3) 0%, rgba(220, 20, 60, 0) 38%),
        radial-gradient(circle at 84% 75%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 36%),
        linear-gradient(128deg, #1f1f23 0%, #37373e 54%, #2a2a31 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: -25%;
    background:
        repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.04) 0 2px, rgba(255, 255, 255, 0) 2px 24px),
        radial-gradient(circle, rgba(220, 20, 60, 0.12) 0%, transparent 68%);
    mix-blend-mode: screen;
    animation: gradientMove 18s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 60vmax;
    height: 60vmax;
    right: -20vmax;
    top: -16vmax;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.24), rgba(220, 20, 60, 0));
    filter: blur(4px);
    animation: heroBlobFloat 13s ease-in-out infinite alternate;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 980px;
    animation: heroContentReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-logo {
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease 0.2s both;
}

.hero-logo-img {
    height: 110px;
    width: 110px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.45), 0 0 0 8px rgba(255, 255, 255, 0.07);
    border: 3px solid rgba(220, 20, 60, 0.3);
    display: block;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 5.2vw, 4.35rem);
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
    animation: heroTitleReveal 0.95s ease;
}

.hero-content p {
    font-size: clamp(1rem, 2.1vw, 1.35rem);
    color: var(--accent-color);
    margin-bottom: 28px;
    font-weight: 700;
    letter-spacing: 0.45px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-description {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #FFFFFF;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s both;
    font-size: 0.95rem;
}

.hero-description p {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.hero-description strong {
    background: linear-gradient(135deg, #DC143C 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero .btn {
    padding: 12px 26px;
    font-size: 0.9rem;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

/* Buttons */
.btn {
    padding: 10px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.btn-primary::before {
    background-color: #B00E31;
    z-index: -1;
}

.btn-primary:hover {
    color: var(--secondary-color);
    animation: bounce 0.6s ease;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--accent-color);
    position: relative;
    z-index: 1;
}

.btn-secondary::before {
    background-color: var(--accent-color);
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 60px 0;
    background-color: #F5F5F5;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.about-text h3 {
    font-size: 1.85rem;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.about-text p {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 16px;
    line-height: 1.6;
}

.about-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}

.about-list li {
    padding: 8px 0;
    color: var(--text-color);
    font-size: 1rem;
    display: grid;
    grid-template-columns: 12px 1fr;
    align-items: start;
    column-gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.about-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 6px;
    background: linear-gradient(135deg, var(--accent-color), #000000);
    box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.08);
}

.about-list i {
    display: none;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat {
    text-align: center;
    padding: 18px 12px;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    animation: fadeInUp 0.6s ease forwards;
    position: relative;
    overflow: visible;
    border-bottom: 1px solid rgba(220, 20, 60, 0.16);
}

.stat:nth-child(1) {
    animation-delay: 0.2s;
}

.stat:nth-child(2) {
    animation-delay: 0.3s;
}

.stat:nth-child(3) {
    animation-delay: 0.4s;
}

.stat::before {
    display: none;
}

.stat:hover {
    transform: none;
    box-shadow: none;
}

.stat h4 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 6px;
    margin-top: 0;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.stat i {
    display: none;
}

.stat p {
    color: var(--dark-gray);
    font-size: 0.93rem;
    line-height: 1.5;
}

/* Products Section */
.products {
    padding: 80px 0;
    background:
        radial-gradient(circle at 12% 16%, rgba(220, 20, 60, 0.1) 0%, rgba(220, 20, 60, 0) 36%),
        linear-gradient(180deg, #f4f5f7 0%, #f7f8fa 100%);
}

.products-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 50px;
}

.product-item {
    padding: 30px;
    background-color: var(--secondary-color);
    border-left: 4px solid var(--accent-color);
    border-radius: 0;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease forwards;
}

.product-item:nth-child(1) { animation-delay: 0.1s; }
.product-item:nth-child(2) { animation-delay: 0.2s; }
.product-item:nth-child(3) { animation-delay: 0.3s; }
.product-item:nth-child(4) { animation-delay: 0.4s; }
.product-item:nth-child(5) { animation-delay: 0.5s; }
.product-item:nth-child(6) { animation-delay: 0.6s; }

.product-item:hover {
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.15);
    transform: translateY(-5px);
}

.product-item h3 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.product-item h3 i {
    color: var(--accent-color);
    margin-right: 10px;
}

.product-item p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Features cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    position: relative;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(252, 252, 254, 0.96)) padding-box,
        linear-gradient(145deg, rgba(220, 20, 60, 0.3), rgba(220, 20, 60, 0.08), rgba(44, 44, 44, 0.15)) border-box;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.55) inset;
    border: 1px solid transparent;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
    animation: fadeInUp 0.6s ease forwards;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background: linear-gradient(180deg, rgba(220, 20, 60, 0.95), rgba(220, 20, 60, 0.35), rgba(44, 44, 44, 0.8));
    border-radius: 6px 0 0 6px;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: -40% -15%;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(circle at 20% 14%, rgba(220, 20, 60, 0.18), rgba(220, 20, 60, 0) 56%);
    transition: opacity 0.28s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14), 0 0 30px rgba(220, 20, 60, 0.2);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 800;
}

.feature-card p {
    font-size: 0.98rem;
    color: var(--dark-gray);
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
    display: grid;
    gap: 6px;
}

.feature-list li {
    font-size: 0.95rem;
    color: var(--text-color);
    position: relative;
    padding-left: 18px;
}

.feature-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

/* Gallery Section - Carousel */
.gallery {
    padding: 80px 0;
    background:
        radial-gradient(circle at 90% 14%, rgba(220, 20, 60, 0.12) 0%, rgba(220, 20, 60, 0) 42%),
        linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.carousel-btn {
    background-color: var(--accent-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.carousel-btn:hover {
    background-color: #FF1493;
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    padding: 10px;
    border-radius: 16px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(252, 252, 254, 0.92)) padding-box,
        linear-gradient(140deg, rgba(220, 20, 60, 0.26), rgba(220, 20, 60, 0.08), rgba(44, 44, 44, 0.12)) border-box;
    border: 1px solid transparent;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.09);
}

.carousel-track {
    display: flex;
    gap: 20px;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item {
    flex: 0 0 calc(50% - 10px);
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.13);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
    border: 1px solid rgba(220, 20, 60, 0.12);
}

.carousel-item:hover {
    transform: translateY(-2px) scale(1.015);
    box-shadow: 0 14px 28px rgba(220, 20, 60, 0.2), 0 16px 30px rgba(0, 0, 0, 0.16);
}

.carousel-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Extras section */
.extras {
    padding: 70px 0;
    background-color: #FFFFFF;
}

.extras-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.extras-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.extras-list li {
    color: var(--text-color);
    padding-left: 18px;
    position: relative;
    font-size: 0.98rem;
}

.extras-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    .extras-list {
        grid-template-columns: 1fr;
    }
}

/* Location Section */
.location {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.location-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease 0.2s both;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.25), rgba(255, 20, 147, 0.25));
    padding: 6px;
}

.location-map iframe {
    display: block;
    border-radius: 8px;
    height: 360px;
}

.location-info {
    animation: fadeInUp 0.6s ease 0.3s both;
}

.location-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.location-address {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    line-height: 1.8;
}

.service-areas {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.service-areas li {
    padding: 8px 0 8px 25px;
    color: var(--dark-gray);
    font-size: 0.95rem;
    position: relative;
    line-height: 1.6;
}

.service-areas li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

@media (max-width: 768px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .location-map iframe {
        height: 350px !important;
    }

    .location-info h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .location-map iframe {
        height: 250px !important;
    }

    .location-info h3 {
        font-size: 1.3rem;
    }

    .location-info p {
        font-size: 0.9rem;
    }

    .service-areas li {
        font-size: 0.9rem;
        padding: 6px 0 6px 20px;
    }
}

.filter-btn {
    border: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: fadeInDown 0.6s ease;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    z-index: -1;
    transition: left 0.4s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
    transform: scale(1.05);
}

.filter-btn:active {
    animation: pulse 0.6s ease;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    content-visibility: auto;
    contain-intrinsic-size: 1px 1150px;
}

.gallery-grid.masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    grid-auto-rows: 250px;
}

.gallery-grid.masonry .gallery-item:nth-child(3n) {
    grid-column: span 1;
    grid-row: span 1.3;
}

.gallery-grid.masonry .gallery-item:nth-child(4n) {
    grid-column: span 1;
    grid-row: span 1.1;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    cursor: pointer;
    background-color: var(--primary-color);
    animation: fadeInUp 0.6s ease forwards;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.gallery-item:nth-child(n) {
    animation-delay: calc(0.05s * var(--item-index, 0));
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.24s ease, filter 0.24s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(1.03);
}

.gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(220, 20, 60, 0.18), 0 16px 30px rgba(0, 0, 0, 0.16);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(140deg, rgba(220, 20, 60, 0.82), rgba(96, 16, 37, 0.66), rgba(14, 14, 16, 0.58));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

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

.gallery-modern {
    position: relative;
    overflow: hidden;
}

.gallery-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.65;
    background:
        radial-gradient(circle at 14% 22%, rgba(220, 20, 60, 0.12) 0%, rgba(220, 20, 60, 0) 40%),
        radial-gradient(circle at 88% 72%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 44%);
    transition: opacity 0.22s ease;
}

.gallery-modern.gallery-interactive::before {
    opacity: 1;
    background:
        radial-gradient(circle at 16% 26%, rgba(220, 20, 60, 0.2) 0%, rgba(220, 20, 60, 0) 45%),
        radial-gradient(circle at 84% 70%, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0) 45%);
}

.gallery-info {
    text-align: center;
    color: var(--secondary-color);
    padding: 20px;
}

.gallery-info h4 {
    font-size: 1.15rem;
    margin: 0 0 8px 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.gallery-info p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.95;
    line-height: 1.4;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 40px 0 50px 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--primary-color);
    background-color: white;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    z-index: -1;
    transition: left 0.4s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.3);
}

/* Gallery CTA */
.gallery-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.08) 0%, rgba(44, 44, 44, 0.08) 100%);
    border-radius: 12px;
    border-top: 4px solid var(--accent-color);
}

.gallery-cta h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.gallery-cta p {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-bottom: 24px;
}

.gallery-cta .btn {
    padding: 14px 40px;
    font-size: 1.05rem;
}

/* Section Subtitle */
.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-top: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Testimonials Section */
.testimonials-section {
    margin-top: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-top: 4px solid var(--accent-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.stars {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
    font-style: italic;
}

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

.testimonial-author strong {
    color: var(--primary-color);
    font-weight: 700;
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 4, 6, 0.92);
    overflow: hidden;
    isolation: isolate;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px) saturate(122%);
}

.modal::before,
.modal::after {
    content: '';
    position: absolute;
    inset: -20%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.modal.show:not(.hover-preview)::before,
.modal.show:not(.hover-preview)::after {
    opacity: 1;
}

.modal.show:not(.hover-preview)::before {
    background:
        radial-gradient(circle at 18% 20%, rgba(220, 20, 60, 0.34) 0%, rgba(220, 20, 60, 0) 42%),
        radial-gradient(circle at 78% 68%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 36%),
        linear-gradient(128deg, rgba(26, 26, 30, 0.86) 0%, rgba(50, 50, 58, 0.65) 52%, rgba(24, 24, 28, 0.86) 100%);
    filter: blur(8px);
    animation: modalAuraDrift 14s ease-in-out infinite alternate;
}

.modal.show:not(.hover-preview)::after {
    background: repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.06) 0 1px, rgba(255, 255, 255, 0) 1px 20px);
    mix-blend-mode: screen;
    animation: modalShimmerSweep 10s linear infinite;
}

.modal.hover-preview {
    pointer-events: none;
    background-color: rgba(6, 6, 8, 0.82);
    backdrop-filter: blur(4px) saturate(120%);
    overflow: hidden;
}

.modal.hover-preview .close,
.modal.hover-preview .modal-nav,
.modal.hover-preview .modal-side-zone {
    display: none;
}

.modal.hover-preview::before,
.modal.hover-preview::after {
    content: '';
    position: absolute;
    inset: -20%;
    pointer-events: none;
}

.modal.hover-preview::before {
    background:
        radial-gradient(circle at 20% 25%, rgba(220, 20, 60, 0.28) 0%, rgba(220, 20, 60, 0) 42%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 36%);
    filter: blur(10px);
    animation: hoverAuraDrift 9s ease-in-out infinite alternate;
}

.modal.hover-preview::after {
    background: linear-gradient(130deg, rgba(220, 20, 60, 0.16), rgba(44, 44, 44, 0.1), rgba(220, 20, 60, 0.14));
    mix-blend-mode: screen;
    animation: hoverShimmer 6s linear infinite;
}

.modal.hover-preview .modal-image {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: hoverImagePop 0.3s ease;
}

.modal.hover-preview .modal-content {
    width: min(94vw, 1180px);
    height: min(88vh, 760px);
    max-width: none;
    max-height: none;
    position: relative;
    z-index: 2;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    text-align: center;
    z-index: 2;
}

.modal.show:not(.hover-preview) .modal-content {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    padding: 14px 14px 18px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(220, 20, 60, 0.18);
    touch-action: pan-y;
    overflow: hidden;
}

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), filter 0.28s ease;
}

.close {
    position: absolute;
    right: 30px;
    top: 10px;
    font-size: 2rem;
    color: var(--secondary-color);
    cursor: pointer;
    z-index: 2001;
}

.close:hover {
    color: var(--accent-color);
}

.modal-caption {
    color: var(--secondary-color);
    margin-top: 20px;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.modal.show:not(.hover-preview) .modal-caption {
    margin-top: 14px;
    background: linear-gradient(140deg, rgba(220, 20, 60, 0.88), rgba(136, 14, 41, 0.84));
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 12px;
    padding: 10px 12px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}

.modal.swipe-ready {
    --swipe-delta: 0px;
    --swipe-tilt: 0deg;
    --swipe-overlay-opacity: 0.18;
}

.modal.swipe-ready .modal-content::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(120deg, rgba(220, 20, 60, var(--swipe-overlay-opacity)), rgba(220, 20, 60, 0));
    transition: opacity 0.24s ease;
}

.modal.swipe-ready.is-swiping .modal-content::after {
    opacity: 1;
}

.modal.swipe-ready .modal-image,
.modal.swipe-ready .modal-caption {
    transform: translate3d(var(--swipe-delta), 0, 0);
}

.modal.swipe-ready .modal-image {
    transform: translate3d(var(--swipe-delta), 0, 0) rotate(var(--swipe-tilt));
    filter: saturate(1.03);
}

.modal.swipe-ready.swipe-no-transition .modal-image,
.modal.swipe-ready.swipe-no-transition .modal-caption,
.modal.swipe-ready.swipe-no-transition .modal-content::after {
    transition: none !important;
}

.modal.swipe-ready.swipe-commit-left .modal-image,
.modal.swipe-ready.swipe-commit-left .modal-caption {
    transform: translate3d(-180px, 0, 0);
    opacity: 0;
}

.modal.swipe-ready.swipe-commit-right .modal-image,
.modal.swipe-ready.swipe-commit-right .modal-caption {
    transform: translate3d(180px, 0, 0);
    opacity: 0;
}

.modal.swipe-ready.swipe-wow .modal-content {
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(220, 20, 60, 0.18), 0 0 30px rgba(220, 20, 60, 0.26);
}

.modal-caption-title {
    font-weight: 700;
}

.modal-caption-subtitle {
    opacity: 0.92;
    font-size: 0.95rem;
    line-height: 1.45;
}

.modal.hover-preview .modal-caption {
    position: absolute;
    left: 24px;
    bottom: 24px;
    margin: 0;
    text-align: left;
    background: linear-gradient(140deg, rgba(220, 20, 60, 0.95), rgba(176, 14, 49, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 12px;
    padding: 14px 16px;
    max-width: min(560px, calc(100% - 48px));
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
    display: flex;
    z-index: 3;
}

.modal-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.modal-side-zone {
    position: absolute;
    top: 12px;
    bottom: 92px;
    width: clamp(72px, 15%, 120px);
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 4;
    opacity: 0;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.modal-side-zone::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.28s ease;
}

.modal-side-zone::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: linear-gradient(140deg, rgba(220, 20, 60, 0.92), rgba(147, 16, 45, 0.86));
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-size: 28px;
    line-height: 44px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.modal-side-zone-prev {
    left: 12px;
}

.modal-side-zone-prev::before {
    background: linear-gradient(90deg, rgba(220, 20, 60, 0.2) 0%, rgba(220, 20, 60, 0) 100%);
}

.modal-side-zone-prev::after {
    content: '‹';
}

.modal-side-zone-next {
    right: 12px;
}

.modal-side-zone-next::before {
    background: linear-gradient(270deg, rgba(220, 20, 60, 0.2) 0%, rgba(220, 20, 60, 0) 100%);
}

.modal-side-zone-next::after {
    content: '›';
}

.modal.show:not(.hover-preview) .modal-content:hover .modal-side-zone,
.modal.show:not(.hover-preview) .modal-side-zone:focus-visible {
    opacity: 1;
}

.modal.show:not(.hover-preview) .modal-content:hover .modal-side-zone::before,
.modal.show:not(.hover-preview) .modal-side-zone:hover::before,
.modal.show:not(.hover-preview) .modal-side-zone:focus-visible::before,
.modal.show:not(.hover-preview) .modal-content:hover .modal-side-zone::after,
.modal.show:not(.hover-preview) .modal-side-zone:hover::after,
.modal.show:not(.hover-preview) .modal-side-zone:focus-visible::after {
    opacity: 1;
}

.modal.show:not(.hover-preview) .modal-side-zone:hover::after,
.modal.show:not(.hover-preview) .modal-side-zone:focus-visible::after {
    transform: translate(-50%, -50%) scale(1.06);
}

.modal-btn {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border: none;
    padding: 10px 20px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 5px;
    transition: var(--transition);
}

.modal-btn:hover {
    background-color: #B00E31;
}

.modal.show:not(.hover-preview) .modal-btn {
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

@keyframes modalAuraDrift {
    0% {
        transform: translate3d(-1.5%, -1%, 0) scale(1);
    }
    100% {
        transform: translate3d(1.5%, 1.2%, 0) scale(1.08);
    }
}

@keyframes modalShimmerSweep {
    0% {
        transform: translateX(-6%);
    }
    100% {
        transform: translateX(6%);
    }
}

@keyframes hoverAuraDrift {
    0% {
        transform: translate3d(-2%, -1%, 0) scale(1);
    }
    100% {
        transform: translate3d(2%, 1%, 0) scale(1.08);
    }
}

@keyframes hoverShimmer {
    0% {
        transform: translateX(-8%);
    }
    100% {
        transform: translateX(8%);
    }
}

@keyframes hoverImagePop {
    from {
        transform: scale(0.985);
        opacity: 0.92;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.contact-item {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.6s ease forwards;
    padding: 15px;
    border-radius: 8px;
    transition: var(--transition);
}

.contact-item:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-item:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-item:nth-child(3) {
    animation-delay: 0.3s;
}

.contact-item:nth-child(4) {
    animation-delay: 0.4s;
}

.contact-item:hover {
    background-color: var(--light-gray);
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--accent-color);
    min-width: 30px;
    animation: bounce 2s ease infinite;
}

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

.contact-item p {
    color: var(--dark-gray);
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease forwards;
}

.contact-form input:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-form input:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-form input:nth-child(3) {
    animation-delay: 0.3s;
}

.contact-form textarea {
    animation-delay: 0.4s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.2);
    transform: scale(1.02);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2C2C2C 50%, #1a1a1a 100%);
    color: var(--secondary-color);
    margin-top: 80px;
    padding: 0;
}

.footer-container {
    padding: 50px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(240px, 1.8fr) minmax(420px, 3fr) auto;
    gap: 32px;
    align-items: start;
}

.footer-brand h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #ffffff 0%, #DC143C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-logo-img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
    border: 2px solid rgba(220, 20, 60, 0.3);
    margin-bottom: 12px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

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

.footer-col {
    min-width: 0;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 12px 0;
    color: var(--secondary-color);
}

.footer-hours-table {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    padding: 4px 0;
    border-bottom: 1px solid rgba(220, 20, 60, 0.1);
}

.hour-row span {
    font-weight: 600;
    min-width: 40px;
}

.hour-row strong {
    color: var(--accent-color);
    font-weight: 700;
}

.footer-btn {
    display: inline-block;
    padding: 10px 16px;
    background: rgba(220, 20, 60, 0.2);
    border: 1px solid var(--accent-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-btn:hover {
    background: rgba(220, 20, 60, 0.4);
    transform: translateY(-2px);
}

.footer-socials {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    align-items: flex-start;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 20, 60, 0.15);
    border: 1px solid rgba(220, 20, 60, 0.3);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-4px);
}

.footer-divider {
    height: 1px;
    background: rgba(220, 20, 60, 0.2);
    margin: 40px 0;
}

.footer-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.service-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(220, 20, 60, 0.12);
    border: 1px solid rgba(220, 20, 60, 0.3);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-badge:hover {
    background: rgba(220, 20, 60, 0.25);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.footer-small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    font-style: italic;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 15px;
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.3);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: rgba(220, 20, 60, 0.25);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.2);
}

.footer-hours {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    display: none;
}

.footer-middle {
    display: none;
}

.footer-features {
    display: none;
}



/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        z-index: 1201;
        padding: 10px;
        gap: 7px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--secondary-color);
        padding: 20px;
        gap: 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border-color);
        z-index: 1200;
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-menu li {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .logo-img {
        height: 40px;
    }

    .hero {
        padding: 70px 0 72px;
        min-height: calc(82vh - 62px);
    }

    .about-main,
    .services,
    .gallery,
    .contact,
    .location {
        padding: 55px 0;
    }

    .about-hero {
        padding: 56px 0;
    }

    .section-title {
        margin-bottom: 34px;
    }

    .section-title h2 {
        line-height: 1.3;
        font-size: 1.95rem;
    }

    .hero-logo-img {
        height: 92px;
        width: 92px;
    }

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

    .hero-content p {
        font-size: 1.08rem;
    }

    .hero-description {
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

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

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

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

    .contact-info {
        gap: 16px;
    }

    .contact-item {
        padding: 12px 10px;
    }

    .contact-form {
        gap: 14px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
        padding: 12px 14px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .gallery-grid.masonry {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        grid-auto-rows: 180px;
        gap: 12px;
    }

    .gallery-filters {
        gap: 8px;
        margin: 30px 0 40px 0;
    }

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

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

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .service-preview {
        height: 200px;
    }

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

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

    .footer-socials {
        justify-content: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-services {
        justify-content: center;
    }

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

    .mobile-break {
        display: block;
    }
}

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

    .logo-img {
        height: 35px;
    }

    .hero {
        padding: 56px 0 58px;
        min-height: calc(72vh - 56px);
    }

    .about-main,
    .services,
    .gallery,
    .contact,
    .location {
        padding: 42px 0;
    }

    .about-hero {
        padding: 46px 0;
    }

    .hero-logo-img {
        height: 78px;
        width: 78px;
    }

    .hero-content h1 {
        font-size: 2.05rem;
        margin-bottom: 5px;
    }

    .hero-content p {
        font-size: 0.98rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-description p {
        margin-bottom: 10px;
    }

    .hero-buttons {
        gap: 8px;
    }

    .btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

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

    .stat {
        padding: 20px 15px;
    }

    .stat h4 {
        font-size: 1.3rem;
    }

    .stat p {
        font-size: 0.9rem;
    }

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

    .section-title {
        margin-bottom: 24px;
    }

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

    .gallery-grid.masonry {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        grid-auto-rows: 150px;
        gap: 10px;
    }

    .gallery-filters {
        gap: 6px;
        margin: 25px 0 30px 0;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .gallery-info h4 {
        font-size: 0.95rem;
    }

    .gallery-info p {
        font-size: 0.8rem;
    }

    .gallery-cta {
        margin-top: 30px;
        padding: 25px 15px;
    }

    .gallery-cta h3 {
        font-size: 1.3rem;
    }

    .gallery-cta p {
        font-size: 0.9rem;
    }

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

    .testimonial-card {
        padding: 20px;
    }

    .service-preview {
        height: 180px;
    }

    .service-card h3 {
        font-size: 1rem;
        margin: 12px 16px 8px 16px;
    }

    .service-card p {
        font-size: 0.9rem;
        margin: 0 16px 16px 16px;
    }

    .footer-container {
        padding: 30px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .footer-brand h2 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .footer-brand p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .footer-logo-img {
        height: 55px;
        width: 55px;
        margin-bottom: 10px;
    }

    .footer-info {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: left;
    }

    .footer-col {
        padding: 12px 0;
        border-bottom: 1px solid rgba(220, 20, 60, 0.2);
    }

    .footer-col h4 {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .footer-col p {
        font-size: 12px;
        line-height: 1.5;
    }

    .hour-row {
        font-size: 11px;
        padding: 4px 0;
    }

    .service-badge {
        padding: 6px 12px;
        font-size: 12px;
        display: inline-block;
        margin: 4px 4px;
    }

    .footer-btn {
        padding: 10px 14px;
        font-size: 13px;
        margin-top: 8px;
    }

    .footer-bottom p {
        font-size: 12px;
        margin-top: 20px;
    }

    .footer-socials {
        justify-content: center;
        gap: 15px;
        margin-top: 15px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .modal-image {
        max-height: 70vh;
    }

    .modal-side-zone {
        opacity: 0.9;
        width: clamp(62px, 18%, 100px);
        bottom: 82px;
    }

    .modal-side-zone::after {
        opacity: 1;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 24px;
    }

    .modal.hover-preview .modal-content {
        width: min(95vw, 680px);
        height: min(74vh, 520px);
    }

    .modal.hover-preview .modal-caption {
        left: 14px;
        right: 14px;
        bottom: 14px;
        max-width: none;
        padding: 10px 12px;
        border-radius: 10px;
    }

    .modal.hover-preview .modal-caption-title {
        font-size: 0.95rem;
    }

    .modal.hover-preview .modal-caption-subtitle {
        font-size: 0.82rem;
        line-height: 1.35;
    }

    .product-card {
        padding: 30px 20px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes gradientMove {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, 50px);
    }
}

@keyframes heroBlobFloat {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    100% {
        transform: translate3d(-4%, 5%, 0) scale(1.08);
    }
}

@keyframes heroContentReveal {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heroTitleReveal {
    from {
        opacity: 0;
        transform: translateY(14px);
        letter-spacing: 0.2px;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 1.4px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 15px;
    }

    .hero-logo-img {
        height: 60px;
        width: 60px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .footer-brand h2 {
        font-size: 20px;
    }

    .footer-col h4 {
        font-size: 12px;
    }

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

    .service-badge {
        padding: 4px 8px;
        font-size: 10px;
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(220, 20, 60, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(220, 20, 60, 0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}
.fade-in {
    animation: fadeInUp 0.6s ease;
}

/* Smooth scrolling for anchor links */
a[href^="#"] {
    scroll-behavior: smooth;
}

body.subpage-modern {
    background:
        radial-gradient(circle at 12% 16%, rgba(220, 20, 60, 0.1) 0%, rgba(220, 20, 60, 0) 36%),
        radial-gradient(circle at 88% 78%, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0) 42%),
        linear-gradient(135deg, #f7f8fb 0%, #ffffff 52%, #f8f9fc 100%);
    color: var(--text-color);
}

body.subpage-modern .navbar {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(220, 20, 60, 0.12);
}

body.subpage-modern .logo-text,
body.subpage-modern .nav-menu a {
    color: var(--primary-color);
}

body.subpage-modern .menu-toggle span {
    background-color: var(--primary-color);
}

body.subpage-modern .about-hero {
    background:
        radial-gradient(circle at 18% 20%, rgba(220, 20, 60, 0.3) 0%, rgba(220, 20, 60, 0) 40%),
        radial-gradient(circle at 84% 75%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 38%),
        linear-gradient(128deg, #1f1f23 0%, #37373e 54%, #2a2a31 100%);
    position: relative;
    overflow: hidden;
}

body.subpage-modern .about-hero::before {
    content: '';
    position: absolute;
    inset: -24%;
    background: repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.04) 0 2px, rgba(255, 255, 255, 0) 2px 24px);
    mix-blend-mode: screen;
    pointer-events: none;
}

body.subpage-modern .about-hero > .container {
    position: relative;
    z-index: 1;
}

body.subpage-modern .about-main,
body.subpage-modern .services,
body.subpage-modern .gallery-modern,
body.subpage-modern .location,
body.subpage-modern .contact,
body.subpage-modern .testimonials-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 253, 0.98)) !important;
}

body.subpage-modern .gallery-modern {
    background: #ffffff !important;
}

body.subpage-modern .section-title h2,
body.subpage-modern .about-intro h2,
body.subpage-modern .location-info h3,
body.subpage-modern .service-card h3,
body.subpage-modern .contact-item h4,
body.subpage-modern .stat-card h4,
body.subpage-modern .gallery-cta h3,
body.subpage-modern .testimonial-author strong {
    color: var(--primary-color);
}

body.subpage-modern .section-subtitle,
body.subpage-modern .about-intro p,
body.subpage-modern .service-card p,
body.subpage-modern .location-info p,
body.subpage-modern .contact-item p,
body.subpage-modern .contact-item a,
body.subpage-modern .stat-items span,
body.subpage-modern .testimonial-text,
body.subpage-modern .testimonial-author span {
    color: var(--dark-gray);
}

body.subpage-modern .about-intro,
body.subpage-modern .service-card,
body.subpage-modern .stat-card,
body.subpage-modern .location-info,
body.subpage-modern .contact-item,
body.subpage-modern .contact-form,
body.subpage-modern .gallery-cta,
body.subpage-modern .testimonial-card {
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(252, 252, 254, 0.96)) padding-box,
        linear-gradient(145deg, rgba(220, 20, 60, 0.28), rgba(220, 20, 60, 0.06), rgba(44, 44, 44, 0.12)) border-box;
    border: 1px solid transparent;
    box-shadow: 0 14px 34px rgba(36, 36, 40, 0.09);
}

body.subpage-modern .service-card,
body.subpage-modern .stat-card,
body.subpage-modern .testimonial-card,
body.subpage-modern .contact-item,
body.subpage-modern .location-info,
body.subpage-modern .gallery-cta {
    border-radius: 16px;
}

body.subpage-modern .about-intro,
body.subpage-modern .gallery-cta,
body.subpage-modern .contact-form,
body.subpage-modern .location-info {
    padding: 28px;
}

body.subpage-modern .contact-item:hover {
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(252, 252, 254, 0.96)) padding-box,
        linear-gradient(145deg, rgba(220, 20, 60, 0.42), rgba(220, 20, 60, 0.12), rgba(44, 44, 44, 0.18)) border-box;
    border: 1px solid transparent;
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
}

body.subpage-modern .contact-form input,
body.subpage-modern .contact-form textarea {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(220, 20, 60, 0.16);
    color: var(--text-color);
}

body.subpage-modern .contact-form input::placeholder,
body.subpage-modern .contact-form textarea::placeholder {
    color: rgba(74, 74, 74, 0.78);
}

body.subpage-modern .contact-form input:focus,
body.subpage-modern .contact-form textarea:focus {
    border-color: rgba(255, 90, 125, 0.9);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.22), 0 12px 24px rgba(0, 0, 0, 0.18);
}

body.subpage-modern .service-areas li {
    color: var(--dark-gray);
}

body.subpage-modern .title-underline {
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.22);
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a1a 100%);
    color: var(--secondary-color);
    padding: 80px 0 60px;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: 2px;
}

.about-hero .lead-text {
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

.about-main {
    padding: 60px 0;
    background-color: var(--secondary-color);
}

.about-intro {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-intro h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
}

.about-intro h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.about-intro p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-overview {
    margin-bottom: 80px;
}

#services .section-title h2 {
    font-size: clamp(2rem, 2.7vw, 2.75rem);
    letter-spacing: 0.4px;
    position: relative;
    display: inline-block;
    padding: 0 14px;
}

#services .section-title h2::before {
    content: '';
    position: absolute;
    inset: -10px -16px;
    background: linear-gradient(120deg, rgba(220, 20, 60, 0.1), rgba(44, 44, 44, 0.08));
    border-radius: 14px;
    z-index: -1;
}

.services-overview h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.services-overview h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

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

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-top: 18px;
    content-visibility: auto;
    contain-intrinsic-size: 1px 980px;
}

.service-card {
    position: relative;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(251, 251, 253, 0.95)) padding-box,
        linear-gradient(145deg, rgba(220, 20, 60, 0.3), rgba(220, 20, 60, 0.08), rgba(44, 44, 44, 0.16)) border-box;
    border: 1px solid transparent;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.45) inset;
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.42s ease, filter 0.42s ease;
    display: flex;
    flex-direction: column;
}

.service-card.clickable-service {
    cursor: pointer;
}

.service-preview {
    position: relative;
    width: 100%;
    height: 248px;
    overflow: hidden;
    background: #f0f0f0;
}

.service-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.34), rgba(10, 10, 10, 0.03) 42%, transparent 72%);
    pointer-events: none;
}

.service-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(130deg, rgba(220, 20, 60, 0.62), rgba(100, 14, 36, 0.5), rgba(18, 18, 24, 0.58));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.45s ease;
}

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

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

.view-more {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.65);
    padding: 10px 22px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(2px);
    transition: all 0.3s ease;
}

.service-card.clickable-service:hover .view-more {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    border-radius: 0;
    background: linear-gradient(90deg, rgba(220, 20, 60, 0.95), rgba(220, 20, 60, 0.35), rgba(44, 44, 44, 0.75));
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: -40% -20%;
    background: radial-gradient(circle at 10% 10%, rgba(220, 20, 60, 0.16), rgba(220, 20, 60, 0) 58%);
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 46px rgba(0, 0, 0, 0.16), 0 0 28px rgba(220, 20, 60, 0.22);
    filter: saturate(1.03);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card h3 {
    font-size: 1.2rem;
    line-height: 1.35;
    color: var(--primary-color);
    margin: 16px 24px 10px 24px;
    font-weight: 800;
}

.service-card p {
    color: var(--dark-gray);
    font-size: 0.96rem;
    line-height: 1.7;
    margin: 0 24px 24px 24px;
    flex-grow: 1;
}

.service-item {
    background-color: transparent;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(220, 20, 60, 0.2);
    animation: fadeInUp 0.6s ease forwards;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }

.service-item:hover {
    background-color: rgba(220, 20, 60, 0.03);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-item p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
    padding: 0;
}

.stat-card {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #EEEEEE;
    background: linear-gradient(145deg, rgba(220, 20, 60, 0.86), rgba(148, 15, 46, 0.82));
    border: 1px solid rgba(255, 255, 255, 0.24);
    position: relative;
}
    border-radius: 12px;
.stat-card::before {
    font-size: 22px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.social-icon i {
    font-size: 24px;
    line-height: 1;
}

.social-icon-instagram {
    background: linear-gradient(145deg, #f56040, #e1306c 50%, #833ab4);
}

.social-icon-facebook {
    background: linear-gradient(145deg, #3b82f6, #2563eb);
}

.social-icon-tiktok {
    background: linear-gradient(145deg, #0f0f10, #1f1f22);
    top: 0;
    left: 0;
    height: 4px;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32), 0 0 22px rgba(220, 20, 60, 0.35);
    filter: saturate(1.08);

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.stat-card h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 800;
}

.stat-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-items span {
    font-size: 0.98rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.about-cta {
    background: linear-gradient(135deg, var(--accent-color) 0%, #FF1493 100%);
    color: var(--secondary-color);
    padding: 60px;
    border-radius: 8px;
    text-align: center;
}

.about-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.about-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .carousel-item {
        flex: 0 0 calc(100% - 10px);
    }

    .carousel-item img {
        height: 250px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

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

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

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

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

    .about-hero .lead-text {
        font-size: 1.1rem;
    }

    .about-intro h2,
    .services-overview h2 {
        font-size: 1.8rem;
    }

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

    .service-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-card {
        padding: 0;
        border-radius: 14px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
    }

    .service-preview {
        height: 220px;
    }

    #services .section-title h2 {
        font-size: 1.9rem;
        line-height: 1.2;
        padding: 0 8px;
    }

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

    .stats-section {
        padding: 30px;
    }

    .about-cta {
        padding: 40px 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons a {
        width: 100%;
    }
}