/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Viewport Scaling System */
html {
    /* Ensure consistent scaling across devices */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
    /* Fixed viewport scaling */
    font-size: calc(14px + 0.5vw);
    min-height: 100vh;
}

.container {
    max-width: 85vw;
    width: 100%;
    margin: 0 auto;
    padding: 0 calc(10px + 1vw);
}

/* Top Bar */
.top-bar {
    background: transparent;
    padding: calc(8px + 0.2vw) 0;
    border-bottom: none;
    position: relative;
    top: 10px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: calc(15px + 0.5vw);
}

.contact-info .phone-number,
.contact-info .address,
.contact-info .working-hours {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: calc(0.8rem + 0.25vw);
    opacity: 0.8;
}

.contact-info .phone-number {
    opacity: 1;
    font-weight: 600;
    text-decoration: none;
}

.contact-info i {
    color: #d4af37;
    font-size: calc(0.9rem + 0.25vw);
}

@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .contact-info .phone-number,
    .contact-info .address,
    .contact-info .working-hours {
        font-size: calc(0.75rem + 0.2vw);
    }
}

@media (max-width: 480px) {
    .contact-info .phone-number,
    .contact-info .address,
    .contact-info .working-hours {
        font-size: calc(0.7rem + 0.15vw);
    }
}

/* Modern Social Links */
.social-links {
    display: flex;
    gap: calc(8px + 0.3vw);
    align-items: center;
}

