/* CSS Variables */
:root {
    --primary-color: #00008B;
    --secondary-color: #6b8ca6;
    --accent-color: #1a1aff;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-premium: 0 8px 30px rgba(0, 0, 139, 0.12);
    --transition: all 0.3s ease;
    --font-heading: 'Poppins', 'DM Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Fixed Top Call Banner */
.call-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.75rem 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.call-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.call-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.call-link {
    color: var(--bg-white);
    font-weight: 600;
    font-size: 1rem;
    display: block;
}

.call-link:hover {
    opacity: 0.9;
}

.call-hours {
    font-size: 0.85rem;
    opacity: 0.9;
}

.call-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-call {
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--bg-white);
}

.btn-book {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.btn-book:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.btn-call-now {
    background-color: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.btn-call-now:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 999;
    padding: 1rem 0;
}

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

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

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

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 180px;
    padding-bottom: 3rem;
    background-image: url('https://i.im.ge/2026/01/23/GKbubp.White-background-right-2k-202601232043.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-text {
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 0.8s ease forwards;
}

.hero-title.hero-fade-in {
    animation-delay: 0.2s;
}

.hero-subtitle.hero-fade-in {
    animation-delay: 0.6s;
}

.hero-buttons.hero-fade-in {
    animation-delay: 1s;
}

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

.hero-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    min-width: 200px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 4rem 0;
    scroll-margin-top: 180px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-light);
    padding: 6rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-image-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.contact-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.contact-info-box {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
}

.contact-info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 500;
    color: var(--text-dark);
}

.hours-time {
    color: var(--text-light);
    font-weight: 500;
}

.contact-form-container {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
}

.contact-form {
    width: 100%;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--bg-white);
    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='%2300008B' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    background-size: 12px;
    padding-right: 2.5rem;
}

.form-group select {
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 139, 0.1);
}

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

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

