/* ===================================
   RAY ADVANCED DERMATOLOGY & AESTHETIC CLINIC
   Color Scheme: Gold, Silver, Black, White
   =================================== */

/* ===================================
   VARIABLES
   =================================== */
:root {
    /* Colors */
    --color-gold: #D4AF37;
    --color-gold-light: #F4E4C1;
    --color-gold-dark: #B8941E;
    --color-silver: #C0C0C0;
    --color-silver-light: #E8E8E8;
    --color-black: #0a0a0a;
    --color-black-light: #1a1a1a;
    --color-gray-dark: #2b2b2b;
    --color-gray: #4a4a4a;
    --color-white: #ffffff;
    --color-off-white: #f5f5f5;

    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-heading: 'Cormorant Garamond', serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition: all 0.3s ease;
}

/* ===================================
   RESET & BASE
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--color-gray-dark);
    line-height: 1.6;
    background-color: var(--color-white);
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    transition: var(--transition);
}

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

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: 1.125rem;
    line-height: 1.8;
}

/* ===================================
   LAYOUT
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-xl) 0;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #1a1a1a !important;
    box-shadow: none;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: #1a1a1a !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .nav-menu a {
    color: var(--color-white);
}

.navbar.scrolled .dropdown-arrow {
    color: var(--color-white);
}

.navbar .nav-container,
.navbar .logo,
.navbar .nav-menu {
    background: transparent !important;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--spacing-md);
    background: transparent !important;
    gap: 2rem;
}

.navbar .container {
    background: transparent !important;
}

.logo {
    display: flex;
    align-items: center;
    background: transparent;
    flex-shrink: 0;
}

.logo-image {
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    display: block;
    background: transparent !important;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
}

.logo-text-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    font-family: var(--font-heading);
    letter-spacing: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-text-sub {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-white);
    font-family: var(--font-primary);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: -5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.logo h1 {
    display: none;
    font-size: 2rem;
    color: var(--color-gold);
    margin: 0;
    letter-spacing: 3px;
}

.logo p {
    display: none;
    font-size: 0.75rem;
    color: var(--color-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    background: transparent;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-menu li {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.nav-menu a {
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

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

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

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.25rem;
    transition: var(--transition);
    color: var(--color-white);
    display: inline-block;
    vertical-align: middle;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-black-light);
    width: 220px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    border: 2px solid var(--color-gold);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 1001;
    overflow: hidden;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%);
}

.dropdown-content a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a::after {
    display: none;
}

.dropdown-content a:hover {
    background: var(--color-gold);
    color: var(--color-black);
    padding-left: 2rem;
}

.cta-button {
    background: var(--color-gold);
    color: var(--color-white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    align-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.cta-button:hover {
    background: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--color-white);
    transition: var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--color-white);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-gray-dark) 100%);
    margin-top: 0;
    padding-top: 200px;
    padding-bottom: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-text {
    max-width: 700px;
}

.hero-slideshow {
    position: relative;
    margin-left: auto;
    padding-left: var(--spacing-lg);
    display: block;
    width: 100%;
}

.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    margin: 0 auto;
    margin-top: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    border: 3px solid var(--color-gold);
    background: var(--color-black);
    display: block;
}

.slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.slide.active {
    display: block !important;
    position: absolute;
    animation: fadeIn 0.8s ease-in-out;
    z-index: 2;
}

@keyframes fadeIn {
    from {
        opacity: 0.6;
    }
    to {
        opacity: 1;
    }
}

.slideshow-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--color-gold);
}

.dot:hover,
.dot.active {
    background: var(--color-gold);
    transform: scale(1.2);
}

.hero-title {
    color: var(--color-white);
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: var(--spacing-sm);
    line-height: 1.1;
}

.hero-subtitle {
    color: var(--color-gold);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.hero-description {
    color: var(--color-silver-light);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--color-gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

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

.btn-secondary:hover {
    background: var(--color-silver);
    color: var(--color-black);
    border-color: var(--color-silver);
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    color: var(--color-black);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--color-gold);
}

.section-header p {
    color: var(--color-gray);
    font-size: 1.125rem;
    margin-top: var(--spacing-md);
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    background: var(--color-off-white);
    scroll-margin-top: 120px;
}

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

.service-card {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--color-gold);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    font-size: 2.5rem;
    transition: var(--transition);
    overflow: hidden;
    border: 3px solid var(--color-gold);
    padding: 0;
}

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

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

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

.service-card h3 {
    color: var(--color-black);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.service-card > p {
    color: var(--color-gray);
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
}

.service-list {
    margin: var(--spacing-md) 0;
    padding-left: 1.5rem;
}

.service-list li {
    color: var(--color-gray-dark);
    margin-bottom: 0.5rem;
    position: relative;
    font-size: 0.95rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: -1.5rem;
    color: var(--color-gold);
    font-weight: bold;
}

.service-link {
    color: var(--color-gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: var(--spacing-sm);
}

.service-link:hover {
    color: var(--color-gold-dark);
    transform: translateX(5px);
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    background: var(--color-white);
    scroll-margin-top: 120px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: var(--spacing-xl);
    align-items: start;
    padding: var(--spacing-md) 0;
}

.about-left-col {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    position: sticky;
    top: 100px;
    align-self: start;
}

.about-image {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--color-gold);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    text-align: center;
    white-space: nowrap;
}

.about-content h2 {
    margin-bottom: var(--spacing-sm);
}

.about-content h3 {
    color: var(--color-gold);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
}

.about-intro {
    font-size: 1.25rem;
    color: var(--color-gray-dark);
    font-weight: 500;
    margin-bottom: var(--spacing-md);
}

.about-content > p {
    color: var(--color-gray);
    margin-bottom: var(--spacing-md);
}

.credentials {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    background: linear-gradient(135deg, var(--color-off-white) 0%, #ffffff 100%);
    padding: var(--spacing-lg);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.credential-item h4 {
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.credential-item ul {
    padding-left: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.credential-item li {
    color: var(--color-gray-dark);
    margin-bottom: 0.75rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.credential-item li::before {
    content: '•';
    position: absolute;
    left: -1.5rem;
    color: var(--color-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 2px solid var(--color-off-white);
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 4.5rem;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1;
}

.stat-item p {
    color: var(--color-gray-dark);
    font-size: 1.125rem;
    font-weight: 500;
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */
.why-choose {
    background: linear-gradient(135deg, var(--color-black-light) 0%, var(--color-gray-dark) 100%);
    color: var(--color-white);
}