.social-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(35px + 0.8vw);
    height: calc(35px + 0.8vw);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: calc(0.9rem + 0.3vw);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.social-link:hover::before {
    transform: translateX(100%);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Specific Platform Colors */
.social-link.instagram:hover {
    background: linear-gradient(135deg, #e4405f, #fd1d1d, #fccc63);
    color: #fff;
}

.social-link.whatsapp:hover {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
}

/* Top Bar Social Links - Smaller Version */
.top-bar .social-links .social-link {
    width: calc(30px + 0.4vw);
    height: calc(30px + 0.4vw);
    font-size: calc(0.8rem + 0.2vw);
}

/* Navigation Social Links */
.nav-right .social-links {
    display: flex;
    gap: 12px;
}

/* Social Links Animation Enhancement */
@keyframes socialPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.social-link:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.social-link i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
}

/* Loading Animation */
.social-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.social-link:hover::after {
    width: 100%;
    height: 100%;
}

/* Mobile Responsive Social Links */
@media (max-width: 768px) {
    .social-links {
        gap: 8px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .top-bar .social-links .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .social-link:hover {
        transform: translateY(-2px) scale(1.05);
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 6px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .top-bar .social-links .social-link {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}

/* Header ve Navigation */
.header {
    position: absolute;
    top: -15px;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 10000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 0.1rem 0;
    background: transparent;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 85vw;
    margin: 0 auto;
    padding: calc(1px + 0.2vw) calc(10px + 1vw);
    min-height: calc(35px + 0.8vw);
}

.nav-left, .nav-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-left {
    justify-content: flex-end;
    padding-right: calc(0.3rem + 0.2vw);
}

.nav-right {
    justify-content: flex-start;
    padding-left: calc(0.3rem + 0.2vw);
    gap: calc(0.8rem + 0.3vw);
}

.nav-center {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0.1rem;
}

.nav-logo a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.logo-img {
    height: calc(280px + 5vw);
    width: auto;
    max-width: calc(600px + 20vw);
    object-fit: contain;
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -20px 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: calc(1rem + 0.5vw);
    align-items: center;
}

.nav-item {
    position: relative;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
    filter: blur(10px);
    z-index: -1;
}

.nav-item:hover::before {
    opacity: 1;
    animation: rotate-glow 3s linear infinite;
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: lowercase;
    font-size: calc(0.9rem + 0.4vw);
    padding: calc(1px + 0.2vw) 0;
    position: relative;
    font-family: 'Poppins', sans-serif;
    letter-spacing: calc(1px + 0.1vw);
    display: inline-block;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(45deg, transparent, #d4af37, #f4d03f, #d4af37, transparent);
    transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: blur(0.5px);
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
    transform: translateY(-50%) rotate(-45deg);
    transition: left 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: blur(0.3px);
}

.nav-link span {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.nav-link:hover {
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6), 0 0 40px rgba(212, 175, 55, 0.3);
    transform: translateY(-1px) scale(1.05);
    filter: brightness(1.2) contrast(1.1);
}

.nav-link:hover::before {
    width: 100%;
    animation: shimmer 2s infinite;
}

.nav-link:hover::after {
    left: 100%;
}

.nav-link:hover span {
    background: linear-gradient(45deg, #d4af37, #f4d03f, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

@keyframes shimmer {
    0% { transform: translateX(-100%) skewX(-15deg); }
    50% { transform: translateX(100%) skewX(-15deg); }
    100% { transform: translateX(100%) skewX(-15deg); }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu - Simplified */
.mobile-menu {
    display: none;
}

/* Viewport-based Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .top-bar {
        display: none;
    }
    
    .contact-info .address {
        display: none;
    }
    
    /* Override viewport scaling for mobile */
    .logo-img {
        height: calc(200px + 3vw);
        max-width: calc(400px + 10vw);
    }
    
    .logo-wrapper {
        margin: -15px 0;
    }
    
    .nav-link {
        font-size: calc(0.8rem + 0.3vw);
    }
}

@media (max-width: 480px) {
    /* Ultra-mobile adjustments */
    .container {
        max-width: 95vw;
        padding: 0 calc(5px + 0.5vw);
    }
    
    .logo-img {
        height: calc(150px + 2vw);
        max-width: calc(300px + 8vw);
    }
    
    .logo-wrapper {
        margin: -10px 0;
    }
    
    .nav-link {
        font-size: calc(0.7rem + 0.25vw);
        letter-spacing: calc(0.5px + 0.05vw);
    }
}

/* Large screen optimization */
@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }
    
    .nav-container {
        max-width: 1400px;
    }
    
    .logo-img {
        height: calc(320px + 2vw);
        max-width: calc(800px + 10vw);
    }
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    background: #fff;
    position: relative;
    padding: 80px 0;
    margin-bottom: 0;
}

.hero-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #333;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.slider-content .btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    cursor: pointer;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: 'Poppins', sans-serif;
    margin: 0 8px;
    transform: translateY(15px);
    opacity: 0;
}

.slider-slide.active .slider-content .btn:nth-child(1) {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.7s;
}

.slider-slide.active .slider-content .btn:nth-child(2) {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.8s;
}

.slider-content .btn-primary {
    background: #d4af37;
    color: #fff;
    border: none;
}

.slider-content .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.slider-content .btn-primary:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

.slider-content .btn-secondary:hover {
    background: #fff;
    color: #333;
}

.btn-secondary {
    background: transparent;
    color: #333;
    border: 2px solid #333;
}

.btn-secondary:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
}

.hero-services {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-item i {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1rem;
    display: block;
}

.service-item span {
    font-weight: 600;
    color: #333;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #fff;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-header h6 {
    color: #d4af37;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: calc(15px + 1vw) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="rgba(212,175,55,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services-grid {
    position: relative;
    width: 100%;
    height: calc(200px + 4vw);
    overflow: hidden;
    margin-top: calc(0.5rem + 0.5vw);
}

.services-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    gap: calc(1.5rem + 0.8vw);
    padding: 0 calc(2rem + 1vw);
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    flex: 0 0 calc(160px + 2.5vw);
    min-width: calc(160px + 2.5vw);
    height: calc(160px + 2.5vw);
    aspect-ratio: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-image {
    width: 100%;
    height: 60%;
    overflow: hidden;
    position: relative;
    border-radius: 50% 50% 0 0;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-image::after {
    opacity: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    padding: calc(0.6rem + 0.4vw);
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 40%;
    border-radius: 0 0 50% 50%;
}

.service-content h3 {
    font-size: calc(0.75rem + 0.1vw);
    color: #2c3e50;
    margin-bottom: calc(0.2rem + 0.15vw);
    font-weight: 600;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
    color: #d4af37;
}

.service-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: calc(0.65rem + 0.08vw);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: calc(1px + 0.08vw);
    padding: calc(3px + 0.1vw) calc(6px + 0.2vw);
    border-radius: 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid transparent;
    margin-top: auto;
}

.service-link::after {
    content: '→';
    font-size: calc(0.8rem + 0.15vw);
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #fff;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border-color: #d4af37;
    transform: translateX(3px);
}

.service-link:hover::after {
    transform: translateX(3px);
}

/* Services Slider Controls */
.services-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(0.8rem + 0.4vw);
    margin-top: calc(0.5rem + 0.4vw);
}

.services-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    width: calc(40px + 0.8vw);
    height: calc(40px + 0.8vw);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.services-btn:hover {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border-color: #d4af37;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.services-btn i {
    color: #d4af37;
    font-size: calc(1rem + 0.2vw);
    transition: color 0.3s ease;
}

.services-btn:hover i {
    color: #fff;
}

.services-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.services-btn:disabled:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(212, 175, 55, 0.3);
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.services-btn:disabled i {
    color: #ccc;
}

.services-dots {
    display: flex;
    gap: calc(0.5rem + 0.2vw);
    margin: 0 calc(1rem + 0.5vw);
}

.services-dot {
    width: calc(10px + 0.3vw);
    height: calc(10px + 0.3vw);
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-dot.active {
    background: #d4af37;
    transform: scale(1.2);
}

.services-dot:hover {
    background: rgba(212, 175, 55, 0.6);
}

@media (max-width: 768px) {
    .services {
        padding: calc(12px + 0.8vw) 0;
    }
    
    .services-grid {
        height: calc(160px + 3vw);
    }
    
    .services-slider {
        gap: calc(0.6rem + 0.3vw);
        padding: 0 calc(1rem + 0.5vw);
    }
    
    .service-card {
        flex: 0 0 calc(130px + 2.5vw);
        min-width: calc(130px + 2.5vw);
        height: calc(130px + 2.5vw);
        border-radius: 50%;
    }
    
    .service-image {
        height: 60%;
        border-radius: 50% 50% 0 0;
    }
    
    .service-content {
        padding: calc(0.5rem + 0.3vw);
        height: 40%;
        border-radius: 0 0 50% 50%;
    }
    
    .service-content h3 {
        font-size: calc(0.7rem + 0.08vw);
        margin-bottom: calc(0.15rem + 0.1vw);
    }
    
    .service-link {
        font-size: calc(0.6rem + 0.06vw);
        padding: calc(2px + 0.08vw) calc(5px + 0.15vw);
        border-radius: 15px;
    }
    
    .services-btn {
        width: calc(35px + 0.5vw);
        height: calc(35px + 0.5vw);
    }
    
    .services-btn i {
        font-size: calc(0.8rem + 0.1vw);
    }
}

@media (max-width: 480px) {
    .services {
        padding: calc(10px + 0.6vw) 0;
    }
    
    .services-grid {
        height: calc(130px + 2.5vw);
    }
    
    .services-slider {
        gap: calc(0.5rem + 0.2vw);
        padding: 0 calc(0.6rem + 0.3vw);
    }
    
    .service-card {
        flex: 0 0 calc(110px + 2vw);
        min-width: calc(110px + 2vw);
        height: calc(110px + 2vw);
        border-radius: 50%;
    }
    
    .service-image {
        height: 60%;
        border-radius: 50% 50% 0 0;
    }
    
    .service-content {
        padding: calc(0.4rem + 0.2vw);
        height: 40%;
        border-radius: 0 0 50% 50%;
    }
    
    .service-content h3 {
        font-size: calc(0.65rem + 0.06vw);
        margin-bottom: calc(0.1rem + 0.08vw);
    }
    
    .service-link {
        font-size: calc(0.55rem + 0.05vw);
        padding: calc(1px + 0.06vw) calc(4px + 0.1vw);
        border-radius: 12px;
    }
    
    .services-btn {
        width: calc(30px + 0.4vw);
        height: calc(30px + 0.4vw);
    }
    
    .services-btn i {
        font-size: calc(0.7rem + 0.08vw);
    }
}

/* Doctor Services Section */
.doctor-services {
    padding: 100px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h6 {
    color: #d4af37;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.doctor-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.doctor-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.doctor-content .btn-primary {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #fff;
    padding: calc(12px + 0.6vw) calc(25px + 1.2vw);
    border-radius: 25px;
    font-weight: 600;
    font-size: calc(0.9rem + 0.2vw);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: calc(6px + 0.2vw);
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.doctor-content .btn-primary:hover {
    background: linear-gradient(135deg, #b8941f, #d4af37);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.doctor-content .btn-primary i {
    font-size: calc(1rem + 0.2vw);
}

.body-treatments {
    text-align: center;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.body-treatments h3 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Body Transformation Section */
.body-transformation {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: calc(50px + 2vw) 0;
    color: #333;
}

.body-transformation .section-header h6 {
    color: #d4af37;
    font-size: calc(0.7rem + 0.2vw);
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: calc(8px + 0.3vw);
    text-transform: uppercase;
}

.body-transformation .section-header h2 {
    color: #2c3e50;
    font-size: calc(1.5rem + 1vw);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.transformation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(30px + 1.5vw);
    align-items: center;
    margin-top: calc(30px + 1.5vw);
}

.transformation-text {
    color: #6c757d;
}

.transformation-text p {
    font-size: calc(0.9rem + 0.15vw);
    line-height: 1.6;
    margin-bottom: calc(20px + 0.8vw);
    color: #6c757d;
}

.transformation-features {
    display: flex;
    flex-direction: column;
    gap: calc(12px + 0.4vw);
    margin-top: calc(15px + 0.8vw);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: calc(8px + 0.3vw);
}

.feature-item i {
    color: #d4af37;
    font-size: calc(1rem + 0.2vw);
}

.feature-item span {
    font-size: calc(0.85rem + 0.15vw);
    font-weight: 500;
    color: #6c757d;
}

.transformation-cta {
    text-align: center;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    padding: calc(25px + 1.5vw);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.cta-content h3 {
    color: #2c3e50;
    font-size: calc(1.2rem + 0.6vw);
    margin-bottom: calc(8px + 0.4vw);
    font-weight: 600;
}

.cta-content p {
    color: #6c757d;
    font-size: calc(0.8rem + 0.15vw);
    margin-bottom: calc(20px + 0.8vw);
}

.body-transformation .btn-primary {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #fff;
    padding: calc(12px + 0.6vw) calc(25px + 1.2vw);
    border-radius: 25px;
    font-weight: 600;
    font-size: calc(0.9rem + 0.2vw);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: calc(6px + 0.2vw);
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.body-transformation .btn-primary:hover {
    background: linear-gradient(135deg, #b8941f, #d4af37);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.body-transformation .btn-primary i {
    font-size: calc(1rem + 0.2vw);
}

@media (max-width: 768px) {
    .transformation-content {
        grid-template-columns: 1fr;
        gap: calc(25px + 1.5vw);
    }
    
    .body-transformation .section-header h2 {
        font-size: calc(1.3rem + 0.8vw);
    }
    
    .cta-content h3 {
        font-size: calc(1.1rem + 0.5vw);
    }
    
    .body-transformation .btn-primary {
        padding: calc(10px + 0.5vw) calc(20px + 1vw);
        font-size: calc(0.85rem + 0.15vw);
    }
    
    .doctor-content .btn-primary {
        padding: calc(10px + 0.5vw) calc(20px + 1vw);
        font-size: calc(0.85rem + 0.15vw);
    }
    
    .doctor-content .btn-primary i {
        font-size: calc(0.9rem + 0.15vw);
    }
}

@media (max-width: 480px) {
    .body-transformation {
        padding: calc(40px + 1.5vw) 0;
    }
    
    .body-transformation .section-header h2 {
        font-size: calc(1.2rem + 0.6vw);
    }
    
    .transformation-text p {
        font-size: calc(0.85rem + 0.1vw);
    }
    
    .body-transformation .btn-primary {
        padding: calc(8px + 0.4vw) calc(18px + 0.8vw);
        font-size: calc(0.8rem + 0.1vw);
    }
    
    .doctor-content .btn-primary {
        padding: calc(8px + 0.4vw) calc(18px + 0.8vw);
        font-size: calc(0.8rem + 0.1vw);
    }
    
    .doctor-content .btn-primary i {
        font-size: calc(0.85rem + 0.1vw);
    }
}

/* Before & After Section */
.before-after {
    padding: 100px 0;
    background: #fff;
}

.before-after-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.before-after-content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #f8f9fa;
}

.testimonials-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 2rem;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: calc(33.333% - 1rem);
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.rating {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.rating i {
    color: #d4af37;
    font-size: 1rem;
}

.rating span {
    margin-left: 0.5rem;
    font-weight: 700;
    color: #333;
}

.testimonial-card p {
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author span {
    color: #333;
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
}

.testimonial-author small {
    color: #d4af37;
    font-size: 0.75rem;
    font-weight: 500;
    display: block;
    margin-top: 0.2rem;
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonials-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #d4af37;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.testimonials-btn:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.testimonials-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.testimonials-btn i {
    font-size: 1rem;
}

.testimonials-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonials-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-dot.active {
    background: #d4af37;
    transform: scale(1.2);
}

.testimonials-dot:hover {
    background: #d4af37;
}

/* Skin Renewal Section */
.skin-renewal {
    padding: 100px 0;
    background: #fff;
}

.renewal-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.renewal-content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.renewal-features {
    margin: 2rem 0;
}

.renewal-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.renewal-features li {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    color: #333;
    font-weight: 500;
}

/* About Clinic Section */
.about-clinic {
    padding: 100px 0;
    background: #f8f9fa;
}

.clinic-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.clinic-content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.video-section {
    text-align: center;
}

.video-section h3 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.video-placeholder {
    width: 200px;
    height: 200px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.1);
}

.video-placeholder i {
    font-size: 3rem;
    color: #fff;
}



/* Blog Section */
.blog {
    padding: 100px 0;
    background: #f8f9fa;
}

.blog .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.blog-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.blog-link:hover {
    color: #333;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
    text-align: center;
}

.blog-content h3 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #d4af37;
}

.footer-section h3 {
    color: #d4af37;
    margin-top: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Slider Section */
.slider-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #333;
    margin-top: 0;
    display: block;
    padding-top: 0;
    min-height: 600px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    filter: blur(3px);
}

.slider-slide.active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0px);
    z-index: 1;
}

.slider-slide.next {
    transform: translateX(100%) scale(0.9);
    opacity: 0;
    filter: blur(5px);
}

.slider-slide.prev {
    transform: translateX(-100%) scale(0.9);
    opacity: 0;
    filter: blur(5px);
}

.slider-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.slider-content {
    position: relative;
    z-index: 5;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0;
    background: none;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(30px);
    opacity: 0;
}

.slider-slide.active .slider-content {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.3s;
}

.slider-content h2 {
    font-size: calc(2.5rem + 1.5vw);
    margin-bottom: calc(1rem + 0.5vw);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    color: #fff;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: calc(0.5px + 0.1vw);
    text-transform: uppercase;
    transition: all 0.6s ease;
    transform: translateY(30px);
    opacity: 0;
}

.slider-slide.active .slider-content h2 {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.3s;
}

.slider-content p {
    font-size: calc(0.9rem + 0.4vw);
    margin-bottom: calc(1.5rem + 1vw);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: calc(0.2px + 0.05vw);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    max-width: calc(400px + 15vw);
    margin-left: auto;
    margin-right: auto;
    transition: all 0.6s ease;
    transform: translateY(20px);
    opacity: 0;
}

.slider-slide.active .slider-content p {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.5s;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 5;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-btn i {
    font-size: 1.2rem;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #d4af37;
    transform: scale(1.2);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button a {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-button a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }

    .logo-img {
        height: 220px;
        max-width: 500px;
    }

    .navbar {
        padding: 0.3rem 0;
    }

    .top-bar {
        padding: 4px 0;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-left, .nav-right {
        justify-content: center;
        padding: 0;
    }

    .nav-center {
        padding: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 8px 0;
    }

    .contact-info .phone-number {
        font-size: 0.9rem;
    }

    .contact-info .address {
        font-size: 0.9rem;
    }

    .nav-right .social-link {
        font-size: 1.1rem;
    }

    .slider-section {
        height: 100vh;
        padding-top: 0;
    }

    .slider-content {
        padding: 0 1rem;
        max-width: 95%;
    }

    .slider-content h2 {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
        letter-spacing: 0.8px;
    }

    .slider-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .slider-content .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        margin: 5px;
        display: block;
        width: 200px;
        margin-left: auto;
        margin-right: auto;
    }

    .slider-controls {
        bottom: 20px;
        gap: 1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 120px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-services {
        grid-template-columns: 1fr;
    }

    .nav-buttons {
        display: none;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-slider-container {
        margin-top: 1.5rem;
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
        padding: 1.5rem;
    }
    
    .testimonials-controls {
        margin-top: 1.5rem;
    }
    
    .testimonials-btn {
        width: 35px;
        height: 35px;
    }
    
    .testimonials-btn i {
        font-size: 0.9rem;
    }
}

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .renewal-features ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .container {
        padding: 0 15px;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 1rem;
    }
    
    .testimonials-controls {
        margin-top: 1rem;
        gap: 0.5rem;
    }
    
    .testimonials-btn {
        width: 30px;
        height: 30px;
    }
    
    .testimonials-btn i {
        font-size: 0.8rem;
    }
    
    .testimonials-dot {
        width: 8px;
        height: 8px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Reservation Section */
.reservation {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.reservation .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.reservation .section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    text-transform: lowercase;
}

.reservation .section-header h2 strong {
    color: #d4af37;
}

.reservation-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.reservation-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.reservation-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.info-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item h4 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-item p {
    color: #333;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .reservation {
        padding: 60px 0;
    }
    
    .reservation .section-header h2 {
        font-size: 2rem;
    }
    
    .reservation-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-item {
        padding: 25px;
    }
}

/* Reservation Form Page Styles */
.reservation-form-section {
    padding: 320px 0 80px;
    background: linear-gradient(135deg, 
        #fafafa 0%, 
        #f5f5f5 15%, 
        #f8f8f8 30%, 
        #fdf9f1 45%, 
        #fefcf5 60%, 
        #fcf9f2 75%, 
        #f9f6f0 90%, 
        #ffffff 100%);
    background-attachment: fixed;
    background-size: 400% 400%;
    animation: gradientShift 25s ease infinite;
    min-height: calc(100vh - 80px);
    position: relative;
    overflow: hidden;
}

/* Floating Particles Background for Reservation */
.reservation-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 75%, rgba(212, 175, 55, 0.09) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(190, 190, 190, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 45% 45%, rgba(212, 175, 55, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 65% 75%, rgba(210, 210, 210, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 65%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
    animation: floatingParticles 28s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Decorative Shape for Reservation */
.reservation-form-section::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 5%;
    width: 180px;
    height: 180px;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.12), rgba(190, 190, 190, 0.09));
    border-radius: 50%;
    animation: floatShape1 19s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.reservation-form-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 40px;
    margin-top: 20px;
    position: relative;
    z-index: 10;
}

/* Additional Decorative Elements for Reservation */
.reservation-form-section .section-header::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -5%;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.13), rgba(180, 180, 180, 0.1));
    border-radius: 50%;
    animation: floatShape2 22s ease-in-out infinite reverse;
    z-index: -1;
}

.reservation-form-section .section-header::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: -3%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.16), rgba(170, 170, 170, 0.1));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: floatShape3 26s ease-in-out infinite;
    z-index: -1;
}

/* Sparkle Effects for Reservation */
.reservation-form-container::before {
    content: '⬢';
    position: absolute;
    top: -15px;
    right: 10%;
    font-size: 22px;
    color: rgba(212, 175, 55, 0.4);
    animation: sparkle1 8s ease-in-out infinite;
    z-index: 5;
}

.reservation-form-container::after {
    content: '◈';
    position: absolute;
    bottom: -25px;
    left: 15%;
    font-size: 18px;
    color: rgba(170, 170, 170, 0.5);
    animation: sparkle2 9s ease-in-out infinite;
    z-index: 5;
}

.reservation-form-section .section-header h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
    text-transform: lowercase;
}

.reservation-form-section .section-header h1 strong {
    color: #d4af37;
}

.reservation-form-section .section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.reservation-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.reservation-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin: 30px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 12px;
    margin-top: 2px;
    width: 18px;
    height: 18px;
    accent-color: #d4af37;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #d4af37 0%, #c49b26 100%);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-submit i {
    font-size: 1.3rem;
}

.contact-info-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: fit-content;
}

.contact-info-box h3 {
    color: #333;
    margin-bottom: 25px;
    font-size: 1.4rem;
    text-align: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.contact-method i {
    color: #d4af37;
    font-size: 1.2rem;
    margin-top: 2px;
    min-width: 20px;
}

.contact-method h4 {
    color: #333;
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-method p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Success Message */
.success-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.success-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    margin: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: slideIn 0.3s ease;
}

.success-content i {
    color: #28a745;
    font-size: 4rem;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.success-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.nav-link.active {
    color: #d4af37 !important;
    font-weight: 600;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .reservation-form-section {
        padding: 220px 0 60px;
    }
    
    .reservation-form-section .section-header {
        padding-top: 30px;
        margin-top: 15px;
    }
    
    .reservation-form-section .section-header h1 {
        font-size: 2.2rem;
    }
    
    .reservation-form-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .reservation-form {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-info-box {
        padding: 25px;
    }
    
    .success-content {
        padding: 30px 20px;
        margin: 10px;
    }
}

@media (max-width: 480px) {
    .reservation-form-section .section-header h1 {
        font-size: 1.8rem;
    }
    
    .reservation-form {
        padding: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
    }
}

/* Modern Services Page Styles */
.services-page {
    padding: 320px 0 80px;
    background: linear-gradient(135deg, 
        #fafafa 0%, 
        #f5f5f5 15%, 
        #f8f8f8 30%, 
        #fdf9f1 45%, 
        #fefcf5 60%, 
        #fcf9f2 75%, 
        #f9f6f0 90%, 
        #ffffff 100%);
    background-attachment: fixed;
    background-size: 400% 400%;
    animation: gradientShift 25s ease infinite;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Animated Background Gradient */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating Particles Background */
.services-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(200, 200, 200, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(220, 220, 220, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 60%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: floatingParticles 30s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes floatingParticles {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-10px) rotate(180deg);
        opacity: 1;
    }
}

/* Decorative Shapes */
.services-page::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(200, 200, 200, 0.08));
    border-radius: 50%;
    animation: floatShape1 18s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes floatShape1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-20px, -10px) scale(1.1); }
    66% { transform: translate(10px, -20px) scale(0.9); }
}

/* Additional Decorative Elements */
.services-page .services-header::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -5%;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(190, 190, 190, 0.1));
    border-radius: 50%;
    animation: floatShape2 20s ease-in-out infinite reverse;
    z-index: -1;
}

.services-page .services-header::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -3%;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.15), rgba(180, 180, 180, 0.1));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: floatShape3 24s ease-in-out infinite;
    z-index: -1;
}

