@import "tailwindcss";
@import "tw-animate-css";

@custom-variant dark (&:is(.dark *));

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --font-sans: var(--font-geist-sans);
  --font-mono: var(--font-geist-mono);
  --color-sidebar-ring: var(--sidebar-ring);
  --color-sidebar-border: var(--sidebar-border);
  --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
  --color-sidebar-accent: var(--sidebar-accent);
  --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
  --color-sidebar-primary: var(--sidebar-primary);
  --color-sidebar-foreground: var(--sidebar-foreground);
  --color-sidebar: var(--sidebar);
  --color-chart-5: var(--chart-5);
  --color-chart-4: var(--chart-4);
  --color-chart-3: var(--chart-3);
  --color-chart-2: var(--chart-2);
  --color-chart-1: var(--chart-1);
  --color-ring: var(--ring);
  --color-input: var(--input);
  --color-border: var(--border);
  --color-destructive: var(--destructive);
  --color-accent-foreground: var(--accent-foreground);
  --color-accent: var(--accent);
  --color-muted-foreground: var(--muted-foreground);
  --color-muted: var(--muted);
  --color-secondary-foreground: var(--secondary-foreground);
  --color-secondary: var(--secondary);
  --color-primary-foreground: var(--primary-foreground);
  --color-primary: var(--primary);
  --color-popover-foreground: var(--popover-foreground);
  --color-popover: var(--popover);
  --color-card-foreground: var(--card-foreground);
  --color-card: var(--card);
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
}

:root {
  --radius: 0.625rem;
  --background: oklch(1 0 0);
  --foreground: oklch(0.145 0 0);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.145 0 0);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.145 0 0);
  --primary: oklch(0.205 0 0);
  --primary-foreground: oklch(0.985 0 0);
  --secondary: oklch(0.97 0 0);
  --secondary-foreground: oklch(0.205 0 0);
  --muted: oklch(0.97 0 0);
  --muted-foreground: oklch(0.556 0 0);
  --accent: oklch(0.97 0 0);
  --accent-foreground: oklch(0.205 0 0);
  --destructive: oklch(0.577 0.245 27.325);
  --border: oklch(0.922 0 0);
  --input: oklch(0.922 0 0);
  --ring: oklch(0.708 0 0);
  --chart-1: oklch(0.646 0.222 41.116);
  --chart-2: oklch(0.6 0.118 184.704);
  --chart-3: oklch(0.398 0.07 227.392);
  --chart-4: oklch(0.828 0.189 84.429);
  --chart-5: oklch(0.769 0.188 70.08);
  --sidebar: oklch(0.985 0 0);
  --sidebar-foreground: oklch(0.145 0 0);
  --sidebar-primary: oklch(0.205 0 0);
  --sidebar-primary-foreground: oklch(0.985 0 0);
  --sidebar-accent: oklch(0.97 0 0);
  --sidebar-accent-foreground: oklch(0.205 0 0);
  --sidebar-border: oklch(0.922 0 0);
  --sidebar-ring: oklch(0.708 0 0);
}

.dark {
  --background: oklch(0.145 0 0);
  --foreground: oklch(0.985 0 0);
  --card: oklch(0.205 0 0);
  --card-foreground: oklch(0.985 0 0);
  --popover: oklch(0.205 0 0);
  --popover-foreground: oklch(0.985 0 0);
  --primary: oklch(0.922 0 0);
  --primary-foreground: oklch(0.205 0 0);
  --secondary: oklch(0.269 0 0);
  --secondary-foreground: oklch(0.985 0 0);
  --muted: oklch(0.269 0 0);
  --muted-foreground: oklch(0.708 0 0);
  --accent: oklch(0.269 0 0);
  --accent-foreground: oklch(0.985 0 0);
  --destructive: oklch(0.704 0.191 22.216);
  --border: oklch(1 0 0 / 10%);
  --input: oklch(1 0 0 / 15%);
  --ring: oklch(0.556 0 0);
  --chart-1: oklch(0.488 0.243 264.376);
  --chart-2: oklch(0.696 0.17 162.48);
  --chart-3: oklch(0.769 0.188 70.08);
  --chart-4: oklch(0.627 0.265 303.9);
  --chart-5: oklch(0.645 0.246 16.439);
  --sidebar: oklch(0.205 0 0);
  --sidebar-foreground: oklch(0.985 0 0);
  --sidebar-primary: oklch(0.488 0.243 264.376);
  --sidebar-primary-foreground: oklch(0.985 0 0);
  --sidebar-accent: oklch(0.269 0 0);
  --sidebar-accent-foreground: oklch(0.985 0 0);
  --sidebar-border: oklch(1 0 0 / 10%);
  --sidebar-ring: oklch(0.556 0 0);
}