.why-choose .section-header h2,
.why-choose .section-header p {
    color: var(--color-white);
}

.why-choose .section-header h2::after {
    background: var(--color-gold);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-lg);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.feature-card h3 {
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--color-silver-light);
    font-size: 0.95rem;
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery {
    background: var(--color-off-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 100%);
    padding: var(--spacing-md);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-overlay h4 {
    color: var(--color-gold);
    font-size: 1.25rem;
}

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

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials {
    background: var(--color-white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--color-off-white);
    padding: var(--spacing-lg);
    border-radius: 15px;
    border-left: 4px solid var(--color-gold);
}

.stars {
    color: var(--color-gold);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-text {
    color: var(--color-gray-dark);
    font-style: italic;
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Review Form */
.review-form-container {
    max-width: 900px;
    margin: 4rem auto 0;
    padding: 2rem;
    background: var(--color-off-white);
    border-radius: 15px;
    border: 2px solid var(--color-gold);
}

.review-form-container h3 {
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 0.5rem;
}

.review-form-container > p {
    text-align: center;
    color: var(--color-gray-dark);
    margin-bottom: 2rem;
}

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

.review-form .form-group {
    margin-bottom: 0;
}

.review-form label {
    display: block;
    color: var(--color-gray-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.review-form input[type="text"],
.review-form select,
.review-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--color-silver);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.review-form input[type="text"]:focus,
.review-form select:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

.review-form select {
    cursor: pointer;
}

.star-rating {
    display: flex;
    gap: 0.3rem;
    font-size: 2.2rem;
    margin-top: 0.25rem;
}

.star-rating .star {
    cursor: pointer;
    color: #ddd;
    transition: all 0.2s ease;
    user-select: none;
    line-height: 1;
    -webkit-text-stroke: 1px #ccc;
}

.star-rating .star:hover {
    color: #f4d03f;
    transform: scale(1.2);
    -webkit-text-stroke: 1px #d4af37;
}

.star-rating .star.active {
    color: var(--color-gold);
    -webkit-text-stroke: 1px #b8941e;
    transform: scale(1.1);
}

.review-form button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
}

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

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 100%);
    text-align: center;
}

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.cta-content p {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
}

.cta-section .btn-primary {
    background: var(--color-white);
    color: var(--color-gold);
}

.cta-section .btn-primary:hover {
    background: var(--color-off-white);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--color-black-light);
    color: var(--color-silver-light);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo-image {
    height: 130px;
    width: auto;
    object-fit: contain;
    margin-bottom: var(--spacing-sm);
}

.footer-logo h3 {
    color: var(--color-gold);
    font-size: 2rem;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: var(--color-silver);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-sm);
}

