@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ==========================================
   DESIGN SYSTEM VARIABLES
   ========================================== */
:root {
    /* Color Palette */
    --primary: #0F2C2C;         /* Deep Premium Slate Teal */
    --primary-light: #183C3C;   /* Mid Teal for hovers */
    --primary-bg-alt: #EBF0F0;  /* Very soft light teal tint */
    --secondary: #C5A880;       /* Champagne Gold */
    --secondary-dark: #A58962;  /* Medium Gold for text on light backgrounds */
    --secondary-light: #FAF5EF; /* Warm Luxury Cream */
    --accent: #E5D5C5;          /* Very light rose gold tone */
    
    /* Neutral Shades */
    --bg-primary: #FAF9F6;      /* Off-white canvas */
    --bg-secondary: #F3EFE9;    /* Muted section background */
    --text-primary: #1C2727;    /* Charcoal teal text */
    --text-secondary: #586B6B;  /* Muted slate text */
    --text-light: #FAF9F6;      /* Off-white text for dark headers */
    --white: #FFFFFF;
    
    /* Layout Elements */
    --border-color: #E2DBD0;    /* Thin elegant gold-cream borders */
    --border-color-light: #EFEBE4;
    --shadow-sm: 0 4px 10px rgba(15, 44, 44, 0.02);
    --shadow-md: 0 12px 30px rgba(15, 44, 44, 0.05);
    --shadow-lg: 0 24px 50px rgba(15, 44, 44, 0.08);
    
    /* Animations */
    --transition-fast: 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Grid/Container */
    --container-width: 1280px;
}

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

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.25rem;
    position: relative;
    margin-bottom: 1.5rem;
}

h2.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--secondary);
    margin: 1rem auto 0 auto;
}

h2.section-title-left::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--secondary);
    margin: 1rem 0 0 0;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-md);
}

/* ==========================================
   GLOBAL COMPONENTS & LAYOUTS
   ========================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

.section-bg-alt {
    background-color: var(--bg-secondary);
}

/* Buttons */
.btn-group {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 1px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(197, 168, 128, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(15, 44, 44, 0.1);
}

.btn-secondary-dark {
    background-color: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
}

.btn-secondary-dark:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(15, 44, 44, 0.2);
}

/* ==========================================
   TOP INFO BAR
   ========================================== */
.top-bar {
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.85rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.top-bar-item svg {
    width: 14px;
    height: 14px;
    fill: var(--secondary);
}

.top-bar-item a:hover {
    color: var(--secondary);
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
header {
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

header.is-sticky {
    box-shadow: var(--shadow-md);
    background-color: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(8px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(15, 44, 44, 0.15);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary);
    letter-spacing: 0.5px;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-dark);
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--secondary);
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary-dark);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    margin: 5px 0;
    transition: var(--transition-fast);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    background: radial-gradient(circle at 80% 30%, var(--secondary-light) 0%, var(--bg-primary) 70%);
    padding: 8rem 0;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    top: -50px;
    right: -100px;
    opacity: 0.4;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 720px;
}

.hero-subtitle-top {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-subtitle-top::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: var(--secondary);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero-content h1 span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--secondary-dark);
    font-weight: 400;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img-bg {
    width: 380px;
    height: 480px;
    border-radius: 200px 200px 0 0;
    background-color: var(--border-color);
    position: absolute;
    z-index: 1;
    bottom: -20px;
    right: 20px;
    border: 1px solid var(--secondary);
    opacity: 0.2;
}

.hero-image {
    width: 380px;
    height: 480px;
    border-radius: 200px 200px 0 0;
    object-fit: cover;
    z-index: 2;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.hero-badge {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background-color: var(--primary);
    color: var(--white);
    padding: 1.2rem 2rem;
    border-radius: 4px;
    z-index: 3;
    box-shadow: var(--shadow-lg);
    border-left: 3px solid var(--secondary);
}

.hero-badge-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-badge-desc {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Features */
.hero-features {
    background-color: var(--primary);
    color: var(--white);
    padding: 3rem 0;
    position: relative;
    z-index: 10;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 1rem;
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon-wrapper {
    min-width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border: 1px solid rgba(197, 168, 128, 0.3);
}

.feature-icon-wrapper svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.feature-text h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.1rem;
}

.feature-text p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* ==========================================
   ABOUT PREVIEW / SECTION
   ========================================== */
.about-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
}

.about-images::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    z-index: -1;
    bottom: -30px;
    left: -30px;
    opacity: 0.6;
}