@layer base {
  * {
    @apply border-border outline-ring/50;
  }
  body {
    @apply bg-background text-foreground;
  }
}

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

 :root {
     --primary-color: #0f1048;      /* Deep navy blue - main brand color */
    --primary-dark: #280653;       /* Dark purple tone for depth */
    --secondary-color: #099ab8;    /* Teal green - accent for buttons and highlights */
    --accent-color: #00AEEF;       /* Sky blue - secondary accent */
    --highlight-color: #781b19;    /* Red - for urgent or important text */
    --text-dark: #1F2937;          /* Dark gray for main text */
    --text-light: #6B7280;         /* Light gray for secondary text */
    --bg-light: #F9FAFB;           /* Light background */
    --bg-white: #FFFFFF;           /* White background */
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --navbar-height: 80px;
} 
[data-theme="dark"] {
    --primary-color: #0f1048;      /* Deep navy blue - consistent with brand */
    --primary-dark: #2B4C9A;       /* Royal blue - for hover and gradients */
    --secondary-color: #099ab8;    /* Teal green - for highlights */
    --accent-color: #7A1C1C;       /* Maroon - for headings and emphasis */
    --text-dark: #F3F4F6;          /* Light text for dark mode readability */
    --text-light: #D1D5DB;         /* Muted light gray for secondary text */
    --bg-light: #1F2937;           /* Dark gray background */
    --bg-white: #111827;           /* Deep background for cards/sections */
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
} 


html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo img {
    width: 50px; 
    height: auto; 
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
@keyframes blinker {
  /* At 50% of the animation cycle, set opacity to 0 (hidden) */
  50% {
    opacity: 0;
  }
}

.theme-toggle {
    background: var(--bg-light);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(20deg) scale(1.1);
}
mark {
    background-color:#D1D5DB;
    outline-color: #111827;
    animation: blinker 1s linear infinite;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section - FIXED RESPONSIVENESS */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--secondary-color) 100%);
    color: white;
    text-align: left;
    overflow: hidden;
    padding-top: var(--navbar-height);
    padding-bottom: 2rem;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: drift 30s linear infinite;
}

@keyframes drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    animation: float 20s infinite linear;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin-top: 1rem;
}

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

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-text p {
    margin-bottom: 0.5rem;
}
.trust-ratings {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.rating-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.rating-item img {
  height: 22px;   /* Small clean logo size */
  width: auto;
}
.rating-item {
  color: #fff;
}
.rating-item a {
  text-decoration: none;   /* underline remove */
  color: inherit;          /* original text color use kare */
}

.rating-item a:visited {
  color: inherit;          /* visited link bhi same color */
}

.rating-item a:hover {
  opacity: 0.85;           /* optional soft hover effect */
}
.about-doctor-details {
  max-width: 600px;
  padding: 20px 0;
}

/* Doctor Name */
.doctor-name {
  font-size: 30px;
  font-weight: 700;
  color: #0d47a1;
  margin-bottom: 8px;
  line-height: 1.3;
}

/* Main Qualification */
.doctor-main-qualification {
  font-size: 16px;
  font-weight: 500;
  color: #444;
  margin-bottom: 15px;
}

/* Credential Highlight Strip */
.credential-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.credential-strip span {
  background-color: #e3f2fd;
  color: #0d47a1;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  letter-spacing: 0.5px;
}

/* Specialty */
.doctor-specialty {
  font-size: 17px;
  font-weight: 600;
  color: #26a69a;
  margin-bottom: 6px;
}

/* Role */
.doctor-role {
  font-size: 15px;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {

  .doctor-name {
    font-size: 22px;
  }

  .doctor-main-qualification {
    font-size: 14px;
  }

  .credential-strip span {
    font-size: 12px;
    padding: 5px 12px;
  }

  .doctor-specialty {
    font-size: 15px;
  }

  .doctor-role {
    font-size: 14px;
  }

}
.doctor-name,
.doctor-qualification,
.doctor-role {
  color: #fff;
}
.name-hero {
  font-family: 'Poppins', sans-serif;
  
}

/* .hero-text .credentials {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;
} */

.hero-image {
    flex: 0 0 320px;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 340px;
    border-radius: 999px;
    border: 4px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    object-fit: cover;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    animation: fadeInUp 1s ease 0.6s both;
}

/* scroll-indicator removed in markup */

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--bg-white);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

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

.btn-primary > * {
    position: relative;
    z-index: 1;
}

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

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

/* Call Now - Hero (prominent on all screens, reduced on desktop) */
.btn-call-hero {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border: 2px solid rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-call-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: var(--bg-white);
}

.btn-call-hero:active {
    transform: scale(0.98);
}

/* Call Now - Floating (mobile only, fixed bottom) */
.call-now-float {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: auto;
    min-width: 56px;
    min-height: 56px;
    padding: 14px 20px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    border: none;
}

.call-now-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(9, 154, 184, 0.45);
    background: var(--primary-color);
}

