/* =========================================
   Gujarat Hospital -- Custom Theme Stylesheet
   PLACEHOLDER colors below in --gh-primary,
   --gh-primary-dark, --gh-accent variables.
   Replace with real brand hex values once confirmed.
   ========================================= */

:root {
    --gh-primary: #6B1F21;        /* refined maroon */
    --gh-primary-dark: #4A1517;   /* darker maroon */
    --gh-accent: #B8792E;         /* muted gold, replaces bright orange */
    --gh-bg-ivory: #FAF6F0;       /* warm ivory background */
    --gh-bg-sand: #EDE6DA;        /* card/section background */
    --gh-text-light: #ffffff;
    --gh-text-body: #2A2220;      /* charcoal ink, not pure black */
    --gh-footer-text: #e6e6e6;
    --gh-max-width: 1200px;
    --gh-font-base: Georgia, 'Times New Roman', serif;
    --gh-font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

body { background: var(--gh-bg-ivory); font-family: var(--gh-font-sans); }
h1, h2, h3, .gh-logo a { font-family: var(--gh-font-base); }

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: var(--gh-font-base);
    color: var(--gh-text-body);
    line-height: 1.5;
}

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

a { color: inherit; }

.gh-skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    background: #fff;
    color: #000;
    padding: 10px 16px;
    z-index: 1000;
}
.gh-skip-link:focus {
    left: 10px;
    top: 10px;
}

.gh-header {
    background: var(--gh-primary);
    color: var(--gh-text-light);
}

.gh-topbar {
    background: var(--gh-primary-dark);
    font-size: 13px;
    padding: 6px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.gh-topbar-cta {
    text-decoration: none;
    color: var(--gh-text-light);
    font-weight: bold;
}

.gh-main-row {
    max-width: var(--gh-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.gh-logo a {
    color: var(--gh-text-light);
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

.gh-nav-list {
    list-style: none;
    display: flex;
    gap: 22px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
.gh-nav-list a {
    color: var(--gh-text-light);
    text-decoration: none;
    font-size: 15px;
}
.gh-nav-list a:hover,
.gh-nav-list a:focus {
    color: var(--gh-accent);
}

.gh-header-cta {
    background: var(--gh-accent);
    color: var(--gh-primary-dark);
    padding: 8px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .gh-nav-list {
        display: none;
    }
}

.gh-footer {
    background: var(--gh-primary);
    color: var(--gh-footer-text);
    padding: 40px 20px 20px;
    margin-top: 40px;
}

.gh-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: var(--gh-max-width);
    margin: 0 auto;
}

.gh-footer-heading {
    color: var(--gh-text-light);
    font-size: 16px;
    margin: 0 0 12px;
}

.gh-footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.gh-footer-nav-list li { margin-bottom: 8px; }
.gh-footer-nav-list a {
    color: var(--gh-footer-text);
    text-decoration: none;
}
.gh-footer-nav-list a:hover,
.gh-footer-nav-list a:focus {
    color: var(--gh-accent);
}

.gh-footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid var(--gh-primary-dark);
    font-size: 13px;
}

.gh-nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--gh-text-light);
    color: var(--gh-text-light);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .gh-nav-toggle {
        display: inline-block;
    }
    .gh-nav-list.gh-nav-open {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 10px;
        padding: 12px 0 0;
    }
}

.gh-logo-img {
    background: #ffffff;
    padding: 8px 14px;
    border-radius: 4px;
    max-height: 50px;
    display: block;
}

/* Dropdown submenu styling */
.gh-nav-list li {
    position: relative;
}

.gh-nav-list .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--gh-primary-dark);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    min-width: 260px;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.gh-nav-list .sub-menu li {
    width: 100%;
}

.gh-nav-list .sub-menu a {
    display: block;
    padding: 8px 18px;
    white-space: nowrap;
    font-size: 14px;
}

.gh-nav-list .sub-menu a:hover,
.gh-nav-list .sub-menu a:focus {
    background: var(--gh-primary);
    color: var(--gh-accent);
}

.gh-nav-list li:hover > .sub-menu,
.gh-nav-list li.gh-submenu-open > .sub-menu {
    display: block;
}

.menu-item-has-children > a::after {
    content: " \25BE";
    font-size: 11px;
}

@media (max-width: 768px) {
    .gh-nav-list .sub-menu {
        position: static;
        box-shadow: none;
        padding-left: 15px;
        display: none;
    }
    .gh-nav-list li.gh-submenu-open > .sub-menu {
        display: block;
    }
}