.about-img-left {
    margin-top: 3rem;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--white);
}

.about-img-right {
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--white);
}

.about-info-badge {
    grid-column: span 2;
    background-color: var(--secondary-light);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.about-info-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.about-info-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-primary);
}

.about-content .section-title-left {
    margin-bottom: 1.5rem;
}

.about-content-lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.highlight-list {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.highlight-item svg {
    width: 18px;
    height: 18px;
    fill: var(--secondary-dark);
    flex-shrink: 0;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem auto;
}

.section-header p {
    font-size: 1.05rem;
}

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

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-color-light);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-color);
}

.service-card-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
    background-color: var(--bg-secondary);
}

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

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

.service-card-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: rgba(15, 44, 44, 0.95);
    color: var(--secondary);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 2px;
}

.service-card-content {
    padding: 2.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    margin-bottom: 0.75rem;
    transition: var(--transition-fast);
}

.service-card:hover h3 {
    color: var(--secondary-dark);
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card-link {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: var(--transition-fast);
}

.service-card:hover .service-card-link svg {
    transform: translateX(4px);
}

.service-card-link:hover {
    color: var(--secondary-dark);
}

/* ==========================================
   WHY CHOOSE US & CLINIC BENEFITS
   ========================================== */
.why-section-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.why-img-collage {
    position: relative;
    border-radius: var(--border-radius-lg);
}

.why-img-main {
    width: 100%;
    height: 520px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.why-img-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border-radius: 4px;
    max-width: 250px;
}

.why-img-badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.5;
}

