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

:root {
    --primary-blue: #4A90E2;
    --light-blue: #E8F4F8;
    --dark-blue: #0f2442;
    --darker-blue: #0a1a2e;
    --accent-blue: #6BB6FF;
    --white: #FFFFFF;
    --text-dark: #0f2442;
    --text-light: #2C5F8D;
    --text-muted: #5A7A9A;
    --success: #27AE60;
    --error: #E74C3C;
    --shadow: rgba(15, 36, 66, 0.1);
    --shadow-hover: rgba(15, 36, 66, 0.2);
    --card-bg: #FFFFFF;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    padding-top: 80px;
    min-height: 100vh;
}

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

/* Fixed Header */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(15, 36, 66, 0.1);
    animation: slideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(15, 36, 66, 0.1);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.fixed-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--dark-blue);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar {
    padding: 1.2rem 0;
    position: relative;
    transition: padding 0.3s ease;
}

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

.logo {
    position: relative;
    z-index: 10;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--dark-blue);
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.logo a:hover {
    opacity: 0.8;
}


.logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: opacity 0.3s ease;
    padding: 4px;
}

.logo a:hover .logo-image {
    opacity: 0.9;
}

.logo-text {
    color: var(--dark-blue);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 10px 18px;
    border-radius: 8px;
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--dark-blue);
    border-radius: 2px 2px 0 0;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--dark-blue);
}

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

.nav-link:active {
    transform: translateY(0);
}

.nav-link.active {
    color: var(--dark-blue);
    font-weight: 700;
}

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

.btn-order {
    background: var(--dark-blue);
    color: var(--white) !important;
    padding: 12px 28px !important;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 36, 66, 0.2);
    position: relative;
    overflow: hidden;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 2px solid var(--dark-blue);
}

.btn-order::after {
    display: none;
}

.btn-order:hover {
    background: var(--darker-blue);
    border-color: var(--darker-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 36, 66, 0.3);
}

.btn-order:active {
    transform: translateY(0);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 8px;
    -webkit-tap-highlight-color: transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
    margin-left: auto;
    order: 2;
}

.mobile-menu-toggle:hover {
    background: rgba(15, 36, 66, 0.1);
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--dark-blue);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle:hover span {
    background: var(--darker-blue);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    background: var(--white);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    pointer-events: none;
}

.hero-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.floating-element {
    position: absolute;
    color: rgba(15, 36, 66, 0.04);
    font-size: 4rem;
    animation: floatAround 20s infinite ease-in-out;
    opacity: 0.4;
}

.floating-element i {
    display: block;
}

.element-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    font-size: 3.5rem;
}

.element-2 {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
    font-size: 4.5rem;
}

.element-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 4s;
    font-size: 3rem;
}

.element-4 {
    top: 50%;
    right: 5%;
    animation-delay: 1s;
    font-size: 4rem;
}

.element-5 {
    bottom: 20%;
    right: 20%;
    animation-delay: 3s;
    font-size: 3.5rem;
}

.element-6 {
    top: 70%;
    left: 8%;
    animation-delay: 5s;
    font-size: 4rem;
}

.element-7 {
    top: 40%;
    left: 50%;
    animation-delay: 2.5s;
    font-size: 3.8rem;
}

.element-8 {
    bottom: 10%;
    right: 35%;
    animation-delay: 1.5s;
    font-size: 3.2rem;
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(5deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
    75% {
        transform: translate(20px, 30px) rotate(3deg);
    }
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 36, 66, 0.1);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-blue);
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge i {
    color: #FFD700;
}

.hero-title {
    font-size: 2.8rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 800;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title .title-line {
    display: block;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 500px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-feature i {
    color: var(--dark-blue);
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 1rem;
}

.hero-buttons .btn i {
    font-size: 1rem;
}


.hero-image-section {
    position: relative;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    padding: 20px;
}

.hero-image-card {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(15, 36, 66, 0.15);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid var(--light-blue);
    animation: cardFloat 8s ease-in-out infinite;
}

.hero-image-card.card-1 {
    grid-column: 1;
    grid-row: 1 / 3;
    animation-delay: 0s;
    transform: rotate(-8deg) translateY(-10px);
    z-index: 1;
}

.hero-image-card.card-2 {
    grid-column: 2;
    grid-row: 1;
    animation-delay: 1.5s;
    transform: rotate(6deg) translateX(10px);
    z-index: 2;
}

.hero-image-card.card-3 {
    grid-column: 2;
    grid-row: 2;
    animation-delay: 3s;
    transform: rotate(-5deg) translateX(-10px) translateY(10px);
    z-index: 3;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0) rotate(var(--rotate, 0deg)) translateX(0);
    }
    33% {
        transform: translateY(-8px) rotate(calc(var(--rotate, 0deg) + 1deg)) translateX(3px);
    }
    66% {
        transform: translateY(5px) rotate(calc(var(--rotate, 0deg) - 1deg)) translateX(-3px);
    }
}

.hero-image-card.card-1:hover {
    transform: scale(1.05) rotate(-5deg) translateY(-5px) !important;
    z-index: 10 !important;
    box-shadow: 0 20px 60px rgba(15, 36, 66, 0.25);
}

.hero-image-card.card-2:hover {
    transform: scale(1.05) rotate(4deg) translateX(5px) !important;
    z-index: 10 !important;
    box-shadow: 0 20px 60px rgba(15, 36, 66, 0.25);
}

.hero-image-card.card-3:hover {
    transform: scale(1.05) rotate(-3deg) translateX(-5px) translateY(5px) !important;
    z-index: 10 !important;
    box-shadow: 0 20px 60px rgba(15, 36, 66, 0.25);
}

.hero-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image-card:hover .hero-card-image {
    transform: scale(1.1);
}

.hero-image-card .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-blue), var(--white));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--dark-blue);
    position: relative;
    overflow: hidden;
    gap: 1rem;
}

.hero-image-card .image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(15, 36, 66, 0.08) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.image-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--dark-blue);
    color: var(--white);
    border: 2px solid var(--dark-blue);
}

.btn-primary:hover {
    background: var(--darker-blue);
    border-color: var(--darker-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(15, 36, 66, 0.3);
}

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

.btn-secondary:hover {
    background: var(--dark-blue);
    color: var(--white);
    border-color: var(--dark-blue);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 20px;
}

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

.section-description {
    font-size: 1.05rem;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 1.5rem auto 3rem;
    line-height: 1.7;
}

/* Services Slider */
.services-slider-section {
    background: var(--white);
    position: relative;
}

.services-slider-container {
    position: relative;
    margin: 3rem 0;
    padding: 2.5rem 4rem;
    overflow: hidden;
}

.services-slider {
    display: flex;
    gap: 1.8rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding: 0.5rem 0;
}

.service-card-slider {
    flex: 0 0 calc(25% - 1.35rem);
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(15, 36, 66, 0.12);
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(15, 36, 66, 0.1);
    margin: 0.5rem 0;
}

.service-card-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 36, 66, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.service-card-slider:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(15, 36, 66, 0.2);
    border-color: rgba(15, 36, 66, 0.2);
}

.service-card-slider:hover::before {
    opacity: 1;
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--light-blue);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-slider:hover .service-image {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(15, 36, 66, 0.25) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

.service-content {
    padding: 1.75rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    background: var(--white);
    z-index: 2;
    justify-content: center;
}

.service-content h3 {
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    transition: color 0.3s ease;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.service-card-slider:hover .service-content h3 {
    color: var(--primary-blue);
}

.service-content .service-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--dark-blue);
    color: var(--dark-blue);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 6px 20px rgba(15, 36, 66, 0.15);
    font-size: 1.1rem;
}

.slider-nav:hover {
    background: var(--dark-blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(15, 36, 66, 0.25);
    border-color: var(--darker-blue);
}

.slider-nav:active {
    transform: translateY(-50%) scale(1.05);
}

.slider-nav.prev-nav {
    left: 10px;
}

.slider-nav.next-nav {
    right: 10px;
}

.slider-nav i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.slider-nav:hover i {
    transform: scale(1.1);
}

/* Services Grid (for services.php page) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(15, 36, 66, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

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

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Products Section */
.products-section {
    background: var(--light-blue);
}

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

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--light-blue), var(--white));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--dark-blue);
    transition: all 0.3s ease;
}