.gh-logo-img {
    border: 2px solid #ffffff;
}

.gh-nav-toggle {
    font-size: 22px;
    line-height: 1;
    padding: 6px 12px;
}

/* Doctor pages */
.gh-content-wrap {
    max-width: var(--gh-max-width);
    margin: 0 auto;
    padding: 30px 20px;
}

.gh-page-title {
    color: var(--gh-primary);
}

.gh-doctor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.gh-doctor-card {
    display: block;
    text-decoration: none;
    color: var(--gh-text-body);
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 16px;
    transition: box-shadow 0.2s;
}
.gh-doctor-card:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.gh-doctor-card h2 {
    color: var(--gh-primary);
    font-size: 18px;
    margin: 12px 0 6px;
}
.gh-doctor-card-photo img {
    border-radius: 4px;
    width: 100%;
}

.gh-doctor-header {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.gh-doctor-photo img {
    border-radius: 6px;
    max-width: 220px;
}
.gh-doctor-specialty {
    color: var(--gh-primary-dark);
    font-weight: bold;
}
.gh-doctor-cta {
    margin-top: 30px;
}

/* ===== Homepage ===== */

.gh-hero {
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--gh-text-light);
    padding: 100px 20px;
}
.gh-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(74,21,23,0.85) 0%, rgba(74,21,23,0.55) 55%, rgba(74,21,23,0.25) 100%);
}
.gh-hero h1,
.gh-hero-sub {
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.gh-hero-inner {
    position: relative;
    z-index: 1;
}
.gh-hero-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
}
.gh-hero h1 {
    font-size: 40px;
    line-height: 1.25;
    margin: 0 0 20px;
    color: var(--gh-text-light);
}
.gh-hero-sub {
    font-size: 18px;
    line-height: 1.6;
    color: #f0e6e0;
    margin-bottom: 32px;
}
.gh-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.gh-btn-primary {
    background: var(--gh-accent);
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: bold;
    display: inline-block;
}
.gh-btn-secondary {
    background: transparent;
    color: var(--gh-text-light);
    border: 1px solid var(--gh-text-light);
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 3px;
    display: inline-block;
}