@keyframes floatShape2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(15px, -10px) rotate(90deg) scale(1.1); }
    50% { transform: translate(-10px, -25px) rotate(180deg) scale(0.9); }
    75% { transform: translate(-20px, 10px) rotate(270deg) scale(1.05); }
}

@keyframes floatShape3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-15px, 20px) rotate(120deg); }
    66% { transform: translate(25px, -10px) rotate(240deg); }
}

/* Sparkle Effects */
.services-modern-grid::before {
    content: '◊';
    position: absolute;
    top: -20px;
    left: 10%;
    font-size: 24px;
    color: rgba(212, 175, 55, 0.4);
    animation: sparkle1 6s ease-in-out infinite;
    z-index: 5;
}

.services-modern-grid::after {
    content: '⬡';
    position: absolute;
    bottom: -30px;
    right: 15%;
    font-size: 20px;
    color: rgba(180, 180, 180, 0.5);
    animation: sparkle2 7s ease-in-out infinite;
    z-index: 5;
}

@keyframes sparkle1 {
    0%, 100% { opacity: 0.3; transform: translateY(0px) rotate(0deg) scale(1); }
    50% { opacity: 1; transform: translateY(-10px) rotate(180deg) scale(1.2); }
}

@keyframes sparkle2 {
    0%, 100% { opacity: 0.4; transform: translateY(0px) rotate(0deg) scale(1); }
    50% { opacity: 1; transform: translateY(10px) rotate(-180deg) scale(1.1); }
}