.product-card:hover .product-image {
    background: linear-gradient(135deg, var(--light-blue), #D0E8F5);
    color: var(--darker-blue);
}

.product-info {
    padding: 1.5rem;
}

.product-info h4 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--text-light);
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-blue);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: var(--white);
    color: var(--text-dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--dark-blue);
    box-shadow: 0 0 0 3px rgba(15, 36, 66, 0.1);
}

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

select.form-control {
    cursor: pointer;
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    cursor: pointer;
    aspect-ratio: 1;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(74, 144, 226, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.about-text h3 {
    color: var(--dark-blue);
}

.about-text ul li {
    color: var(--text-light);
}

.about-image {
    background: linear-gradient(135deg, var(--light-blue), var(--white));
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--dark-blue);
    border: 2px solid var(--light-blue);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(15, 36, 66, 0.98) 0%, rgba(25, 50, 85, 0.95) 100%);
    color: var(--white);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(74, 144, 226, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(74, 144, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
    opacity: 0.3;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    position: relative;
}

.footer-about {
    max-width: 350px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
    background: linear-gradient(135deg, var(--white), rgba(255, 255, 255, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.footer-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(74, 144, 226, 0.3);
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
}

.footer-title i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-color: var(--primary-blue);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.social-link i {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.2);
}

.social-tooltip {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-blue);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 5px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.social-link:hover .social-tooltip {
    opacity: 1;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.footer-menu a::before {
    content: '';
    position: absolute;
    left: -10px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    transition: width 0.3s ease;
}

.footer-menu a:hover::before {
    width: 5px;
}

.footer-menu a i {
    font-size: 0.7rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.footer-menu a:hover {
    color: var(--white);
    transform: translateX(5px);
    padding-left: 5px;
}

.footer-menu a:hover i {
    transform: translateX(3px);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.footer-contact-item:hover {
    transform: translateX(5px);
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.2), rgba(74, 144, 226, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1rem;
    border: 1px solid rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
}

.footer-contact-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.footer-contact-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.footer-contact-value {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-value:hover {
    color: var(--primary-blue);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.footer-bottom {
    position: relative;
    z-index: 1;
}

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

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-copyright i {
    font-size: 0.8rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--white);
}

.footer-bottom-link:hover::after {
    width: 100%;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* Admin Styles */
.admin-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.admin-header {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark-blue);
}

.admin-table {
    width: 100%;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

.admin-table table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-blue);
    color: var(--text-dark);
}

.admin-table th {
    background: var(--light-blue);
    color: var(--dark-blue);
    font-weight: 600;
}

.admin-table tr:hover {
    background: var(--light-blue);
}

.status-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-completed {
    background: #d4edda;
    color: #155724;
}

/* Login Page */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
}

.login-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    max-width: 400px;
    width: 100%;
}

.login-box h2 {
    text-align: center;
    color: var(--dark-blue);
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-wrapper {
        position: relative;
        width: 100%;
    }

    .logo {
        flex: 1;
        min-width: 0;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-image {
        height: 38px;
    }

    .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
        margin-left: auto;
        flex-shrink: 0;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        width: 100%;
        padding: 1.5rem;
        box-shadow: 0 8px 30px rgba(15, 36, 66, 0.15);
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0.5rem;
        border-top: 1px solid rgba(15, 36, 66, 0.1);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
        animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
        background: var(--dark-blue);
    }

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

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
        background: var(--dark-blue);
    }
    
    .logo-image {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }

    .hero {
        padding: 60px 0 40px;
        min-height: auto;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .hero-image-section {
        min-height: 350px;
        margin-top: 1.5rem;
    }
    
    .hero-image-wrapper {
        height: 400px;
        max-width: 100%;
        gap: 15px;
        padding: 15px;
    }
    
    .hero-image-card.card-1 {
        grid-column: 1;
        grid-row: 1 / 3;
        transform: rotate(-6deg) translateY(-5px);
    }
    
    .hero-image-card.card-2 {
        grid-column: 2;
        grid-row: 1;
        transform: rotate(5deg) translateX(5px);
    }
    
    .hero-image-card.card-3 {
        grid-column: 2;
        grid-row: 2;
        transform: rotate(-4deg) translateX(-5px) translateY(5px);
    }
    
    .hero-image-card.card-1:hover {
        transform: scale(1.03) rotate(-4deg) translateY(-3px) !important;
    }
    
    .hero-image-card.card-2:hover {
        transform: scale(1.03) rotate(3deg) translateX(3px) !important;
    }
    
    .hero-image-card.card-3:hover {
        transform: scale(1.03) rotate(-2deg) translateX(-3px) translateY(3px) !important;
    }

    .hero-buttons {
        justify-content: center;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
        color: var(--dark-blue);
    }

    .section-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .why-choose-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
        padding-bottom: 15px;
    }

    .features-slider-container {
        padding: 1.5rem 1rem;
        margin: 2rem 0;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
    }

    .features-slider-container::-webkit-scrollbar {
        display: none;
    }

    .features-slider {
        gap: 1.5rem;
        padding: 0 0.5rem;
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        transform: none !important;
    }

    .features-slider::-webkit-scrollbar {
        display: none;
    }

    .feature-card-slider {
        flex: 0 0 calc(100% - 2rem);
        width: calc(100% - 2rem);
        min-width: calc(100% - 2rem);
        max-width: calc(100% - 2rem);
        min-height: 350px;
        margin: 0;
        box-sizing: border-box;
        scroll-snap-align: start;
    }

    .feature-content-wrapper {
        padding: 2.5rem 2rem;
    }

    .feature-content-wrapper h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .feature-content-wrapper p {
        font-size: 1.05rem;
        line-height: 1.8;
        color: #4a5568;
    }

    .feature-icon {
        width: 90px;
        height: 90px;
        margin: 0 auto 1.75rem;
        font-size: 2.2rem;
    }

    .features-slider-nav {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .features-slider-nav i {
        font-size: 1.2rem;
    }

    .features-prev-nav {
        left: 10px;
    }

    .features-next-nav {
        right: 10px;
    }

    .stats-section {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .stat-item {
        padding: 2rem 1.5rem;
    }

    .stat-icon-wrapper {
        margin-bottom: 1.25rem;
    }

    .stat-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }

    .stat-number {
        font-size: 2.25rem;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

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

    .about-preview-text {
        padding-right: 0;
    }

    .about-subtitle {
        font-size: 1.5rem;
    }

    .about-features-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .about-preview-image {
        height: 300px;
    }

    .about-image-badge {
        bottom: 15px;
        right: 15px;
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
    }

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

    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-hero-description {
        font-size: 1rem;
    }

    .contact-content-wrapper {
        flex-direction: column;
        gap: 3rem;
    }
    
    .contact-info-section {
        width: 100%;
        gap: 1.75rem;
    }
    
    .contact-form-section {
        width: 100%;
        margin-top: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .contact-info-cards {
        gap: 1.25rem;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .contact-image-wrapper {
        height: 250px;
    }

    .contact-form-section {
        padding: 2rem 1.5rem;
    }

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

    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .cta-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-features {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .cta-feature {
        font-size: 0.9rem;
    }

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

    .btn-large {
        width: 100%;
        max-width: 300px;
        padding: 16px 30px;
        font-size: 1rem;
    }

    .services-slider-container {
        padding: 1.5rem 3.5rem;
        margin: 2rem 0;
    }

    .service-card-slider {
        flex: 0 0 calc(100% - 1rem);
        min-height: 350px;
    }

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

    .service-content {
        padding: 1.5rem 1.25rem;
    }

    .service-content h3 {
        font-size: 1.15rem;
        margin-bottom: 0.625rem;
    }

    .service-content .service-description {
        font-size: 0.85rem;
    }

    .slider-nav {
        width: 45px;
        height: 45px;
    }

    .slider-nav.prev-nav {
        left: 5px;
    }

    .slider-nav.next-nav {
        right: 5px;
    }

    .slider-nav i {
        font-size: 1.1rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .services-slider-container {
        padding: 2rem 3.5rem;
    }

    .service-card-slider {
        flex: 0 0 calc(50% - 0.9rem);
        min-height: 370px;
    }
    
    .service-image-wrapper {
        height: 230px;
    }

    .service-content {
        padding: 1.625rem 1.5rem;
    }

    .slider-nav.prev-nav {
        left: 10px;
    }

    .slider-nav.next-nav {
        right: 10px;
    }

    .features-slider-container {
        padding: 2.5rem 4.5rem;
    }

    .feature-card-slider {
        flex: 0 0 calc(33.333% - 1.2rem);
        min-height: 380px;
    }

    .features-prev-nav {
        left: 10px;
    }

    .features-next-nav {
        right: 10px;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .why-choose-section {
        padding: 2rem 0;
    }

    .appointment-hero-section {
        padding: 100px 0 50px;
    }

    .appointment-hero-content {
        padding: 0 1rem;
    }

    .appointment-hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .appointment-hero-description {
        font-size: 0.95rem;
    }

    .appointment-section {
        padding: 3rem 0;
    }

    .appointment-content-wrapper {
        grid-template-columns: none !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem;
    }

    .appointment-section {
        overflow: visible !important;
    }

    .appointment-content-wrapper {
        overflow: visible !important;
    }

    .appointment-info-section {
        order: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
        position: static !important;
        visibility: visible !important;
        opacity: 1 !important;
        display: block !important;
    }

    .appointment-form-section {
        order: 2 !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
        visibility: visible !important;
        opacity: 1 !important;
        display: block !important;
    }

    .appointment-info-header {
        margin-bottom: 1.5rem;
    }

    .appointment-info-title {
        font-size: 1.5rem;
    }

    .appointment-info-subtitle {
        font-size: 0.85rem;
    }

    .appointment-info-cards {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .appointment-info-card {
        padding: 1.25rem;
        gap: 0.875rem;
    }

    .appointment-info-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.1rem;
    }

    .appointment-info-content h3 {
        font-size: 1rem;
    }

    .appointment-info-content p {
        font-size: 0.85rem;
    }

    .appointment-image-wrapper {
        margin-top: 1rem;
    }

    .appointment-image {
        height: 250px;
    }

    .appointment-form-section {
        padding: 1.75rem 1rem;
        border-radius: 12px;
    }

    .appointment-form-header {
        margin-bottom: 1.25rem;
    }

    .appointment-form-title {
        font-size: 1.5rem;
    }

    .appointment-form-subtitle {
        font-size: 0.85rem;
    }

    .appointment-form {
        gap: 1.25rem;
    }

    .appointment-form .form-row {
        gap: 1rem;
        display: flex !important;
        flex-direction: column !important;
    }

    .appointment-form .form-group {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
    }

    .appointment-form .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        width: 100% !important;
        display: flex !important;
    }

    .appointment-form .form-group small {
        width: 100% !important;
        display: block !important;
        box-sizing: border-box !important;
    }

    .appointment-form #availability-warning,
    .appointment-form #availability-success {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .appointment-form .form-control {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
        box-sizing: border-box !important;
    }

    .appointment-form textarea.form-control {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .appointment-form select.form-control {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .appointment-submit-btn {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
        box-sizing: border-box !important;
    }

    .appointment-alert {
        padding: 0.875rem 1rem;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.5rem;
        padding-bottom: 10px;
    }

    .section-description {
        font-size: 0.85rem;
        padding: 0 1rem;
    }

    .features-slider-container {
        padding: 1rem 0.75rem;
        margin: 1.5rem 0;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
    }

    .features-slider-container::-webkit-scrollbar {
        display: none;
    }

    .features-slider {
        gap: 1.5rem;
        padding: 0 0.5rem;
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        transform: none !important;
    }

    .features-slider::-webkit-scrollbar {
        display: none;
    }

    .feature-card-slider {
        flex: 0 0 calc(100% - 2rem);
        width: calc(100% - 2rem);
        min-width: calc(100% - 2rem);
        max-width: calc(100% - 2rem);
        min-height: 340px;
        margin: 0;
        box-sizing: border-box;
        scroll-snap-align: start;
    }

    .feature-content-wrapper {
        padding: 2.25rem 1.75rem;
    }

    .feature-content-wrapper h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .feature-content-wrapper p {
        font-size: 1rem;
        line-height: 1.75;
        color: #4a5568;
    }

    .feature-icon {
        width: 85px;
        height: 85px;
        margin: 0 auto 1.5rem;
        font-size: 2.1rem;
    }

    .features-slider-nav {
        width: 45px;
        height: 45px;
        font-size: 0.95rem;
        display: flex; /* Show nav buttons on mobile */
    }

    .features-slider-nav i {
        font-size: 1rem;
    }

    .features-prev-nav {
        left: 5px;
    }

    .features-next-nav {
        right: 5px;
    }

    /* Services Page Mobile Styles */
    .services-hero-section {
        min-height: 300px;
        padding: 70px 0 30px;
    }

    .services-hero-title {
        font-size: 1.75rem;
    }

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

    .services-main-section {
        padding: 1.5rem 0 2rem;
    }

    .services-main-section .container {
        padding: 0 0.75rem;
    }

    .services-controls {
        padding: 0;
        margin-bottom: 1.5rem;
    }

    .services-search-input {
        padding: 0.75rem 0.75rem 0.75rem 2.75rem;
        font-size: 0.85rem;
    }

    .services-search-wrapper i {
        left: 0.875rem;
        font-size: 0.95rem;
    }

    .services-filter-btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
    }

    .products-grid-premium {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
        padding: 0 0.75rem;
        margin-top: 1.25rem;
        display: grid !important;
    }

    .product-card-premium {
        opacity: 1 !important;
        transform: scale(1) !important;
        visibility: visible !important;
        display: block !important;
    }

    .product-image-wrapper {
        height: 200px;
    }

    .product-info {
        padding: 1.25rem;
    }

    .product-title {
        font-size: 1.15rem;
    }

    .product-description {
        font-size: 0.85rem;
    }

    .product-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    /* Gallery Page Mobile Styles */
    .gallery-hero-section {
        min-height: 350px;
        padding: 70px 0 30px;
    }

    .gallery-hero-title {
        font-size: 1.75rem;
    }

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

    .gallery-main-section {
        padding: 1.5rem 0 2rem;
    }

    .gallery-main-section .container {
        padding: 0 0.75rem;
    }

    .gallery-controls {
        padding: 0;
        margin-bottom: 1.5rem;
    }

    .gallery-search-input {
        padding: 0.75rem 0.75rem 0.75rem 2.75rem;
        font-size: 0.85rem;
    }

    .gallery-search-wrapper i {
        left: 0.875rem;
        font-size: 0.95rem;
    }

    .filter-btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
    }

    .gallery-grid-premium {
        gap: 1.25rem;
        padding: 0 0.75rem;
        margin-top: 1.25rem;
    }

    .gallery-image-wrapper {
        height: 220px;
    }

    .gallery-item-info {
        padding: 1.25rem;
    }

    .gallery-item-title {
        font-size: 1.15rem;
    }

    .gallery-item-description {
        font-size: 0.85rem;
    }

    /* About Page Small Mobile Styles */
    .about-hero-section {
        padding: 40px 0 25px;
    }

    .about-hero-title {
        font-size: 1.5rem;
    }

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

    .footer {
        padding: 2.5rem 0 1.25rem;
        margin-top: 1.5rem;
    }

    .footer .container {
        padding: 0 0.75rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 1.75rem;
    }

    .footer-section {
        width: 100%;
    }

    .footer-logo-wrapper {
        margin-bottom: 1rem;
    }

    .footer-logo {
        width: 40px;
        height: 40px;
    }

    .footer-section h3 {
        font-size: 1.25rem;
    }

    .footer-description {
        font-size: 0.85rem;
        line-height: 1.65;
        margin-bottom: 1.25rem;
    }

    .footer-title {
        font-size: 1.05rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
    }

    .footer-title i {
        font-size: 0.95rem;
    }

    .social-links {
        gap: 0.75rem;
    }

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

    .social-link i {
        font-size: 0.95rem;
    }

    .footer-menu li {
        margin-bottom: 0.5rem;
    }

    .footer-menu a {
        font-size: 0.85rem;
        padding: 0.35rem 0;
    }

    .footer-menu a i {
        font-size: 0.6rem;
    }

    .footer-contact-item {
        margin-bottom: 1rem;
        gap: 0.75rem;
    }

    .footer-contact-icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
        font-size: 0.9rem;
    }

    .footer-contact-label {
        font-size: 0.7rem;
    }

    .footer-contact-value {
        font-size: 0.85rem;
        word-break: break-word;
    }

    .footer-divider {
        margin: 1.25rem 0;
    }

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

    .footer-copyright {
        font-size: 0.8rem;
        justify-content: center;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .footer-bottom-link {
        font-size: 0.8rem;
    }

    .footer-separator {
        font-size: 0.8rem;
    }

    .about-who-section {
        padding: 1.5rem 0;
    }

    .about-who-section .container {
        padding: 0 0.75rem;
    }

    .about-who-top-image {
        width: 100%;
        margin-bottom: 2rem;
    }

    .about-who-top-image-wrapper {
        height: 250px;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(15, 36, 66, 0.12);
    }

    .about-who-top-img {
        border-radius: 12px;
    }

    .about-who-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-who-text {
        order: 1;
        width: 100%;
    }

    .about-who-image {
        order: 2;
        width: 100%;
    }

    .about-who-title {
        font-size: 1.5rem;
    }

    .about-who-description {
        font-size: 0.9rem;
        line-height: 1.65;
        text-align: justify;
        text-justify: inter-word;
    }

    .about-image-wrapper {
        height: 280px;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(15, 36, 66, 0.1);
    }

    .about-main-image {
        border-radius: 12px;
        object-position: center;
    }

    .about-image-badge {
        bottom: 10px;
        right: 10px;
        padding: 0.5rem 0.75rem;
        font-size: 0.7rem;
        display: flex;
    }

    .about-stats-mini {
        gap: 0.75rem;
    }

    .about-stat-mini {
        padding: 0.875rem 0.5rem;
    }

    .about-stat-number {
        font-size: 1.35rem;
    }

    .about-stat-label {
        font-size: 0.7rem;
    }

    .about-image-wrapper {
        height: 300px;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(15, 36, 66, 0.12);
    }

    .about-main-image {
        border-radius: 12px;
        object-position: center;
    }

    .about-image-badge {
        bottom: 12px;
        right: 12px;
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
        display: flex;
    }

    .about-mission-section {
        padding: 2rem 0;
    }

    .about-mission-section .container {
        padding: 0 0.75rem;
    }

    .about-mission-grid {
        display: flex;
        flex-direction: column;
        gap: 1.75rem;
        width: 100%;
    }

    .mission-card {
        padding: 2.25rem 1.75rem;
        width: 100%;
        margin: 0;
        min-height: auto;
    }

    .mission-card:first-child {
        order: 1;
        margin-top: 0;
    }

    .mission-card:last-child {
        order: 2;
        margin-bottom: 0;
    }

    .mission-icon {
        width: 75px;
        height: 75px;
        font-size: 1.85rem;
        margin-bottom: 1.25rem;
    }

    .mission-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .mission-description {
        font-size: 1rem;
        line-height: 1.75;
    }

    .about-why-section {
        padding: 1.5rem 0;
    }

    .about-why-section .container {
        padding: 0 0.75rem;
    }

    .about-why-grid {
        gap: 1.25rem;
    }

    .why-card {
        padding: 1.75rem 1.25rem;
    }

    .why-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    .why-title {
        font-size: 1.15rem;
    }

    .why-description {
        font-size: 0.85rem;
    }

    .about-gallery-section {
        padding: 1.5rem 0;
    }

    .about-gallery-section .container {
        padding: 0 0.75rem;
    }

    .about-gallery-grid {
        gap: 1.25rem;
    }

    .gallery-item {
        height: 220px;
    }

    .about-cta-section {
        padding: 2rem 0;
    }

    .about-cta-section .container {
        padding: 0 0.75rem;
    }

    .about-cta-title {
        font-size: 1.5rem;
    }

    .about-cta-description {
        font-size: 0.9rem;
    }

    .about-cta-buttons .btn-large {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Very Small Mobile Devices (≤360px) */
@media (max-width: 360px) {
    .features-slider-container {
        padding: 1rem 0.5rem;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
    }

    .features-slider-container::-webkit-scrollbar {
        display: none;
    }

    .features-slider {
        gap: 1rem;
        padding: 0 0.5rem;
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        transform: none !important;
    }

    .features-slider::-webkit-scrollbar {
        display: none;
    }

    .feature-card-slider {
        flex: 0 0 calc(100% - 1rem);
        width: calc(100% - 1rem);
        min-width: calc(100% - 1rem);
        max-width: calc(100% - 1rem);
        min-height: 280px;
        box-sizing: border-box;
        scroll-snap-align: start;
    }

    .feature-content-wrapper {
        padding: 1.25rem 1rem;
    }

    .feature-content-wrapper h3 {
        font-size: 1rem;
    }

    .feature-content-wrapper p {
        font-size: 0.8rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .stats-section {
        padding: 50px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 0.75rem;
    }

    .stat-item {
        padding: 1.75rem 1.25rem;
    }

    .stat-icon-wrapper {
        margin-bottom: 1rem;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

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

@media (min-width: 1024px) and (max-width: 1399px) {
    .services-slider-container {
        padding: 2.5rem 3.5rem;
    }

    .service-card-slider {
        flex: 0 0 calc(33.333% - 1.2rem);
        min-height: 380px;
    }
    
    .service-image-wrapper {
        height: 235px;
    }

    .service-content {
        padding: 1.75rem 1.5rem;
    }

    .features-slider-container {
        padding: 2.5rem 4.5rem;
    }

    .feature-card-slider {
        flex: 0 0 calc(33.333% - 1.33rem);
        min-height: 380px;
    }

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

    .stat-item {
        padding: 2.5rem 2rem;
    }

    .contact-content-wrapper {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .contact-info-section {
        width: 100%;
        gap: 1.5rem;
    }

    .contact-form-section {
        width: 100%;
        margin-top: 1.25rem;
        padding: 2rem 1.5rem;
    }

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

    /* About Page Mobile Styles */
    .main-content {
        padding-top: 70px;
    }

    .about-hero-section {
        padding: 50px 0 30px;
        margin-top: 0;
    }

    .about-hero-content {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }

    .about-hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .about-hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .about-who-section {
        padding: 2rem 0;
        overflow-x: hidden;
    }

    .about-who-section .container {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }

    .about-who-top-image {
        width: 100%;
        margin-bottom: 2.5rem;
    }

    .about-who-top-image-wrapper {
        height: 280px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(15, 36, 66, 0.15);
    }

    .about-who-top-img {
        border-radius: 15px;
    }

    .about-who-content {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .about-who-text {
        gap: 1.5rem;
        order: 1;
        width: 100%;
    }

    .about-who-image {
        order: 2;
        width: 100%;
        margin-top: 0;
        margin-bottom: 0;
    }

    .about-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .about-who-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .about-who-description {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: justify;
        text-justify: inter-word;
    }

    .about-stats-mini {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        margin-top: 1.5rem;
        width: 100%;
        max-width: 100%;
    }

    .about-stat-mini {
        padding: 1rem 0.5rem;
        text-align: center;
        min-width: 0;
    }

    .about-stat-number {
        font-size: 1.5rem;
        line-height: 1.2;
        word-break: break-word;
    }

    .about-stat-label {
        font-size: 0.7rem;
        line-height: 1.3;
        word-break: break-word;
    }

    .about-image-wrapper {
        height: 320px;
        margin-top: 0;
        margin-bottom: 0;
        width: 100%;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(15, 36, 66, 0.15);
    }

    .about-main-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 15px;
    }

    .about-image-badge {
        bottom: 15px;
        right: 15px;
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
        opacity: 1;
        transform: translateY(0);
        display: flex;
    }

    .about-mission-section {
        padding: 2rem 0;
        overflow-x: hidden;
    }

    .about-mission-section .container {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }

    .about-mission-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
    }

    .mission-card {
        padding: 2.5rem 2rem;
        width: 100%;
        margin: 0;
        min-height: auto;
    }

    .mission-card:first-child {
        margin-top: 0;
        order: 1;
    }

    .mission-card:last-child {
        margin-bottom: 0;
        order: 2;
    }

    .mission-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .mission-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
        line-height: 1.3;
    }

    .mission-description {
        font-size: 1.05rem;
        line-height: 1.8;
    }

    .about-why-section {
        padding: 2rem 0;
        overflow-x: hidden;
    }

    .about-why-section .container {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }

    .about-why-header {
        margin-bottom: 2rem;
        width: 100%;
        max-width: 100%;
    }

    .about-why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
    }

    .why-card {
        padding: 2rem 1.5rem;
    }

    .why-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .why-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .why-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .about-gallery-section {
        padding: 2rem 0;
        overflow-x: hidden;
    }

    .about-gallery-section .container {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }

    .about-gallery-header {
        margin-bottom: 2rem;
        width: 100%;
        max-width: 100%;
    }

    .about-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
        width: 100%;
        max-width: 100%;
    }

    .gallery-item {
        height: 250px;
    }

    .about-gallery-cta {
        margin-top: 1.5rem;
    }

    .about-cta-section {
        padding: 2.5rem 0;
        overflow-x: hidden;
    }

    .about-cta-section .container {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }

    .about-cta-content {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }

    .about-cta-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .about-cta-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

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

    .about-cta-buttons .btn-large {
        width: 100%;
        max-width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    /* Better cursor styles for interactive elements */
    .btn, .btn-large, .btn-primary, .btn-secondary,
    .nav-link, .filter-btn, .services-filter-btn,
    .gallery-view-btn, .product-order-btn, .product-order-link {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    /* Prevent content overflow */
    .section, .container {
        max-width: 100%;
        overflow-x: hidden;
    }

    body, html {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }

    * {
        box-sizing: border-box;
    }

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

    .gallery-hero-section {
        min-height: 400px;
        padding: 80px 0 40px;
    }

    .gallery-hero-content {
        padding: 0 1rem;
    }

    .gallery-hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .gallery-hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .gallery-hero-stats {
        gap: 1.5rem;
    }

    .gallery-stat-number {
        font-size: 2rem;
    }

    .gallery-stat-label {
        font-size: 0.85rem;
    }

    .gallery-hero-badge {
        padding: 0.5rem 1.25rem;
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .gallery-main-section {
        padding: 2rem 0 3rem;
    }

    .gallery-main-section .container {
        padding: 0 1rem;
    }

    .gallery-controls {
        margin-bottom: 2rem;
        padding: 0;
    }

    .gallery-search-wrapper {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .gallery-search-input {
        padding: 0.875rem 0.875rem 0.875rem 3rem;
        font-size: 0.9rem;
    }

    .gallery-search-wrapper i {
        left: 1rem;
        font-size: 1rem;
    }

    .gallery-filters {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }

    .gallery-filters::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .filter-btn span {
        display: inline-block;
    }

    .gallery-grid-premium {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        margin-top: 1.5rem;
    }

    .gallery-item-premium {
        width: 100%;
        max-width: 100%;
    }

    .gallery-image-wrapper {
        height: 250px;
    }

    .gallery-item-info {
        padding: 1.5rem;
    }

    .gallery-item-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .gallery-item-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .services-hero-section {
        min-height: 350px;
        padding: 80px 0 40px;
    }

    .services-hero-content {
        padding: 0 1rem;
    }

    .services-hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .services-hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .services-hero-features {
        gap: 0.75rem;
        flex-direction: column;
        align-items: center;
    }

    .hero-feature-item {
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
    }

    .services-hero-badge {
        padding: 0.5rem 1.25rem;
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .hero-shape {
        display: none;
    }

    .services-main-section {
        padding: 2rem 0 3rem;
    }

    .services-main-section .container {
        padding: 0 1rem;
    }

    .services-controls {
        margin-bottom: 2rem;
        padding: 0;
    }

    .services-search-wrapper {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .services-search-input {
        padding: 0.875rem 0.875rem 0.875rem 3rem;
        font-size: 0.9rem;
    }

    .services-search-wrapper i {
        left: 1rem;
        font-size: 1rem;
    }

    .services-filters {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }

    .services-filters::-webkit-scrollbar {
        display: none;
    }

    .services-filter-btn {
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .services-filter-btn span {
        display: inline-block;
    }

    .products-grid-premium {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        padding: 0 1rem;
        margin-top: 1.5rem;
        display: grid !important;
    }

    .product-card-premium {
        width: 100% !important;
        max-width: 100% !important;
        opacity: 1 !important;
        transform: scale(1) !important;
        visibility: visible !important;
        display: block !important;
    }

    .product-image-wrapper {
        height: 220px;
    }

    .product-info {
        padding: 1.5rem;
    }

    .product-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .product-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }

    .product-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .appointment-hero-section {
        padding: 120px 0 60px;
    }

    .appointment-hero-title {
        font-size: 2.5rem;
    }

    .appointment-hero-description {
        font-size: 1.1rem;
    }

    .appointment-content-wrapper {
        grid-template-columns: none !important;
        grid-template-rows: none !important;
        gap: 2.5rem;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .appointment-section {
        overflow: visible !important;
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }

    .appointment-content-wrapper {
        overflow: visible !important;
        position: relative !important;
    }

    .appointment-info-section {
        position: static !important;
        order: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        z-index: 1 !important;
        visibility: visible !important;
        opacity: 1 !important;
        display: block !important;
    }

    .appointment-form-section {
        order: 2 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        position: relative !important;
        z-index: 2 !important;
        visibility: visible !important;
        opacity: 1 !important;
        display: block !important;
    }

    .appointment-info-title {
        font-size: 1.75rem;
    }

    .appointment-info-subtitle {
        font-size: 0.95rem;
    }

    .appointment-info-cards {
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    .appointment-info-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .appointment-info-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.25rem;
        margin: 0 auto;
    }

    .appointment-info-content h3 {
        font-size: 1.1rem;
    }

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

    .appointment-image-wrapper {
        margin-top: 1.5rem;
    }

    .appointment-image {
        height: 280px;
    }

    .appointment-form-section {
        padding: 2rem 1.25rem;
        border-radius: 15px;
    }

    .appointment-form-header {
        margin-bottom: 1.5rem;
    }

    .appointment-form-title {
        font-size: 1.75rem;
    }

    .appointment-form-subtitle {
        font-size: 0.9rem;
    }

    .appointment-form .form-row {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
        display: flex !important;
        flex-direction: column !important;
    }

    .appointment-form .form-group {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
    }

    .appointment-form .form-group label {
        width: 100% !important;
        display: flex !important;
    }

    .appointment-form .form-group small {
        width: 100% !important;
        display: block !important;
        box-sizing: border-box !important;
    }

    .appointment-form #availability-warning,
    .appointment-form #availability-success {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .appointment-form .form-control {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
        box-sizing: border-box !important;
    }

    .appointment-form textarea.form-control {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .appointment-form select.form-control {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .appointment-submit-btn {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        box-sizing: border-box !important;
    }

    .product-image-wrapper {
        height: 220px;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-about {
        max-width: 100%;
    }

    .footer-logo-wrapper {
        justify-content: center;
        text-align: center;
    }

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

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

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

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

    .footer-menu a {
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-contact-content {
        text-align: center;
        align-items: center;
    }

    .footer {
        padding: 3rem 0 1.5rem;
        margin-top: 2rem;
    }

    .footer .container {
        padding: 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2rem;
    }

    .footer-section {
        width: 100%;
        max-width: 100%;
    }

    .footer-about {
        max-width: 100%;
    }

    .footer-logo-wrapper {
        margin-bottom: 1.25rem;
    }

    .footer-logo {
        width: 45px;
        height: 45px;
    }

    .footer-section h3 {
        font-size: 1.35rem;
    }

    .footer-description {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .footer-title {
        font-size: 1.15rem;
        margin-bottom: 1.25rem;
        padding-bottom: 0.625rem;
    }

    .footer-title i {
        font-size: 1rem;
    }

    .social-links {
        gap: 0.875rem;
        justify-content: flex-start;
    }

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

    .social-link i {
        font-size: 1rem;
    }

    .footer-menu li {
        margin-bottom: 0.625rem;
    }

    .footer-menu a {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }

    .footer-menu a i {
        font-size: 0.65rem;
    }

    .footer-contact-item {
        margin-bottom: 1.25rem;
        gap: 0.875rem;
    }

    .footer-contact-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 0.95rem;
    }

    .footer-contact-label {
        font-size: 0.75rem;
    }

    .footer-contact-value {
        font-size: 0.9rem;
        word-break: break-word;
    }

    .footer-divider {
        margin: 1.5rem 0;
    }

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

    .footer-copyright {
        font-size: 0.85rem;
        justify-content: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .footer-bottom-link {
        font-size: 0.85rem;
    }

    .footer-separator {
        font-size: 0.85rem;
    }

    .product-info {
        padding: 1.5rem;
    }

    .order-modal-content {
        max-width: 95vw;
        margin: 1rem;
    }

    .order-modal-header {
        padding: 2rem 1.5rem 1rem;
    }

    .order-modal-title {
        font-size: 1.5rem;
    }

    .order-form {
        padding: 1.5rem;
    }

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

    .order-form-actions {
        flex-direction: column;
    }

    .order-form-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .gallery-filters {
        gap: 0.75rem;
    }

    .filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }

    .gallery-grid-premium {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-image-wrapper {
        height: 250px;
    }

    .gallery-item-info {
        padding: 1.5rem;
    }

    .gallery-item-title {
        font-size: 1.2rem;
    }

    .lightbox-content {
        max-width: 95vw;
        padding: 1rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-info {
        padding: 1.5rem;
        margin-top: 1rem;
    }

    .lightbox-info h3 {
        font-size: 1.2rem;
    }
}

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

    .about-who-content {
        grid-template-columns: 1fr;
    }

    .about-mission-grid {
        grid-template-columns: 1fr;
    }

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

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

/* Why Choose Us Section */
.why-choose-section {
    background: linear-gradient(135deg, rgba(232, 244, 248, 0.5), rgba(255, 255, 255, 0.8));
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(74,144,226,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.features-slider-container {
    position: relative;
    margin: 3rem 0;
    padding: 2.5rem 4rem;
    overflow: hidden;
}

.features-slider {
    display: flex;
    gap: 1.8rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding: 0.5rem 0;
    overflow: hidden;
}

.feature-card-slider {
    flex: 0 0 calc(33.333% - 1.2rem);
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(15, 36, 66, 0.1);
    box-shadow: 0 10px 35px rgba(15, 36, 66, 0.12);
    margin: 0.5rem 0;
    max-width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
}

.feature-card-slider:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(15, 36, 66, 0.2);
    border-color: var(--primary-blue);
}

/* Disable hover effects on mobile */
@media (max-width: 768px) {
    .feature-card-slider:hover {
        transform: none;
        box-shadow: 0 10px 35px rgba(15, 36, 66, 0.12);
    }
    
    .feature-card-slider:hover .feature-icon {
        transform: none;
    }
}

.feature-content-wrapper {
    padding: 3rem 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    background: var(--white);
    z-index: 2;
    justify-content: center;
    align-items: center;
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.2rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
    position: relative;
    z-index: 3;
}

.feature-card-slider:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.4);
}

.feature-content-wrapper h3 {
    color: var(--dark-blue);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.feature-content-wrapper p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.features-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--dark-blue);
    color: var(--dark-blue);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 6px 20px rgba(15, 36, 66, 0.15);
    font-size: 1.1rem;
}

.features-slider-nav:hover {
    background: var(--dark-blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(15, 36, 66, 0.25);
    border-color: var(--darker-blue);
}

.features-slider-nav:active {
    transform: translateY(-50%) scale(1.05);
}

.features-prev-nav {
    left: 10px;
}

.features-next-nav {
    right: 10px;
}

.features-slider-nav i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.features-slider-nav:hover i {
    transform: scale(1.1);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--darker-blue) 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(107, 182, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(74, 144, 226, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
    position: relative;
    overflow: hidden;
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.stat-item:hover .stat-icon::before {
    width: 120px;
    height: 120px;
}

.stat-item:hover .stat-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(74, 144, 226, 0.5);
}

.stat-icon i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon i {
    transform: scale(1.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue), var(--primary-blue));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    line-height: 1.2;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.stat-label {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* About Preview Section */
.about-preview-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 100%);
    position: relative;
    overflow: hidden;
}

.about-preview-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(74, 144, 226, 0.5);
    }
}

.about-badge i {
    font-size: 0.85rem;
}

.about-subtitle {
    color: var(--dark-blue);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

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

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

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(74, 144, 226, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    background: rgba(74, 144, 226, 0.1);
    transform: translateX(5px);
}

.about-feature-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.about-feature-item span {
    color: var(--dark-blue);
    font-weight: 500;
    font-size: 0.95rem;
}

.about-preview-image {
    position: relative;
    height: 450px;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(15, 36, 66, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-preview-image:hover .about-image-wrapper {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(15, 36, 66, 0.25);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-preview-image:hover .about-image {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 36, 66, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-preview-image:hover .about-image-overlay {
    opacity: 1;
}

.about-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 20px rgba(15, 36, 66, 0.2);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-preview-image:hover .about-image-badge {
    transform: translateY(0);
    opacity: 1;
}

.about-image-badge i {
    color: var(--primary-blue);
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 50%, var(--primary-blue) 100%);
    background-size: 200% 200%;
    animation: gradientMove 8s ease infinite;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

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

.cta-badge i {
    font-size: 0.85rem;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.cta-title::after {
    display: none;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-weight: 500;
}

.cta-feature i {
    color: var(--white);
    font-size: 1.1rem;
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

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

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.btn-large span,
.btn-large i {
    position: relative;
    z-index: 1;
}

.cta-primary-btn {
    background: var(--white);
    color: var(--dark-blue);
    border: 2px solid var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-primary-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-blue);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.cta-primary-btn i {
    transition: transform 0.3s ease;
}

.cta-primary-btn:hover i {
    transform: scale(1.1) rotate(5deg);
}

.cta-secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-secondary-btn:hover {
    background: var(--white);
    color: var(--dark-blue);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.cta-secondary-btn i {
    transition: transform 0.3s ease;
}

.cta-secondary-btn:hover i {
    transform: scale(1.1);
}

/* Contact Page Styles */
.contact-hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    padding: 60px 0 45px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 36, 66, 0.75) 0%, rgba(74, 144, 226, 0.7) 100%);
    z-index: 0;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.contact-hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.contact-section {
    background: var(--white);
    padding: 50px 0;
}

.contact-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 0;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.contact-info-header {
    margin-bottom: 0.75rem;
}

.contact-info-title {
    font-size: 1.75rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-info-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(15, 36, 66, 0.08);
    border: 1px solid rgba(15, 36, 66, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(15, 36, 66, 0.15);
    border-color: var(--primary-blue);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.contact-info-content h3 {
    color: var(--dark-blue);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-info-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.contact-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(15, 36, 66, 0.15);
    margin-top: 0.5rem;
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-image-wrapper:hover .contact-image {
    transform: scale(1.1);
}

.contact-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 36, 66, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-image-wrapper:hover .contact-image-overlay {
    opacity: 1;
}

.contact-form-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(15, 36, 66, 0.1);
    border: 1px solid rgba(15, 36, 66, 0.05);
    width: 100%;
    margin-top: 2rem;
}

.contact-form-header {
    margin-bottom: 1.5rem;
}

.contact-form-title {
    font-size: 1.75rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-form-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-alert {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    animation: slideInDown 0.4s ease;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-alert.alert-success {
    background: rgba(39, 174, 96, 0.1);
    color: var(--success);
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.contact-alert.alert-error {
    background: rgba(231, 76, 60, 0.1);
    color: var(--error);
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.form-control {
    padding: 0.875rem 1rem;
    border: 2px solid rgba(15, 36, 66, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.contact-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.contact-submit-btn:hover::before {
    width: 400px;
    height: 400px;
}

.contact-submit-btn i,
.contact-submit-btn span {
    position: relative;
    z-index: 1;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.contact-submit-btn:hover i {
    transform: translateX(3px);
}

/* About Page Styles */
.about-hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.about-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

.about-who-section {
    padding: 80px 0;
    background: var(--white);
}

.about-who-top-image {
    width: 100%;
    margin-bottom: 4rem;
}

.about-who-top-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(15, 36, 66, 0.2);
}

.about-who-top-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-who-top-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 36, 66, 0.1) 0%,
        rgba(15, 36, 66, 0.05) 50%,
        rgba(15, 36, 66, 0.1) 100%
    );
    pointer-events: none;
}

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

.about-who-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 0.5rem;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(107, 182, 255, 0.1));
    color: var(--dark-blue);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    width: fit-content;
    border: 1px solid rgba(74, 144, 226, 0.2);
}

.about-badge i {
    color: var(--primary-blue);
    font-size: 0.85rem;
}

.about-who-title {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-who-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
    text-align: justify;
    text-justify: inter-word;
}

.about-stats-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(15, 36, 66, 0.1);
}

.about-stat-mini {
    text-align: center;
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.about-who-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(15, 36, 66, 0.2);
    margin-top: 1rem;
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-wrapper:hover .about-main-image {
    transform: scale(1.1);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 36, 66, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-image-wrapper:hover .about-image-overlay {
    opacity: 1;
}

.about-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-wrapper:hover .about-image-badge {
    transform: translateY(0);
    opacity: 1;
}

.about-image-badge i {
    color: var(--primary-blue);
    font-size: 1rem;
}

.about-mission-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(232, 244, 248, 0.5), rgba(255, 255, 255, 0.8));
}

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

@media (max-width: 768px) {
    .about-mission-grid {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
    }
}

.mission-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(15, 36, 66, 0.1);
    border: 1px solid rgba(15, 36, 66, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(15, 36, 66, 0.15);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.mission-card:hover .mission-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(74, 144, 226, 0.4);
}

.mission-title {
    font-size: 1.75rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.mission-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-why-section {
    padding: 80px 0;
    background: var(--white);
}

.about-why-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.why-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(15, 36, 66, 0.08);
    border: 1px solid rgba(15, 36, 66, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(15, 36, 66, 0.15);
    border-color: var(--primary-blue);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4);
}

.why-title {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.about-gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(232, 244, 248, 0.5), rgba(255, 255, 255, 0.8));
}

.about-gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.gallery-item {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 36, 66, 0.15);
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 36, 66, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-overlay i {
    color: var(--white);
    font-size: 2.5rem;
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.about-gallery-cta {
    text-align: center;
}

.about-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    text-align: center;
}

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

.about-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.about-cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

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

.about-cta-buttons .btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.about-cta-buttons .btn-primary {
    background: var(--white);
    color: var(--dark-blue);
    border: 2px solid var(--white);
}

.about-cta-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.about-cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.about-cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Gallery Page Styles */
.gallery-hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.gallery-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gallery-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.gallery-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 36, 66, 0.85) 0%, rgba(74, 144, 226, 0.75) 50%, rgba(15, 36, 66, 0.85) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    z-index: 1;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gallery-hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.gallery-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

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

.gallery-hero-badge i {
    font-size: 0.9rem;
}

.gallery-hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s both;
}

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

.gallery-hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 3rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.gallery-hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.gallery-stat {
    text-align: center;
}

.gallery-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--white), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.gallery-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.gallery-main-section {
    padding: 80px 0;
    background: var(--white);
}

.gallery-controls {
    margin-bottom: 3rem;
}

.gallery-search-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.gallery-search-wrapper i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
}

.gallery-search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    border: 2px solid rgba(15, 36, 66, 0.1);
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
    font-family: inherit;
}

.gallery-search-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.gallery-search-input::placeholder {
    color: var(--text-muted);
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid rgba(15, 36, 66, 0.1);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.filter-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.3);
}

.filter-btn i {
    font-size: 0.9rem;
}

.gallery-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item-premium {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 36, 66, 0.1);
    border: 1px solid rgba(15, 36, 66, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1 !important;
    transform: scale(1) !important;
    visibility: visible !important;
    display: block !important;
}

.gallery-item-premium:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(15, 36, 66, 0.2);
    border-color: var(--primary-blue);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--light-blue);
}

.gallery-image-premium {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-premium:hover .gallery-image-premium {
    transform: scale(1.15);
}

.gallery-overlay-premium {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 36, 66, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-overlay-content {
    text-align: center;
}

.gallery-view-btn {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    color: var(--dark-blue);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.gallery-view-btn:hover {
    transform: scale(1.1) rotate(90deg);
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(74, 144, 226, 0.4);
}

.gallery-item-info {
    padding: 1.75rem;
}

.gallery-item-title {
    font-size: 1.4rem;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.3;
}

.gallery-item-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}


.gallery-item-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(107, 182, 255, 0.1));
    border-radius: 50px;
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(74, 144, 226, 0.2);
}

.gallery-item-category i {
    font-size: 0.8rem;
}

.gallery-no-results {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.gallery-no-results i {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.gallery-no-results h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.gallery-no-results p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 36, 66, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

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

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.lightbox-info h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.lightbox-info p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.lightbox-close:hover {
    background: var(--white);
    color: var(--dark-blue);
    transform: rotate(90deg) scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--white);
    color: var(--dark-blue);
    transform: translateY(-50%) scale(1.1);
}

/* Services/Products Page Styles */
.services-hero-section {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 0 70px;
}

.services-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.services-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: zoomIn 25s ease-in-out infinite alternate;
    filter: brightness(0.7);
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 36, 66, 0.88) 0%, rgba(74, 144, 226, 0.78) 50%, rgba(15, 36, 66, 0.88) 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    z-index: 1;
}

.services-hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(74, 144, 226, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.services-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
    z-index: 1;
    opacity: 0.5;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.services-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: var(--white);
    padding: 0.625rem 1.75rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: float 4s ease-in-out infinite;
    letter-spacing: 0.5px;
}

.services-hero-badge i {
    font-size: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.services-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 6px 40px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.2s both;
    letter-spacing: -1px;
}

.services-hero-title .title-line {
    display: block;
}

.services-hero-title .highlight {
    background: linear-gradient(135deg, var(--white), rgba(255, 255, 255, 0.9), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.services-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.98);
    line-height: 1.8;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out 0.4s both;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-weight: 400;
}

.services-hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-feature-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.hero-feature-item i {
    color: var(--accent-blue);
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.services-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    animation: floatShape 20s ease-in-out infinite;
}

.hero-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.hero-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: 5s;
}

.hero-shape.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.5;
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
        opacity: 0.4;
    }
}

.services-main-section {
    padding: 80px 0;
    background: var(--white);
}

.services-controls {
    margin-bottom: 3rem;
}

.services-search-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.services-search-wrapper i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
}

.services-search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    border: 2px solid rgba(15, 36, 66, 0.1);
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
    font-family: inherit;
}

.services-search-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.services-search-input::placeholder {
    color: var(--text-muted);
}

.services-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.services-filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid rgba(15, 36, 66, 0.1);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.services-filter-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.2);
}

.services-filter-btn.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.3);
}

.services-filter-btn i {
    font-size: 0.9rem;
}

.services-alert {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    animation: slideInDown 0.4s ease;
}

.services-alert.alert-success {
    background: rgba(39, 174, 96, 0.1);
    color: var(--success);
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.services-alert.alert-error {
    background: rgba(231, 76, 60, 0.1);
    color: var(--error);
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.products-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card-premium {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 36, 66, 0.1);
    border: 1px solid rgba(15, 36, 66, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1 !important;
    transform: scale(1) !important;
    visibility: visible !important;
    display: block !important;
}

.product-card-premium:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(15, 36, 66, 0.2);
    border-color: var(--primary-blue);
}

@media (max-width: 768px) {
    .product-card-premium:hover {
        transform: none;
    }
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--light-blue);
}

.product-image-premium {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-premium:hover .product-image-premium {
    transform: scale(1.15);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 36, 66, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card-premium:hover .product-overlay {
    opacity: 1;
}

.product-order-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--white);
    border: none;
    border-radius: 50px;
    color: var(--dark-blue);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.product-order-btn:hover {
    transform: scale(1.1);
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(74, 144, 226, 0.4);
}

.product-info {
    padding: 2rem;
    text-align: center;
}

.product-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
    transition: all 0.4s ease;
}

.product-card-premium:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4);
}

.product-title {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.product-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.product-order-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    color: var(--primary-blue);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
}

.product-order-link:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateX(5px);
}

/* Order Modal */
.order-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 36, 66, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
}

.order-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: visible;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
}

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

.order-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(15, 36, 66, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--dark-blue);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.order-modal-close:hover {
    background: var(--error);
    color: var(--white);
    transform: rotate(90deg) scale(1.1);
}

.order-modal-header {
    padding: 1.25rem 2rem 0.75rem;
    text-align: center;
    border-bottom: 1px solid rgba(15, 36, 66, 0.1);
}

.order-modal-title {
    font-size: 1.75rem;
    color: var(--dark-blue);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.order-modal-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.order-product-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 2rem;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(107, 182, 255, 0.1));
    border-left: 4px solid var(--primary-blue);
    margin: 0 2rem;
    margin-top: 0.75rem;
    border-radius: 10px;
}

.order-product-info i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.order-product-info span {
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 1.1rem;
}

.order-form {
    padding: 1rem 2rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.order-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.order-form .form-group {
    margin-bottom: 0;
}

.order-form .form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.order-form .form-control {
    padding: 0.55rem 0.875rem;
    font-size: 0.95rem;
}

.order-form textarea.form-control {
    padding: 0.55rem 0.875rem;
    min-height: 70px;
    resize: vertical;
}

.order-form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.order-form-actions .btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.services-no-results {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.services-no-results i {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.services-no-results h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.services-no-results p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Appointment Page Styles */
.appointment-hero-section {
    background: linear-gradient(135deg, rgba(15, 36, 66, 0.95) 0%, rgba(74, 144, 226, 0.9) 100%);
    color: var(--white);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.appointment-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.appointment-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.appointment-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.appointment-hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.appointment-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: visible;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.appointment-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    overflow: visible;
}

.appointment-info-section {
    position: sticky;
    top: 120px;
    z-index: 1;
}

.appointment-form-section {
    position: relative;
    z-index: 2;
}

.appointment-info-header {
    margin-bottom: 2.5rem;
}

.appointment-info-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.appointment-info-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.appointment-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.appointment-info-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(15, 36, 66, 0.08);
    border: 1px solid rgba(15, 36, 66, 0.05);
    transition: all 0.3s ease;
}

.appointment-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(15, 36, 66, 0.15);
    border-color: var(--primary-blue);
}

.appointment-info-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
}

.appointment-info-card:hover .appointment-info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.appointment-info-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.appointment-info-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.appointment-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(15, 36, 66, 0.15);
    transition: all 0.4s ease;
}

.appointment-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(15, 36, 66, 0.25);
}