.gh-mission-grid {
    max-width: var(--gh-max-width);
    margin: 0 auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.gh-mission-item {
    border-left: 3px solid var(--gh-accent);
    padding-left: 18px;
}
.gh-mission-item h3 {
    margin: 0 0 8px;
    font-size: 19px;
    color: var(--gh-primary);
}
.gh-mission-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.gh-departments {
    background: var(--gh-bg-sand);
    padding: 60px 20px;
}
.gh-departments h2,
.gh-doctors-home h2,
.gh-faq-home h2 {
    text-align: center;
    color: var(--gh-primary);
    max-width: var(--gh-max-width);
    margin: 0 auto 36px;
}
.gh-department-grid {
    max-width: var(--gh-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.gh-department-card {
    background: #fff;
    border-left: 4px solid var(--gh-primary);
    padding: 26px;
}
.gh-department-card h3 {
    color: var(--gh-primary);
    margin: 0 0 10px;
}
.gh-department-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 14px;
}
.gh-department-card a {
    color: var(--gh-accent);
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.gh-doctors-home {
    max-width: var(--gh-max-width);
    margin: 0 auto;
    padding: 60px 20px;
}

.gh-faq-home {
    background: var(--gh-bg-sand);
    padding: 60px 20px;
}
.gh-faq-list {
    max-width: 760px;
    margin: 0 auto;
}
.gh-faq-list details {
    background: #fff;
    border: 1px solid #ddd;
    padding: 16px 20px;
    margin-bottom: 12px;
}
.gh-faq-list summary {
    font-weight: bold;
    cursor: pointer;
    color: var(--gh-primary);
}
.gh-faq-list p {
    margin: 12px 0 0;
    font-size: 15px;
    line-height: 1.6;
}

.gh-final-cta {
    background: var(--gh-primary-dark);
    color: var(--gh-text-light);
    text-align: center;
    padding: 60px 20px;
}
.gh-final-cta h2 {
    color: var(--gh-text-light);
    margin: 0 0 24px;
}

.gh-social-icons {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}
.gh-social-icons a {
    color: var(--gh-text-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--gh-footer-text);
    border-radius: 50%;
    transition: background 0.2s, border-color 0.2s;
}
.gh-social-icons a:hover {
    background: var(--gh-accent);
    border-color: var(--gh-accent);
}
.gh-social-icons svg {
    display: block;
}

.gh-footer-map {
    max-width: var(--gh-max-width);
    margin: 30px auto 0;
    padding: 0 20px;
}
.gh-footer-map iframe {
    display: block;
    width: 100%;
}

.gh-doctor-card-specialty {
    color: var(--gh-primary);
    font-weight: bold;
    font-size: 14px;
    margin: 4px 0 10px;
}
.gh-doctor-card-summary {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gh-text-body);
    margin-bottom: 12px;
}
.gh-doctor-card-link {
    color: var(--gh-accent);
    font-weight: bold;
    font-size: 14px;
}

/* ===== Hero trust row ===== */
.gh-hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 28px;
    font-size: 13px;
}
.gh-hero-trust span {
    border-top: 2px solid var(--gh-accent);
    padding-top: 8px;
    color: #f0e6e0;
}

/* ===== Highlights strip ===== */
.gh-highlights {
    background: var(--gh-primary-dark);
    padding: 40px 20px;
}
.gh-highlights-grid {
    max-width: var(--gh-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.gh-highlight-item h3 {
    color: var(--gh-text-light);
    font-size: 17px;
    margin: 0 0 8px;
}
.gh-highlight-item p {
    color: #e6d9d0;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ===== About ===== */
.gh-about {
    max-width: var(--gh-max-width);
    margin: 0 auto;
    padding: 70px 20px;
}
.gh-about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}
.gh-about-text h2 {
    color: var(--gh-primary);
    margin-top: 0;
}
.gh-about-text p {
    line-height: 1.7;
    font-size: 15px;
}
.gh-about-list {
    margin: 20px 0;
    padding-left: 20px;
}
.gh-about-list li {
    margin-bottom: 8px;
    line-height: 1.6;
}
.gh-about-image img {
    width: 100%;
    border-radius: 4px;
    display: block;
}
@media (max-width: 768px) {
    .gh-about-grid { grid-template-columns: 1fr; }
}

/* ===== Section sub-headline ===== */
.gh-section-sub {
    text-align: center;
    max-width: var(--gh-max-width);
    margin: -20px auto 30px;
    color: #6b5f58;
    font-size: 15px;
}

/* ===== Procedure list inside department cards ===== */
.gh-procedure-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}
.gh-procedure-list li {
    font-size: 13px;
    color: var(--gh-text-body);
    padding: 3px 0 3px 14px;
    position: relative;
}
.gh-procedure-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--gh-accent);
    border-radius: 50%;
}