/* Mobile Optimizations for Background */
@media (max-width: 768px) {
    .services-page {
        background-attachment: scroll;
        animation-duration: 30s;
    }
    
    .services-page::after {
        width: 120px;
        height: 120px;
        top: 15%;
        right: 2%;
    }
    
    .services-page .services-header::before,
    .services-page .services-header::after {
        display: none;
    }
    
    .services-modern-grid::before,
    .services-modern-grid::after {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .services-page::before {
        opacity: 0.5;
    }
    
    .services-page::after {
        width: 80px;
        height: 80px;
    }
    
    .services-modern-grid::before,
    .services-modern-grid::after {
        display: none;
    }
}

/* Contact Page Styles */
.contact-page-section {
    padding: 400px 0 80px;
    background: linear-gradient(135deg, 
        #fafafa 0%, 
        #f5f5f5 15%, 
        #f8f8f8 30%, 
        #fdf9f1 45%, 
        #fefcf5 60%, 
        #fcf9f2 75%, 
        #f9f6f0 90%, 
        #ffffff 100%);
    background-attachment: fixed;
    background-size: 400% 400%;
    animation: gradientShift 25s ease infinite;
    min-height: calc(100vh - 80px);
    position: relative;
    overflow: hidden;
}

/* Floating Particles Background for Contact */
.contact-page-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(190, 190, 190, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(210, 210, 210, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: floatingParticles 30s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Decorative Shape for Contact */
.contact-page-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 8%;
    width: 160px;
    height: 160px;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(190, 190, 190, 0.08));
    border-radius: 50%;
    animation: floatShape1 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.contact-page-section .section-header {
    text-align: center;
    margin-bottom: 80px;
    padding-top: 60px;
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.contact-page-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 25px;
    border-radius: 15px;
    background: rgba(248, 248, 248, 0.6);
    border: 1px solid rgba(220, 220, 220, 0.3);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-icon i {
    font-size: 1.5rem;
    color: rgba(212, 175, 55, 0.8);
}

.contact-method:hover .contact-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.8), rgba(212, 175, 55, 0.6));
    border-color: rgba(212, 175, 55, 0.4);
    transform: scale(1.1);
}

.contact-method:hover .contact-icon i {
    color: #fff;
}

.contact-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-details p {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-details p a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.contact-details p a:hover {
    color: rgba(212, 175, 55, 0.8);
}

.contact-details span {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Contact CTA Section */
.contact-cta-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-cta-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(220, 220, 220, 0.3);
    transition: all 0.3s ease;
}

.contact-cta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.contact-cta-card .cta-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.contact-cta-card .cta-icon i {
    font-size: 1.8rem;
    color: rgba(212, 175, 55, 0.8);
}

.contact-cta-card:hover .cta-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.8), rgba(212, 175, 55, 0.6));
    border-color: rgba(212, 175, 55, 0.4);
    transform: scale(1.1);
}