.appointment-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.appointment-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(15, 36, 66, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.appointment-image-wrapper:hover .appointment-image-overlay {
    opacity: 1;
}

.appointment-form-section {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(15, 36, 66, 0.1);
    border: 1px solid rgba(15, 36, 66, 0.05);
    position: relative;
    z-index: 2;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    min-height: auto;
}

.appointment-form-header {
    margin-bottom: 2rem;
}

.appointment-form-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.appointment-form-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.appointment-alert {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    animation: slideInDown 0.4s ease;
}

.appointment-alert.alert-success {
    background: rgba(39, 174, 96, 0.1);
    color: var(--success);
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.appointment-alert.alert-error {
    background: rgba(231, 76, 60, 0.1);
    color: var(--error);
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.appointment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.appointment-form .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.appointment-form .form-group label i {
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.appointment-form .form-control {
    width: 100%;
    max-width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(15, 36, 66, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
    font-family: inherit;
    box-sizing: border-box;
}

.appointment-form .form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.appointment-form .form-control::placeholder {
    color: var(--text-muted);
}

.appointment-form select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230F2442' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.appointment-form textarea.form-control {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    resize: vertical;
}

.appointment-submit-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
    margin-top: 0.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

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

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

.appointment-submit-btn i,
.appointment-submit-btn span {
    position: relative;
    z-index: 1;
}

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

    .form-container {
        padding: 2rem 1.5rem;
    }

    .admin-container {
        padding: 1rem;
    }

    .admin-table {
        overflow-x: auto;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

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

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

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

/* Loading Spinner */
.spinner {
    border: 3px solid var(--light-blue);
    border-top: 3px solid var(--primary-blue);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Custom Sections Styles */
.custom-section-content {
    margin-top: 2rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.custom-section-content p {
    margin-bottom: 1rem;
}

.custom-cards-section {
    background: var(--white);
    position: relative;
}

.custom-cards-slider-container {
    position: relative;
    margin: 3rem 0;
    padding: 2.5rem 4rem;
    overflow: hidden;
}

.custom-cards-slider {
    display: flex;
    gap: 1.8rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding: 0.5rem 0;
}

.custom-card-item {
    flex: 0 0 calc(25% - 1.35rem);
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(15, 36, 66, 0.12);
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(15, 36, 66, 0.1);
}

.custom-card-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(15, 36, 66, 0.2);
}

.custom-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--light-blue);
}

.custom-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-card-item:hover .custom-card-image {
    transform: scale(1.1);
}

.custom-card-content {
    padding: 1.75rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    background: var(--white);
}

.custom-card-content h3 {
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
}

.custom-card-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

.custom-card-html {
    margin-top: 1rem;
    color: var(--text-dark);
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.6;
}

.custom-cards-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--dark-blue);
    color: var(--dark-blue);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(15, 36, 66, 0.15);
}

.custom-cards-nav:hover {
    background: var(--dark-blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(15, 36, 66, 0.3);
}

.custom-cards-prev {
    left: 1rem;
}

.custom-cards-next {
    right: 1rem;
}

@media (max-width: 1024px) {
    .custom-card-item {
        flex: 0 0 calc(33.333% - 1.2rem);
    }
    .custom-cards-slider-container {
        padding: 2rem 3rem;
    }
}

@media (max-width: 768px) {
    .custom-card-item {
        flex: 0 0 calc(50% - 0.9rem);
        min-height: 350px;
    }
    .custom-cards-slider-container {
        padding: 1.5rem 3rem;
    }
    .custom-cards-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .custom-card-item {
        flex: 0 0 100%;
        min-height: 320px;
    }
    .custom-cards-slider-container {
        padding: 1rem 2.5rem;
    }
    .custom-cards-nav {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    .custom-cards-prev {
        left: 0.5rem;
    }
    .custom-cards-next {
        right: 0.5rem;
    }
}