/* ===== Facilities ===== */
.gh-facilities {
    background: var(--gh-bg-sand);
    padding: 60px 20px;
}
.gh-facilities-grid {
    max-width: var(--gh-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.gh-facility-item {
    background: #fff;
    padding: 26px;
    border-top: 3px solid var(--gh-accent);
}
.gh-facility-item h3 {
    color: var(--gh-primary);
    margin: 0 0 10px;
    font-size: 17px;
}
.gh-facility-item p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ===== Testimonials ===== */
.gh-testimonials {
    max-width: var(--gh-max-width);
    margin: 0 auto;
    padding: 60px 20px;
}
.gh-testimonials h2 {
    text-align: center;
    color: var(--gh-primary);
}
.gh-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}
.gh-testimonial-card {
    background: var(--gh-bg-sand);
    padding: 28px;
    border-left: 3px solid var(--gh-primary);
}
.gh-testimonial-card p {
    font-style: italic;
    line-height: 1.7;
    margin: 0 0 14px;
}
.gh-testimonial-author {
    font-weight: bold;
    color: var(--gh-primary);
    font-size: 14px;
}

/* ===== Appointment section ===== */
.gh-appointment-section {
    background: var(--gh-primary);
    padding: 60px 20px;
}
.gh-appointment-inner {
    max-width: var(--gh-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.gh-appointment-text h2 {
    color: var(--gh-text-light);
    margin-top: 0;
}
.gh-appointment-text p {
    color: #f0e6e0;
    line-height: 1.6;
}
.gh-appointment-contacts {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.gh-appointment-form {
    background: #fff;
    padding: 24px;
    border-radius: 4px;
}
@media (max-width: 768px) {
    .gh-appointment-inner { grid-template-columns: 1fr; }
}

/* ===== Location ===== */
.gh-location {
    max-width: var(--gh-max-width);
    margin: 0 auto;
    padding: 60px 20px;
}
.gh-location h2 {
    text-align: center;
    color: var(--gh-primary);
    margin-bottom: 30px;
}
.gh-location-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}
.gh-location-text p {
    line-height: 1.7;
    font-size: 15px;
}
.gh-location-map iframe {
    width: 100%;
    display: block;
    border-radius: 4px;
}
@media (max-width: 768px) {
    .gh-location-grid { grid-template-columns: 1fr; }
}

/* ===== Sticky header ===== */
.gh-header {
    position: sticky;
    top: 0;
    z-index: 200;
}

.gh-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.gh-whatsapp-btn {
    background: #25D366;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    white-space: nowrap;
}
.gh-whatsapp-btn:hover {
    opacity: 0.9;
}

/* ===== How It Works / Process ===== */
.gh-process {
    max-width: var(--gh-max-width);
    margin: 0 auto;
    padding: 60px 20px;
}
.gh-process h2 {
    text-align: center;
    color: var(--gh-primary);
}
.gh-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 20px;
}
.gh-process-step {
    text-align: left;
}
.gh-process-num {
    display: block;
    font-family: var(--gh-font-base);
    font-size: 32px;
    color: var(--gh-accent);
    margin-bottom: 8px;
}
.gh-process-step h3 {
    color: var(--gh-primary);
    font-size: 16px;
    margin: 0 0 8px;
}
.gh-process-step p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ===== Before Your Visit ===== */
.gh-before-visit {
    background: var(--gh-bg-sand);
    padding: 60px 20px;
}
.gh-before-visit h2 {
    text-align: center;
    color: var(--gh-primary);
}
.gh-checklist-grid {
    max-width: var(--gh-max-width);
    margin: 20px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.gh-checklist-item {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
}
.gh-checklist-item h3 {
    color: var(--gh-primary);
    font-size: 15px;
    margin: 0 0 6px;
}
.gh-checklist-item p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    color: #6b5f58;
}

/* ===== Design polish pass: type scale ===== */
h1 { font-size: 40px; line-height: 1.25; }
h2 { font-size: 30px; line-height: 1.3; }
h3 { font-size: 18px; line-height: 1.4; }
.gh-departments h2, .gh-doctors-home h2, .gh-faq-home h2,
.gh-process h2, .gh-before-visit h2, .gh-testimonials h2,
.gh-location h2 { font-size: 28px; }

/* ===== Card hover states (micro-interactions) ===== */
.gh-department-card,
.gh-facility-item,
.gh-process-step,
.gh-checklist-item {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gh-department-card:hover,
.gh-facility-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(74,21,23,0.12);
}
.gh-doctor-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gh-doctor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(74,21,23,0.14);
}
.gh-testimonial-card {
    transition: box-shadow 0.2s ease;
}
.gh-testimonial-card:hover {
    box-shadow: 0 8px 20px rgba(74,21,23,0.1);
}

/* ===== Hero depth card (overlapping the photo edge) ===== */
.gh-hero {
    padding-bottom: 60px;
}
.gh-hero-quickfacts {
    position: relative;
    z-index: 2;
    margin-top: 40px;
    background: #fff;
    border-radius: 6px;
    padding: 20px 24px;
    display: inline-flex;
    gap: 28px;
    flex-wrap: wrap;
    box-shadow: 0 14px 30px rgba(0,0,0,0.2);
}
.gh-hero-quickfacts div {
    display: flex;
    flex-direction: column;
}
.gh-hero-quickfacts span:first-child {
    font-family: var(--gh-font-base);
    font-size: 15px;
    font-weight: bold;
    color: var(--gh-primary);
}
.gh-hero-quickfacts span:last-child {
    font-size: 12px;
    color: #6b5f58;
}

/* ===== Section rhythm variation ===== */
.gh-highlights { background: var(--gh-primary-dark); }
.gh-about { background: var(--gh-bg-ivory); }
.gh-departments { background: var(--gh-bg-sand); }
.gh-doctors-home { background: var(--gh-bg-ivory); }
.gh-facilities { background: var(--gh-bg-sand); }
.gh-process { background: var(--gh-bg-ivory); }
.gh-before-visit { background: var(--gh-bg-sand); }
.gh-testimonials { background: var(--gh-bg-ivory); }
.gh-faq-home { background: var(--gh-bg-sand); }