.why-img-badge-text strong {
    color: var(--primary);
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.why-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.why-item {
    display: flex;
    flex-direction: column;
}

.why-item-icon {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.25rem;
    border: 1px solid var(--border-color);
}

.why-item-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.why-item h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.why-item p {
    font-size: 0.88rem;
    margin-bottom: 0;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '“';
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: 25rem;
    color: rgba(197, 168, 128, 0.1);
    top: -50px;
    left: 20px;
    line-height: 1;
}

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

.testimonial-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color-light);
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
    color: var(--secondary);
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.testimonial-card p {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-author {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-author::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background-color: var(--secondary);
}

/* ==========================================
   FAQS SECTION
   ========================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-color-light);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--border-color);
}

.faq-question-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
    transition: var(--transition-fast);
}

.faq-question-btn h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--primary);
    padding-right: 1.5rem;
    transition: var(--transition-fast);
}

.faq-question-btn:hover h3 {
    color: var(--secondary-dark);
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--secondary-dark);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.faq-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* Active State for FAQ */
.faq-item.active {
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-question-btn {
    background-color: var(--secondary-light);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: var(--white);
}

.faq-answer-inner {
    padding: 1.5rem 2rem 2rem 2rem;
    border-top: 1px solid var(--border-color-light);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}

/* ==========================================
   CONTACT SECTION & FORM
   ========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
    align-items: flex-start;
}

.contact-info-card {
    background-color: var(--primary);
    color: var(--white);
    padding: 3rem;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
}

.contact-info-card h3 {
    color: var(--secondary);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.25rem;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    flex-shrink: 0;
    border: 1px solid rgba(197, 168, 128, 0.2);
}

.contact-detail-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.contact-detail-text h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-detail-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.contact-hours-list {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.contact-hours-list h4 {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.contact-hours-row span:last-child {
    font-weight: 600;
    color: var(--white);
}

/* Contact Form */
.booking-form-wrapper {
    background-color: var(--white);
    padding: 3.5rem;
    border-radius: 4px;
    border: 1px solid var(--border-color-light);
    box-shadow: var(--shadow-md);
}

.booking-form-wrapper h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.booking-form-wrapper p {
    margin-bottom: 2rem;
}

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

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

.form-control {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    padding: 0.85rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: var(--transition-fast);
    width: 100%;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(15, 44, 44, 0.08);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23586B6B'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5rem;
    padding-right: 2.5rem;
}

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

.form-feedback {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    display: none;
}

.form-feedback.success {
    display: block;
    background-color: #E6F4EA;
    color: #137333;
    border: 1px solid #C1E7C4;
}

.form-feedback.error {
    display: block;
    background-color: #FCE8E6;
    color: #C5221F;
    border: 1px solid #FAD2CF;
}

/* ==========================================
   CALL TO ACTION BANNER (HOME/PAGES)
   ========================================== */
.cta-banner {
    background-color: var(--primary);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.cta-banner-content {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-banner-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-banner-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ==========================================
   PAGE BANNER (SUBPAGES)
   ========================================== */
.page-banner {
    background: linear-gradient(rgba(15, 44, 44, 0.92), rgba(15, 44, 44, 0.92)), radial-gradient(circle, var(--primary-light) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.page-banner h1 {
    color: var(--secondary);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.breadcrumbs {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

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

.breadcrumbs a:hover {
    color: var(--secondary);
}

.breadcrumbs-separator {
    color: var(--secondary);
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
    background-color: #0B1E1E;
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 2rem 0;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-widget h3 {
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--secondary);
}

.footer-about-text {
    margin-top: 1.5rem;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-social-link:hover {
    background-color: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

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

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links-list a::before {
    content: '→';
    color: var(--secondary);
    font-size: 0.8rem;
    opacity: 0.6;
    transition: var(--transition-fast);
}

.footer-links-list a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-links-list a:hover::before {
    opacity: 1;
}

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

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    fill: var(--secondary);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.footer-contact-item span {
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
}

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

/* ==========================================
   INTERACTIVE SUBPAGE SPECIFIC VIEWS
   ========================================== */
.services-category-title {
    grid-column: span 3;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.services-category-title:first-of-type {
    margin-top: 0;
}

.services-category-title::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: var(--border-color-light);
}

/* ==========================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================== */
@media (max-width: 1200px) {
    h1 { font-size: 2.75rem; }
    .hero-content h1 { font-size: 3rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .services-category-title { grid-column: span 2; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 991px) {
    section { padding: 4.5rem 0; }
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-subtitle-top { justify-content: center; }
    .hero-subtitle-top::before { display: none; }
    .hero-image-wrapper { order: -1; }
    .btn-group { justify-content: center; }
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .feature-item { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 1rem; padding-right: 0; }
    .feature-item:nth-child(3), .feature-item:nth-child(4) { border-bottom: none; padding-bottom: 0; }
    .about-section-grid { grid-template-columns: 1fr; gap: 3.5rem; }
    .about-images { max-width: 500px; margin: 0 auto; }
    .why-section-grid { grid-template-columns: 1fr; gap: 3.5rem; }
    .why-img-collage { max-width: 500px; margin: 0 auto; }
    .why-list { gap: 2rem; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-info-card { padding: 2.5rem; }
}

@media (max-width: 767px) {
    header .container { height: 70px; }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 4rem 2rem;
        gap: 2rem;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    .nav-menu.is-active { left: 0; }
    .mobile-menu-btn { display: block; }
    .mobile-menu-btn.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .mobile-menu-btn.is-active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    
    .top-bar { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .services-category-title { grid-column: span 1; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-item { border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 1rem; }
    .feature-item:last-child { border-bottom: none; padding-bottom: 0; }
    
    .booking-form-wrapper { padding: 2rem; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 479px) {
    h1 { font-size: 2.25rem; }
    .hero-content h1 { font-size: 2.25rem; }
    .hero-image, .hero-img-bg { width: 280px; height: 350px; }
    .hero-badge { left: -10px; padding: 0.8rem 1.2rem; }
    .hero-badge-title { font-size: 1.1rem; }
    .highlight-list { grid-template-columns: 1fr; }
    .about-info-badge { flex-direction: column; text-align: center; }
}

/* ==========================================
   LANGUAGE SWITCHER
   ========================================== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
}

.lang-switcher a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-fast);
}

.lang-switcher a.active {
    color: var(--secondary);
}

.lang-switcher a:hover {
    color: var(--white);
}

.lang-separator {
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================
   WHATSAPP FLOATING BUTTON
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 1000;
    transition: var(--transition-smooth);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0px 6px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ==========================================
   GOOGLE TRANSLATE OVERRIDES
   ========================================== */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}
body {
    top: 0px !important;
}
.goog-tooltip {
    display: none !important;
}
.goog-tooltip:hover {
    display: none !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    border: none !important; 
    box-shadow: none !important;
}