/* Packages Section */
.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.package-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.package-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.package-description {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.package-services {
    list-style: none;
    margin-bottom: 1.5rem;
}

.package-services li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.package-services li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.package-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-item {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-item:hover {
    background-color: var(--bg-light);
    padding-left: 2rem;
}

.service-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-description {
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.service-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Animated Background */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.bg-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.bg-pattern {
    animation: bgMove 30s ease-in-out infinite;
    transform-origin: center;
}

@keyframes bgMove {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -15px) rotate(1deg);
    }
    50% {
        transform: translate(-15px, 20px) rotate(-1deg);
    }
    75% {
        transform: translate(15px, 10px) rotate(0.5deg);
    }
}

.bg-line {
    stroke: #00008B;
    stroke-width: 1.5;
    fill: none;
    opacity: 0.3;
    animation: linePulse 4s ease-in-out infinite;
}

.bg-dot {
    fill: #00008B;
    opacity: 0.4;
    animation: dotPulse 3s ease-in-out infinite;
    transform-origin: center;
}

.bg-dot:nth-child(odd) {
    animation-delay: 0s;
}

.bg-dot:nth-child(even) {
    animation-delay: 1.5s;
}

@keyframes linePulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes dotPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* About Section */
.about-section {
    background-color: var(--bg-white);
}

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

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

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about-paragraph {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-paragraph.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Team Section */
.team-section {
    background-color: var(--bg-light);
}

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

.team-member {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.team-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.team-role {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

/* Stats Section */
.stats-section {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 4rem 0;
}

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

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--bg-white);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-number[data-suffix="+"]::after {
    content: '+';
    font-size: 2rem;
    vertical-align: super;
    margin-left: 0.1rem;
}

.stat-number[data-suffix="%"]::after {
    content: '%';
    font-size: 2rem;
    vertical-align: super;
    margin-left: 0.1rem;
}

.stat-number[data-suffix="/7"]::after {
    content: '/7';
    font-size: 1.5rem;
    vertical-align: baseline;
    margin-left: 0.2rem;
    font-weight: 400;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Before & After Section */
.before-after-section {
    padding: 3rem 0;
}

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

.comparison-item {
    width: 100%;
}

.comparison-slider {
    position: relative;
    width: 100%;
    min-height: 250px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    cursor: grab;
    user-select: none;
}

.comparison-slider:active {
    cursor: grabbing;
}

.comparison-before,
.comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.comparison-before {
    z-index: 1;
}

.comparison-before img,
.comparison-after img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    display: block;
}

.comparison-after {
    z-index: 2;
    clip-path: inset(0 0 0 50%);
}

.comparison-label {
    position: absolute;
    bottom: 1rem;
    background-color: rgba(0, 0, 139, 0.8);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    z-index: 3;
}

.comparison-before .comparison-label {
    left: 1rem;
}

.comparison-after .comparison-label {
    right: 1rem;
}

.comparison-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 4;
    transform: translateX(-50%);
    cursor: ew-resize;
    display: flex;
    align-items: center;
    justify-content: center;
}

.handle-line {
    width: 4px;
    height: 100%;
    background-color: var(--primary-color);
}

.handle-circle {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    box-shadow: var(--shadow-hover);
    border: 3px solid var(--bg-white);
}

.handle-circle svg {
    width: 20px;
    height: 20px;
}

.comparison-range {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 5;
    cursor: ew-resize;
    margin: 0;
}

.comparison-range::-webkit-slider-thumb {
    width: 100%;
    height: 100%;
    cursor: ew-resize;
}

.comparison-range::-moz-range-thumb {
    width: 100%;
    height: 100%;
    cursor: ew-resize;
}

/* Reviews Section */
.reviews-section {
    background-color: var(--bg-light);
    padding: 6rem 0;
    overflow: hidden;
}

.testimonials-columns-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.testimonials-column {
    position: relative;
    height: 600px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.testimonials-scroll {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    animation: scrollUp 20s linear infinite;
    will-change: transform;
}

.testimonials-scroll-reverse {
    animation: scrollDown 20s linear infinite;
    will-change: transform;
}

.testimonials-column:hover .testimonials-scroll,
.testimonials-column:hover .testimonials-scroll-reverse {
    animation-play-state: paused;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes scrollDown {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

.testimonial-card {
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 139, 0.1);
    background-color: var(--bg-white);
    max-width: 320px;
    width: 100%;
    flex-shrink: 0;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.25;
    font-family: var(--font-heading);
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.25;
    opacity: 0.7;
}

/* Why Choose Us Section */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-item {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.feature-item:hover {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-description {
    color: var(--text-light);
}

/* Hygiene Section */
.hygiene-section {
    background-color: var(--bg-light);
}

.hygiene-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

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

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

.hygiene-paragraph {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hygiene-paragraph.visible {
    opacity: 1;
    transform: translateY(0);
}

.hygiene-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.hygiene-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* FAQ Section */
.faq-section {
    position: relative;
    background-color: var(--bg-white);
    overflow: hidden;
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background-color: var(--bg-white);
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

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

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question[aria-expanded="true"]::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

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

/* Social Section */
.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    background-color: var(--bg-white);
}

.social-link svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.social-facebook:hover {
    border-color: #1877F2;
    background-color: rgba(24, 119, 242, 0.1);
}

.social-facebook:hover span {
    color: #1877F2;
}

.social-instagram:hover {
    border-color: #E1306C;
    background: linear-gradient(45deg, rgba(131, 58, 180, 0.1), rgba(225, 48, 108, 0.1), rgba(252, 175, 69, 0.1));
}

.social-instagram:hover span {
    background: linear-gradient(45deg, #833AB4, #E1306C, #FCAF45);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-x:hover {
    border-color: #000000;
    background-color: rgba(0, 0, 0, 0.1);
}

.social-x:hover span {
    color: #000000;
}

.social-linkedin:hover {
    border-color: #0077B5;
    background-color: rgba(0, 119, 181, 0.1);
}

.social-linkedin:hover span {
    color: #0077B5;
}

.social-google {
    background-color: var(--bg-white);
    color: var(--text-dark);
    border-color: var(--border-color);
}

.social-google:hover {
    border-color: #4285F4;
    background-color: rgba(66, 133, 244, 0.1);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.social-google:hover span {
    color: #4285F4;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 0 1.5rem;
}

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

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-heading {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

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

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.footer-nav a:hover {
    color: var(--bg-white);
    padding-left: 0.5rem;
}

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

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

.footer-bottom a {
    color: var(--bg-white);
    text-decoration: underline;
}

.footer-bottom a:hover {
    opacity: 0.8;
}

/* Animation Classes */
.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-in {
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(20px);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* Tablet Styles */
@media (min-width: 768px) {
    .call-banner {
        padding: 0.875rem 0;
    }

    .call-banner-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .call-info {
        flex-direction: row;
        gap: 1.5rem;
        text-align: left;
    }

    .call-link {
        font-size: 1rem;
    }

    .navbar {
        top: 60px;
    }

    .nav-menu {
        gap: 2rem;
        justify-content: flex-end;
    }

    .hero {
        padding-top: 160px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form-container {
        order: 2;
    }

    .contact-image-container {
        order: 1;
    }


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

    .hero-text {
        text-align: center;
        max-width: 900px;
    }

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

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .section-title {
        font-size: 2.5rem;
    }

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

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

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

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

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

    .hygiene-text {
        order: 1;
    }

    .hygiene-image {
        order: 2;
    }

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

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

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

    .before-after-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .comparison-slider {
        min-height: 250px;
    }

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

    .testimonials-column {
        height: 700px;
    }

    .testimonial-card {
        max-width: 100%;
    }

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

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

/* Desktop Styles */
@media (min-width: 1024px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

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

    .packages-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }

    .arrow-buttons {
        padding-top: 0;
    }

    .testimonial-image-container {
        height: 28rem;
    }

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

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