.contact-cta-card:hover .cta-icon i {
    color: #fff;
}

.contact-cta-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.contact-cta-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 25px;
}

.btn-whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.05));
    border: 2px solid rgba(37, 211, 102, 0.3);
    color: #25d366;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #25d366, #1da851);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* Contact Body Specific Styles - Removed duplicate header styles */

.reservation-info-note {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.reservation-info-note h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.reservation-info-note p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.reservation-info-note a {
    color: rgba(212, 175, 55, 0.8);
    text-decoration: none;
    font-weight: 500;
}

.reservation-info-note a:hover {
    color: rgba(212, 175, 55, 1);
    text-decoration: underline;
}

/* Mobile Optimizations for Contact Background */
@media (max-width: 1200px) {
    .contact-page-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-page-section {
        background-attachment: scroll;
        animation-duration: 30s;
        padding: 280px 0 60px;
    }
    
    .contact-page-section::after {
        width: 100px;
        height: 100px;
        top: 25%;
        right: 5%;
    }
    
    .contact-page-container {
        gap: 30px;
    }
    
    .contact-info-card {
        padding: 30px 25px;
    }
    
    .contact-methods {
        gap: 25px;
    }
    
    .contact-method {
        padding: 20px;
        gap: 20px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 1.3rem;
    }
    
    .contact-cta-card {
        padding: 30px 20px;
    }
    
    .contact-cta-card .cta-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-cta-card .cta-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-page-section::before {
        opacity: 0.5;
    }
    
    .contact-page-section::after {
        width: 80px;
        height: 80px;
    }
    
    .contact-info-card {
        padding: 25px 20px;
    }
    
    .contact-method {
        padding: 15px;
        gap: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 1rem;
    }
}

/* Mobile Optimizations for Reservation Background */
@media (max-width: 768px) {
    .reservation-form-section {
        background-attachment: scroll;
        animation-duration: 30s;
    }
    
    .reservation-form-section::after {
        width: 100px;
        height: 100px;
        top: 20%;
        left: 2%;
    }
    
    .reservation-form-section .section-header::before,
    .reservation-form-section .section-header::after {
        display: none;
    }
    
    .reservation-form-container::before,
    .reservation-form-container::after {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .reservation-form-section::before {
        opacity: 0.5;
    }
    
    .reservation-form-section::after {
        width: 70px;
        height: 70px;
    }
    
    .reservation-form-container::before,
    .reservation-form-container::after {
        display: none;
    }
}

/* Services Page Header Fix */
.services-body .header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.services-body .nav-link {
    color: #333 !important;
}

.services-body .nav-link::before,
.services-body .nav-link::after {
    display: none !important;
}

.services-body .nav-item::before {
    display: none !important;
}

.services-body .phone-number {
    color: #333 !important;
}

.services-body .address {
    color: #666 !important;
}

.services-body .social-link {
    color: #666 !important;
}

.services-body .social-links a {
    color: #666 !important;
}

/* Reservation Page Header Fix */
.reservation-body .header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.reservation-body .nav-link {
    color: #333 !important;
}

.reservation-body .nav-link::before,
.reservation-body .nav-link::after {
    display: none !important;
}

.reservation-body .nav-item::before {
    display: none !important;
}

.reservation-body .phone-number {
    color: #333 !important;
}

.reservation-body .address {
    color: #666 !important;
}

.reservation-body .social-link {
    color: #666 !important;
}

.reservation-body .social-links a {
    color: #666 !important;
}

/* Contact Body Specific Styles */
.contact-body .header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.contact-body .nav-link {
    color: #333 !important;
}

.contact-body .nav-link::before,
.contact-body .nav-link::after {
    display: none !important;
}

.contact-body .nav-item::before {
    display: none !important;
}

.contact-body .phone-number {
    color: #333 !important;
}

.contact-body .address {
    color: #666 !important;
}

.contact-body .social-link {
    color: #555 !important;
}

.contact-body .social-links a {
    color: #555 !important;
}

/* About Page Styles */
.about-page-section {
    padding: calc(60px + 2vw) 0;
    background: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-modern-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(40px + 2vw);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image-section {
    position: relative;
}

.about-main-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px 0 0 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.treatment-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.about-content-section {
    padding: calc(20px + 1vw);
}

.about-header h1 {
    font-size: calc(2.5rem + 1vw);
    color: #333;
    margin-bottom: calc(20px + 1vw);
    font-weight: 600;
    text-transform: lowercase;
    font-family: 'Poppins', sans-serif;
}

.about-text {
    margin-bottom: calc(30px + 1vw);
}

.about-text p {
    font-size: calc(1rem + 0.2vw);
    line-height: 1.8;
    color: #666;
    margin-bottom: calc(15px + 0.5vw);
    text-align: justify;
}

.about-videos {
    display: flex;
    gap: calc(10px + 0.5vw);
    margin-bottom: calc(15px + 0.5vw);
}

.video-thumbnail {
    position: relative;
    width: calc(80px + 2vw);
    height: calc(60px + 1.5vw);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.05);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-overlay:hover {
    background: rgba(0,0,0,0.5);
}

.video-overlay i {
    color: #fff;
    font-size: calc(1.2rem + 0.3vw);
    background: rgba(0,0,0,0.6);
    width: calc(30px + 0.8vw);
    height: calc(30px + 0.8vw);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.video-pagination .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.video-pagination .dot.active {
    background: #333;
}

/* About Body Specific Styles */
.about-body .header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
}

.about-body .nav-link {
    color: #333 !important;
}

.about-body .nav-link::before,
.about-body .nav-link::after {
    background: #333 !important;
}

.about-body .nav-item::before {
    background: conic-gradient(from 0deg, transparent, rgba(51, 51, 51, 0.1), transparent) !important;
}

.about-body .phone-number {
    color: #333 !important;
}

.about-body .address {
    color: #555 !important;
}

.about-body .social-link {
    background: rgba(51, 51, 51, 0.1);
    border-color: rgba(51, 51, 51, 0.2);
    color: #333;
}

.about-body .social-links a {
    color: #333 !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-modern-layout {
        grid-template-columns: 1fr;
        gap: calc(30px + 1vw);
    }
    
    .about-main-image {
        border-radius: 20px;
    }
    
    .treatment-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .about-page-section {
        padding: calc(40px + 1vw) 0;
    }
    
    .about-header h1 {
        font-size: calc(2rem + 0.8vw);
    }
    
    .about-text p {
        font-size: calc(0.9rem + 0.15vw);
    }
    
    .treatment-image {
        height: 300px;
    }
    
    .about-videos {
        gap: calc(8px + 0.3vw);
    }
    
    .video-thumbnail {
        width: calc(70px + 1.5vw);
        height: calc(50px + 1vw);
    }
}

@media (max-width: 480px) {
    .about-modern-layout {
        gap: calc(20px + 0.5vw);
    }
    
    .about-header h1 {
        font-size: calc(1.8rem + 0.6vw);
    }
    
    .treatment-image {
        height: 250px;
    }
    
    .video-thumbnail {
        width: calc(60px + 1vw);
        height: calc(45px + 0.8vw);
    }
    
    .video-overlay i {
        font-size: calc(1rem + 0.2vw);
        width: calc(25px + 0.6vw);
        height: calc(25px + 0.6vw);
    }
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 40px;
    margin-top: 20px;
    position: relative;
    z-index: 10;
}

.services-header h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: lowercase;
}

.services-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Modern Services Grid */
.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

@media (max-width: 1200px) {
    .services-modern-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .services-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-modern-card {
    background: white;
    border-radius: 15px;
    padding: 30px 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: #d4af37;
}

.service-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #c49b26);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-modern-card:hover::before {
    transform: scaleX(1);
}

.service-image {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    position: relative;
}

.service-modern-card:hover .service-image {
    background: linear-gradient(135deg, #d4af37, #c49b26);
    transform: scale(1.1);
}

.service-image i {
    font-size: 1.5rem;
    color: #666;
    transition: color 0.3s ease;
}

.service-modern-card:hover .service-image i {
    color: white;
}

.service-modern-card h2 {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.service-modern-card:hover h2 {
    color: #d4af37;
}

/* Bottom Section */
.services-bottom {
    margin: 80px 0;
}

.services-description {
    text-align: center;
    margin-bottom: 60px;
}

.services-description h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: lowercase;
}

.services-description p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid-bottom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-bottom-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-bottom-card:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #d4af37;
}

.service-bottom-image {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-bottom-card:hover .service-bottom-image {
    background: linear-gradient(135deg, #d4af37, #c49b26);
}

.service-bottom-image i {
    font-size: 1.5rem;
    color: #d4af37;
    transition: color 0.3s ease;
}

.service-bottom-card:hover .service-bottom-image i {
    color: white;
}

.service-bottom-card h3 {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    margin: 0;
}

/* Modern CTA Section */
.services-cta-modern {
    background: linear-gradient(135deg, 
        rgba(248, 248, 248, 0.95) 0%, 
        rgba(245, 245, 245, 0.95) 25%, 
        rgba(253, 249, 241, 0.95) 50%, 
        rgba(252, 249, 242, 0.95) 75%, 
        rgba(250, 250, 250, 0.95) 100%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    padding: 80px 40px;
    text-align: center;
    color: #333;
    margin: 100px 0;
    position: relative;
    overflow: hidden;
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.services-cta-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(200, 200, 200, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.services-cta-modern > * {
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.9) 0%, 
        rgba(200, 160, 50, 0.8) 50%,
        rgba(212, 175, 55, 0.9) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.2),
        0 0 0 10px rgba(212, 175, 55, 0.05),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.cta-icon i {
    font-size: 2rem;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.services-cta-modern h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #333333, #666666, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-clip: text;
}

.services-cta-modern p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.cta-btn {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(200, 200, 200, 0.5);
    border-radius: 15px;
    padding: 25px 20px;
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cta-btn::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;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn.primary {
    border-color: rgba(212, 175, 55, 0.6);
    background: rgba(212, 175, 55, 0.2);
    color: #333;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.cta-btn.primary:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.95), rgba(200, 160, 50, 0.9));
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.35);
    border-color: rgba(212, 175, 55, 0.8);
}

.cta-btn.primary .btn-title,
.cta-btn.primary .btn-subtitle {
    color: #333;
}

.cta-btn.primary:hover .btn-title,
.cta-btn.primary:hover .btn-subtitle {
    color: #fff;
}

.cta-btn.secondary {
    border-color: rgba(37, 211, 102, 0.6);
    background: rgba(37, 211, 102, 0.2);
    color: #333;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.15);
}

.cta-btn.secondary:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.95), rgba(29, 168, 81, 0.9));
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.35);
    border-color: rgba(37, 211, 102, 0.8);
}

.cta-btn.secondary .btn-title,
.cta-btn.secondary .btn-subtitle {
    color: #333;
}

.cta-btn.secondary:hover .btn-title,
.cta-btn.secondary:hover .btn-subtitle {
    color: #fff;
}

.cta-btn.tertiary {
    border-color: rgba(150, 150, 150, 0.6);
    background: rgba(240, 240, 240, 0.7);
    color: #333;
    box-shadow: 0 8px 25px rgba(120, 120, 120, 0.15);
}

.cta-btn.tertiary:hover {
    background: linear-gradient(135deg, rgba(200, 200, 200, 0.95), rgba(180, 180, 180, 0.9));
    color: #333;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(120, 120, 120, 0.25);
    border-color: rgba(120, 120, 120, 0.8);
}

.cta-btn.tertiary .btn-title,
.cta-btn.tertiary .btn-subtitle {
    color: #333;
}

.cta-btn.tertiary:hover .btn-title,
.cta-btn.tertiary:hover .btn-subtitle {
    color: #222;
}

.btn-icon {
    width: 50px;
    height: 50px;
    background: rgba(220, 220, 220, 0.6);
    border: 1px solid rgba(200, 200, 200, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-icon i {
    font-size: 1.3rem;
    color: #555;
}

.cta-btn:hover .btn-icon {
    background: rgba(212, 175, 55, 0.8);
    border-color: rgba(212, 175, 55, 0.6);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.cta-btn:hover .btn-icon i {
    color: #fff;
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.btn-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.btn-subtitle {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
    line-height: 1.2;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Mobile Responsive for Modern Services */
@media (max-width: 768px) {
    .services-page {
        padding: 220px 0 60px;
    }
    
    .services-header {
        padding-top: 30px;
        margin-bottom: 40px;
        margin-top: 15px;
    }
    
    .services-header h1 {
        font-size: 2.5rem;
    }
    
    .services-header p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .services-modern-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .service-modern-card {
        padding: 25px 20px;
        min-height: 150px;
    }
    
    .services-bottom {
        margin: 60px 0;
    }
    
    .services-description {
        margin-bottom: 40px;
    }
    
    .services-description h2 {
        font-size: 2rem;
    }
    
    .services-grid-bottom {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .service-bottom-card {
        padding: 25px 15px;
    }
    
    .services-cta-modern {
        padding: 60px 20px;
        margin: 60px 0;
    }
    
    .services-cta-modern h2 {
        font-size: 2.2rem;
    }
    
    .services-cta-modern p {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .cta-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .cta-icon i {
        font-size: 1.5rem;
    }
    
    .cta-buttons-modern {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cta-btn {
        padding: 20px 15px;
    }
    
    .btn-icon {
        width: 45px;
        height: 45px;
    }
    
    .btn-title {
        font-size: 1.1rem;
    }
    
    .btn-subtitle {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .services-header h1 {
        font-size: 2rem;
    }
    
    .services-modern-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-modern-card {
        padding: 25px 15px;
    }
    
    .service-image {
        width: 70px;
        height: 70px;
    }
    
    .service-image i {
        font-size: 1.8rem;
    }
    
    .service-modern-card h2 {
        font-size: 1.2rem;
    }
    
    .services-description h2 {
        font-size: 1.8rem;
    }
    
    .services-grid-bottom {
        grid-template-columns: 1fr;
    }
    
    .services-cta-modern h2 {
        font-size: 1.6rem;
    }
}

/* ========== GENTLE MOBILE RESPONSIVE DESIGN ========== */

/* Hero and Slider Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }
    
    .slider-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .slider-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .slider-content .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin: 0 5px 10px 0;
    }
    
    .slider-controls {
        bottom: 20px;
        gap: 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn i {
        font-size: 1rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 70px 0 50px;
    }
    
    .slider-content {
        padding: 20px;
    }
    
    .slider-content h2 {
        font-size: 1.7rem;
        margin-bottom: 0.8rem;
    }
    
    .slider-content p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .slider-content .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .slider-controls {
        bottom: 15px;
        gap: 0.8rem;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .slider-btn i {
        font-size: 0.9rem;
    }
    
    .slider-dots {
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

/* Services Grid Responsive - Gentle */
@media (max-width: 768px) {
    .services-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .services-modern-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Form Responsive - Basic */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    
    .submit-btn {
        width: 100%;
    }
}

/* Contact Page & Footer - Gentle Responsive */
@media (max-width: 768px) {
    .contact-page-container {
        flex-direction: column;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-cta-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}