.footer-col p {
    color: var(--color-silver-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col h4 {
    color: var(--color-gold);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

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

.footer-col ul li a {
    color: var(--color-silver-light);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.contact-info li {
    color: var(--color-silver-light);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(192, 192, 192, 0.2);
    padding-top: var(--spacing-md);
    text-align: center;
}

.footer-bottom p {
    color: var(--color-silver);
    font-size: 0.875rem;
}

/* ===================================
   FLOATING CONTACT BUTTONS
   =================================== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 999;
    pointer-events: none;
}

.floating-buttons .float-btn {
    pointer-events: auto;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--color-white);
    cursor: pointer;
    border: none;
}

.float-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.float-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.call-btn {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
}

.call-btn:hover {
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
}

.btn-text {
    white-space: nowrap;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

/* Pulse animation for attention */
@keyframes pulse {
    0% {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }
}

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

/* Location Selection Modal */
.location-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.location-modal.active {
    display: flex;
}

.location-modal .modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    max-width: 450px;
    width: 90%;
    border: 3px solid var(--color-gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Theme-specific borders */
.location-modal.theme-gold .modal-content {
    border-color: var(--color-gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.6), 0 0 30px rgba(212, 175, 55, 0.3);
}

.location-modal.theme-blue .modal-content {
    border-color: #2196F3;
    box-shadow: 0 20px 60px rgba(33, 150, 243, 0.6), 0 0 30px rgba(33, 150, 243, 0.3);
}

.location-modal.theme-green .modal-content {
    border-color: #25D366;
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.6), 0 0 30px rgba(37, 211, 102, 0.3);
}

.location-modal h3 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.location-modal p {
    color: var(--color-white);
    margin-bottom: 2rem;
}

.location-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.location-btn {
    background: var(--color-off-white);
    border: 2px solid var(--color-gold);
    padding: 1.5rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.location-btn:hover {
    background: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.location-btn:hover .location-name,
.location-btn:hover .location-phone {
    color: var(--color-white);
}

.location-icon {
    font-size: 2rem;
}

.location-name {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--color-gray-dark);
}

.location-phone {
    color: var(--color-gray);
    font-size: 1.1rem;
}

.modal-close {
    background: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ===================================
   BOTTOM NAVIGATION (MOBILE)
   =================================== */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-black-light);
    border-top: 2px solid var(--color-gold);
    padding: 8px 0;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.bottom-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--color-silver);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    min-width: 60px;
}

.bottom-nav-item svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.bottom-nav-item.active,
.bottom-nav-item:hover {
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
}

.bottom-nav-item span {
    font-size: 0.7rem;
    white-space: nowrap;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet */
@media (max-width: 991px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--color-black);
        flex-direction: column;
        padding: var(--spacing-md);
        gap: 0;
        transition: var(--transition);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu > li > a {
        color: var(--color-white) !important;
        display: block;
        padding: 1.25rem 1rem;
        font-size: 1.1rem;
        font-weight: 500;
    }

    .nav-menu > li > a:hover {
        background: rgba(212, 175, 55, 0.1);
        padding-left: 1.5rem;
    }

    .nav-menu > li > a.active {
        color: var(--color-gold) !important;
        background: rgba(212, 175, 55, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        z-index: 101;
    }

    .cta-button {
        display: none !important;
    }

    /* Mobile Dropdown */
    .dropdown {
        padding-bottom: 0;
    }

    .dropdown > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        box-shadow: none;
        margin: 0;
        padding: 0;
        border: none;
        border-radius: 0;
        background: rgba(0, 0, 0, 0.3);
    }

    .dropdown-content a {
        padding: 1rem 2rem;
        font-size: 1rem;
        color: var(--color-silver-light) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown-content a:hover {
        background: rgba(212, 175, 55, 0.1);
        color: var(--color-gold) !important;
        padding-left: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .about-left-col {
        gap: var(--spacing-md);
        position: static;
        top: auto;
    }

    .about-image {
        padding: 5px;
    }

    .about-image img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }

    .about-badge {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        white-space: normal;
        text-align: center;
        max-width: 90%;
    }

    .credentials {
        grid-template-columns: 1fr;
        padding: var(--spacing-md);
    }

    .credential-item h4 {
        font-size: 1.1rem;
    }

    .credential-item ul {
        padding-left: 1.2rem;
    }

    .credential-item li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .stat-item h3 {
        font-size: 3.5rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .slideshow-container {
        max-width: 400px;
        height: 400px;
    }

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

/* Mobile */
@media (max-width: 768px) {
    /* Center the navbar container and make logo larger */
    .nav-container {
        justify-content: center;
        padding: 0.5rem var(--spacing-md);
    }

    .logo {
        justify-content: center;
    }

    .logo-image {
        height: 130px;
    }

    .logo-text-main {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .logo-text-sub {
        font-size: 0.6rem;
        letter-spacing: 2px;
        margin-top: -3px;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 150px;
        padding-bottom: var(--spacing-xl);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .hero-slideshow {
        order: -1;
        text-align: center;
        padding-left: 0;
        margin-top: 0;
    }

    .slideshow-container {
        max-width: 100%;
        height: 350px;
        margin-top: 0;
    }

    .slideshow-dots {
        bottom: 15px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .hero-badge {
        position: static;
        margin-top: var(--spacing-md);
        display: inline-block;
    }

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

    .btn {
        width: 100%;
        text-align: center;
    }

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

    .stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .stat-item h3 {
        font-size: 3rem;
    }

    .stat-item p {
        font-size: 1rem;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Hide hamburger menu on mobile - use bottom nav instead */
    .hamburger {
        display: none !important;
    }

    /* Show bottom navigation on mobile */
    .bottom-nav {
        display: block;
    }

    /* Add padding to body to account for bottom nav */
    body {
        padding-bottom: 70px;
    }

    /* Floating buttons responsive - move up to avoid bottom nav */
    .floating-buttons {
        bottom: 80px;
        left: 0;
        right: 0;
        padding: 0 15px;
    }

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

    .float-btn svg {
        width: 18px;
        height: 18px;
    }

    .btn-text {
        font-size: 0.8rem;
    }

    /* About section mobile fixes */
    .about-content h2 {
        font-size: 1.8rem;
        margin-bottom: var(--spacing-sm);
    }

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

    .about-intro {
        font-size: 1rem;
        line-height: 1.6;
    }

    .about-content h4 {
        font-size: 1.1rem;
        margin-top: 1.5rem !important;
    }

    .about-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .about-content ul {
        padding-left: 1.2rem;
    }

    .about-content li {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .stats {
        margin-top: var(--spacing-lg);
    }

    .stat-item {
        padding: var(--spacing-md);
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

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

@media (max-width: 478px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    section {
        padding: var(--spacing-lg) 0;
    }
}

/* ===================================
   HOSPITAL GALLERY CAROUSEL
   =================================== */
.hospital-gallery {
    padding: var(--spacing-xl) 0;
    background: var(--color-off-white);
}

.hospital-gallery .section-header {
    margin-bottom: var(--spacing-md);
}

.gallery-carousel {
    max-width: 1000px;
    margin: 0 auto;
}

.main-image-container {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}

.main-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.main-gallery-image.fade-out {
    opacity: 0;
}

.main-gallery-image.fade-in {
    opacity: 1;
}

.thumbnail-strip {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 20px;
}

.thumbnail {
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
    position: relative;
}

.thumbnail:hover {
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.thumbnail.active {
    border-color: var(--color-gold);
    opacity: 1;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-image-container {
        height: 300px;
    }

    .thumbnail {
        width: 80px;
        height: 60px;
    }

    .thumbnail-strip {
        gap: 10px;
    }

    .hospital-gallery {
        padding: var(--spacing-lg) 0;
    }
}

@media (max-width: 480px) {
    .main-image-container {
        height: 250px;
    }

    .thumbnail {
        width: 60px;
        height: 45px;
    }
}