.call-now-float:active {
    transform: scale(0.96);
}

.call-now-float i {
    font-size: 1.25rem;
}

.call-now-text {
    white-space: nowrap;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

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

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
    border-radius: 10px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), var(--bg-white));
}

.stat-number {
    font-size: 2.4rem;
    font-weight:bold;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.about-image {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
}

/* Telemedicine Section */
.telemedicine {
    background: var(--bg-light);
}

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

.telemedicine-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.telemedicine-card h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.telemedicine-card p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.telemedicine-card ul {
    padding-left: 1.1rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.telemedicine-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
}

.telemedicine-cta p {
    color: #e5e7eb;
}

.telemedicine-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.telemedicine-cta .btn-secondary {
    border-color: #fff;
    color: #fff;
}

.telemedicine-cta .btn-secondary:hover {
    background: #fff;
    color: var(--primary-color);
}

/* International conference highlight cards */
.conference-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.conference-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
}

.conference-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

/* Footer affiliations */
.footer-affiliations {
    margin-top: 1.5rem;
}

.footer-affiliations h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

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

.footer-affiliations li + li {
    margin-top: 0.35rem;
}

.footer-affiliations a {
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-affiliations a:hover {
    color: var(--primary-color);
}

.image-placeholder {
    width: 100%;
    max-width: 380px;
    height: 400px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 8rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: rotate 20s linear infinite;
}

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

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Doctor details below profile picture */
.about-doctor-details {
    width: 100%;
    max-width: 380px;
    margin-top: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
    border-radius: 16px;
    border: 1px solid rgba(15, 16, 72, 0.08);
    box-shadow: var(--shadow);
    text-align: center;
}

.about-doctor-details .doctor-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.02em;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.about-doctor-details .doctor-qualification {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.about-doctor-details .doctor-specialty,
.about-doctor-details .doctor-role {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.about-doctor-details .doctor-badges {
    list-style: none;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(15, 16, 72, 0.1);
}

.about-doctor-details .doctor-badges li {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    padding-left: 1rem;
    position: relative;
}

.about-doctor-details .doctor-badges li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}


/* Services Section */
.services {
    background: var(--bg-light);
}

.services-search {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg-white);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.search-box:focus-within {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.search-box i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    color: var(--text-dark);
    padding: 0.75rem 0;
}

.search-box input::placeholder {
    color: var(--text-light);
}

.search-clear {
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
    margin-left: 0.5rem;
}

.search-clear:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

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

.service-card.hidden {
    display: none;
}

.service-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.service-card.hidden {
    display: none;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

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

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

/* ========== Gallery Section: Category-based albums ========== */
.gallery {
    background: var(--bg-white);
}

/* Wrapper for album covers; hidden when an album view is open */
.gallery-albums-wrap {
    display: block;
}

.gallery-albums-wrap.hidden {
    display: none;
}

/* Grid of 9 album covers — responsive 3 columns desktop, 2 tablet, 1 mobile */
.gallery-albums-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Single album cover: image + title overlay, smooth hover */
.gallery-album-cover {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--bg-light);
}

.gallery-album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

/* Title overlay on cover — always visible at bottom */
.gallery-album-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(to top, rgba(15, 16, 72, 0.85), rgba(15, 16, 72, 0.5));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.gallery-album-title {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hover: slight lift + zoom image + darker overlay */
.gallery-album-cover:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.gallery-album-cover:hover img {
    transform: scale(1.08);
}

.gallery-album-cover:hover .gallery-album-overlay {
    background: linear-gradient(to top, rgba(15, 16, 72, 0.92), rgba(15, 16, 72, 0.6));
}

.gallery-album-cover:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Album view: shown when user clicks an album — back button + title + images grid */
.gallery-album-view {
    display: block;
}

.gallery-album-view[hidden] {
    display: none !important;
}

.gallery-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    margin-bottom: 1.5rem;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-back-btn:hover {
    background: var(--primary-dark);
    transform: translateX(-4px);
}

.gallery-album-view-title {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Grid of images inside the opened album */
.gallery-album-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.gallery-album-photo {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--bg-light);
}

.gallery-album-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-album-photo:hover {
    box-shadow: var(--shadow-lg);
}

.gallery-album-photo:hover img {
    transform: scale(1.05);
}

.gallery-album-photo:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* ========== Lightbox: modal for single image ========== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox[hidden] {
    display: none !important;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Appointment Section */
.appointment {
    background: var(--bg-white);
}

.appointment-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.appointment-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

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

.form-row-single .form-group-full {
    grid-column: 1 / -1;
}

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

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

.form-group label i {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
    padding: 15px;
    font-size: 1.1rem;
}

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

.info-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.info-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card p {
    margin: 0.5rem 0;
    opacity: 0.9;
}

/* Reviews Section */
.reviews {
    background: var(--bg-light);
}

.reviews-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.reviews-carousel {
    display: flex;
    overflow: hidden;
    border-radius: 15px;
}

.review-card {
    min-width: 100%;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.5s ease;
    display: none;
}

.review-card.active {
    display: block;
    animation: slideIn 0.5s ease;
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

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

.review-rating {
    color: var(--accent-color);
}

.review-text {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: var(--bg-white);
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: var(--transition);
}

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

/* FAQ Section */
.faq {
    background: var(--bg-white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(37, 99, 235, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
    font-size: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

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

/* Contact Section */
.contact {
    background: var(--bg-white);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
}

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

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    align-self: flex-start;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

/* Location Section */
.location-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--bg-light);
    max-width: 100%;
}

.location-header {
    text-align: center;
    margin-bottom: 2rem;
}

.location-header h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.location-header h3 i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.location-address {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.location-address p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0.5rem 0;
}

.location-address p strong {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.map-container {
    position: relative;
    width: 100%;
    margin: 2rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg-light);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    display: block;
    border: none;
}

.map-container iframe:not(:first-child) {
    margin-top: 1.5rem;
}

.directions-btn-container {
    text-align: center;
    margin-top: 2rem;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 15px 35px;
    font-size: 1.1rem;
}

.directions-btn i {
    font-size: 1.2rem;
}

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

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

.footer-section h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 5px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

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

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background: #20ba5a;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--text-dark);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--text-dark);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    box-shadow: var(--shadow);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
}

.toast {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideInRight 0.3s ease, slideOutRight 0.3s ease 2.7s forwards;
    border-left: 4px solid var(--primary-color);
}

.toast.success {
    border-left-color: var(--secondary-color);
}

.toast.error {
    border-left-color: #ef4444;
}

.toast.warning {
    border-left-color: var(--accent-color);
}

.toast i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.toast.success i {
    color: var(--secondary-color);
}

.toast.error i {
    color: #ef4444;
}

.toast.warning i {
    color: var(--accent-color);
}

.toast-content {
    flex: 1;
}

.toast-content h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.toast-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

@keyframes slideOutRight {
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* Form Success Message */
.form-success {
    display: none;
    background: var(--secondary-color);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    animation: slideDown 0.5s ease;
}

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

.form-success.show {
    display: block;
}

/* Responsive Design */
/* Desktop: reduce hero Call Now prominence */
@media (min-width: 769px) {
    .btn-call-hero {
        padding: 10px 22px;
        font-size: 0.95rem;
        opacity: 0.92;
    }

    .btn-call-hero:hover {
        opacity: 1;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

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

    .hamburger {
        display: flex;
    }

    .theme-toggle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

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

    .hero-text {
        max-width: 100%;
    }

    .hero-image {
        flex: 0 0 auto;
    }

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

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

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

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

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

/* MOBILE RESPONSIVENESS FIX */
@media (max-width: 768px) {
    /* Hero section adjustments for mobile */
    .hero {
        min-height: auto;
        padding-top: calc(var(--navbar-height) + 1rem);
        padding-bottom: 6rem;
    }

    .hero-content {
        padding-top: 0;
        margin-top: 0;
    }

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

    /* Hero buttons container - ensure visibility */
    .hero-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: center;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    /* Adjust button sizes for mobile */
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

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

    .conference-highlights {
        grid-template-columns: 1fr;
    }

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

    .location-section {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .location-header h3 {
        font-size: 1.5rem;
    }

    .location-address {
        padding: 1.5rem;
    }

    .location-address p {
        font-size: 1rem;
    }

    .map-container iframe {
        height: 350px;
    }

    /* Show floating Call Now on mobile */
    .call-now-float {
        display: flex;
        bottom: 20px;
        left: 20px;
        min-height: 52px;
        padding: 12px 18px;
        font-size: 1rem;
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .scroll-top {
        bottom: 80px;
        right: 20px;
    }

    .toast-container {
        right: 10px;
        max-width: calc(100% - 20px);
    }
}

@media (max-width: 480px) {
    /* Extra small screens - more hero adjustments */
    .hero {
        padding-top: calc(var(--navbar-height) + 0.5rem);
        padding-bottom: 7rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    /* Stack buttons vertically on very small screens */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
        padding: 12px 24px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .appointment-form {
        padding: 1.5rem;
    }

    .location-header h3 {
        font-size: 1.3rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .location-address {
        padding: 1.25rem;
    }

    .location-address p {
        font-size: 0.95rem;
    }

    .location-address p strong {
        font-size: 1.1rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .directions-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

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

    .gallery-album-title {
        font-size: 1rem;
    }

    .gallery-album-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }

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