/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
}

/* Top Banner */
.top-banner {
    background-color: #fcf7ef;
    text-align: center;
    padding: 0.75rem;
    font-size: 0.875rem;
    color: #333;
    letter-spacing: 0.5px;
}

/* Header */
header {
    background-color: #f7f4ef;
    position: relative;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.search-icon {
    cursor: pointer;
    color: #333;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: absolute;
    left: 50%;
    top: 2rem;
    transform: translateX(-50%);
}

.logo-icon {
    color: #333;
    background-color: #f7f4ef;
}

.logo-icon img {
    height: 131px;
    width: auto;
    display: block;
}

.logo-text {
    text-align: center;
    margin-top: -0.5rem;
}

.brand-name {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    font-weight: 300;
    font-style: italic;
    color: #333;
}

.brand-surname {
    font-family: 'Arial', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #333;
}

.brand-tagline {
    font-family: 'Arial', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: #666;
    margin-top: 0.25rem;
    text-transform: uppercase;
}

/* Right Icons */
.right-icons {
    display: flex;
    gap: 1.5rem;
    color: #333;
}

.right-icons svg {
    cursor: pointer;
}

/* Navigation */
nav {
    padding-top: 4rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1rem 0;
}

nav ul li a {
    text-decoration: none;
    color: #666;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #333;
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

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

.hero h1 {
    font-family: 'Georgia', serif;
    font-size: 3rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.learn-more-btn {
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    padding: 0.75rem 2.5rem;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.learn-more-btn:hover {
    background-color: #fff;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 2;
}

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

.dot.active {
    background-color: rgba(255, 255, 255, 0.9);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* About Section */
.about-section {
    background-color: #f7f4ef;
    padding: 2rem 5rem;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 550px 1fr;
    gap: 6rem;
    align-items: start;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    display: block;
}

.about-content {
    padding-top: 20%;
    padding-right: 6rem;
}

.about-content h2 {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 0.75rem;
}

.about-subtitle {
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.about-bio {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2.5rem;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.about-instagram {
    display: inline-flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.about-instagram:hover {
    color: #E1306C;
    transform: scale(1.1);
}

.about-btn {
    background-color: #333;
    color: white;
    border: none;
    padding: 0.85rem 2.75rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    letter-spacing: 0.5px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
}

.about-btn:hover {
    background-color: #555;
}

/* About Section Reversed */
.about-section-reverse .about-container {
    grid-template-columns: 1fr 550px;
}

.about-section-reverse .about-content {
    padding-left: 6rem;
    padding-right: 0;
}

/* Explore Facility Section */
.explore-section {
    background-color: #f7f4ef;
    padding: 0.75rem 5rem 6rem;
    text-align: center;
}

.explore-title {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 4rem;
}

.explore-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.explore-card {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}

.explore-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px 20px 0 0;
}

.card-title {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #333;
    margin: 1.5rem 0 1rem;
    padding: 0 1.5rem;
}

.card-subtitle {
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1.5rem;
    padding: 0 1.5rem;
    line-height: 1.6;
}

/* Testimonial Section */
.testimonial-section {
    background-color: #f7f4ef;
    padding: 6rem 5rem;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #5a5a6b 0%, #6b6b7b 100%);
    border-radius: 200px 80px 150px 80px / 80px 150px 80px 200px;
    padding: 6rem 4rem;
    position: relative;
    text-align: center;
}

.testimonial-content {
    color: white;
}

.testimonial-quote {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.testimonial-subtitle {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.testimonial-text {
    font-family: 'Georgia', serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.testimonial-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-dots .dot.active {
    background-color: rgba(255, 255, 255, 0.9);
}

.testimonial-dots .dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

/* Testimonials Grid Section */
.testimonials-grid-section {
    background-color: #f7f4ef;
    padding: 6rem 5rem;
}

.testimonials-grid-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-grid-title {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.testimonials-column {
    display: flex;
    flex-direction: column;
}

.testimonials-column-title {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #333;
}

.testimonial-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-card-content {
    display: flex;
    flex-direction: column;
}

.testimonial-card-text {
    font-family: 'Georgia', serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card-author {
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    color: #333;
    font-weight: 600;
    text-align: right;
}

/* Photo Gallery Section */
.photo-gallery-section {
    background-color: #fff;
    padding: 6rem 5rem;
}

.photo-gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.photo-gallery-title {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin-bottom: 4rem;
}

.photo-gallery-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.photo-gallery-column {
    display: flex;
    flex-direction: column;
}

.photo-gallery-column-title {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #333;
}

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

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background-color: #f0f0f0;
    aspect-ratio: 1/1;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.4s ease;
}

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

/* Reggie's Hair Transplant Section */
.hair-transplant-section {
    background-color: #fff;
    padding: 6rem 5rem;
    text-align: center;
}

.hair-transplant-container {
    max-width: 1000px;
    margin: 0 auto;
}

.hair-transplant-title {
    font-family: 'Georgia', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 1rem;
}

.hair-transplant-subtitle {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    color: #666;
    letter-spacing: 1px;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.hair-transplant-video-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hair-transplant-video {
    width: 100%;
    height: auto;
    display: block;
    background-color: #000;
}

.hair-transplant-description {
    max-width: 700px;
    margin: 0 auto;
}

.hair-transplant-description p {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* Real Clients Real Results Section */
.results-section {
    background-color: #f7f4ef;
    padding: 6rem 5rem;
}

.results-container {
    max-width: 1400px;
    margin: 0 auto;
}

.results-title {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 3rem;
    text-align: left;
}

.results-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.result-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.result-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

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

/* Video Styles for Results Section */
.result-video-container {
    width: 100%;
    padding: 0;
}

.result-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px 15px 0 0;
    background-color: #000;
}

.result-caption {
    font-family: 'Georgia', serif;
    font-size: 1rem;
    color: #333;
    padding: 1rem;
    text-align: center;
    background-color: white;
    margin: 0;
}

.results-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.results-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.results-dots .dot.active {
    background-color: rgba(0, 0, 0, 0.6);
}

.results-dots .dot:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

/* Booking Section */
.booking-section {
    background-color: #333;
    padding: 6rem 5rem;
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.booking-title {
    font-family: 'Georgia', serif;
    font-size: 3rem;
    font-weight: 300;
    color: white;
    margin-bottom: 1rem;
}

.booking-subtitle {
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.booking-description {
    font-family: 'Georgia', serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.booking-description a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

.booking-description a:hover {
    color: #fff;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    color: white;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(255, 255, 255, 0.9);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.6)' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 3rem;
}

.form-group select option {
    background-color: #333;
    color: white;
    padding: 0.5rem;
}

.photo-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.5rem;
    border: 2px dashed rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
}

.photo-upload-label:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.photo-upload-label svg {
    width: 24px;
    height: 24px;
}

.upload-text {
    font-family: 'Georgia', serif;
    font-size: 1rem;
}

.photo-upload-input {
    display: none;
}

.file-name-display {
    margin-top: 0.5rem;
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.send-btn {
    background-color: white;
    color: #333;
    border: none;
    padding: 1rem 3rem;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    letter-spacing: 1px;
    border-radius: 30px;
    margin: 1rem auto 0;
    width: fit-content;
}

.send-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Help Section */
.help-section {
    background-color: #f7f4ef;
    padding: 6rem 5rem;
    text-align: center;
}

.help-container {
    max-width: 800px;
    margin: 0 auto;
}

.help-title {
    font-family: 'Georgia', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 3rem;
}

.help-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.help-label {
    font-family: 'Georgia', serif;
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.help-value {
    font-family: 'Georgia', serif;
    font-size: 1rem;
    color: #333;
    margin: 0.25rem 0;
}

.contact-btn {
    background-color: #333;
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    letter-spacing: 1px;
    border-radius: 30px;
}

.contact-btn:hover {
    background-color: #555;
}

/* Footer */
.footer {
    background-color: #2a2a2a;
    color: white;
    padding: 4rem 5rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 200px repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
}

.footer-logo-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: #fbf6f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer-logo-circle img {
    width: 120px;
    height: auto;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-family: 'Georgia', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: white;
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-links li:not(:has(a)) {
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-middle {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
}

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

.social-link {
    color: white;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.7;
}

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

.copyright {
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive - Large Tablets */
@media (max-width: 1200px) {
    .about-container {
        grid-template-columns: 400px 1fr;
        gap: 3rem;
    }

    .about-section-reverse .about-container {
        grid-template-columns: 1fr 400px;
    }

    .about-content {
        padding-top: 10%;
        padding-right: 2rem;
    }

    .about-section-reverse .about-content {
        padding-left: 2rem;
        padding-right: 0;
    }

    .explore-cards {
        gap: 2rem;
    }

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

/* Responsive - Tablets */
@media (max-width: 992px) {
    .header-container {
        padding: 1rem 2rem;
    }

    .logo {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 0 auto;
    }

    .logo-icon img {
        height: 100px;
    }

    nav {
        padding-top: 1rem;
    }

    nav ul {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5rem;
        padding: 0 2rem;
    }

    .about-section {
        padding: 2rem 3rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-section-reverse .about-container {
        grid-template-columns: 1fr;
    }

    .about-image {
        max-width: 450px;
        margin: 0 auto;
        order: 1;
    }

    .about-content {
        padding: 0;
        text-align: center;
        order: 2;
    }

    .about-section-reverse .about-content {
        padding: 0;
        order: 2;
    }

    .about-section-reverse .about-image {
        order: 1;
    }

    .about-actions {
        justify-content: center;
    }

    .explore-section {
        padding: 3rem 3rem 4rem;
    }

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

    .testimonial-section {
        padding: 4rem 3rem;
    }

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

    .footer-logo {
        grid-column: 1 / -1;
        display: flex;
        justify-content: center;
    }
}

/* Responsive - Small Tablets & Large Phones */
@media (max-width: 768px) {
    /* Top Banner */
    .top-banner {
        font-size: 0.75rem;
        padding: 0.5rem;
    }

    /* Header */
    .header-container {
        padding: 1rem 1.5rem;
        flex-direction: column;
    }

    .logo {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
    }

    .logo-icon img {
        height: 80px;
    }

    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 1.5rem;
        top: 1rem;
    }

    nav {
        padding-top: 0.5rem;
        width: 100%;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    nav ul.active {
        max-height: 300px;
        padding: 1rem 0;
    }

    nav ul li {
        text-align: center;
        padding: 0.75rem 0;
    }

    nav ul li a {
        font-size: 1rem;
    }

    /* Hero */
    .hero {
        height: 60vh;
        min-height: 400px;
    }

    .hero h1 {
        font-size: 1.75rem;
        padding: 0 1.5rem;
        line-height: 1.5;
    }

    .hero h1 br {
        display: none;
    }

    .learn-more-btn {
        padding: 0.6rem 2rem;
        font-size: 0.9rem;
    }

    .carousel-dots {
        bottom: 1.5rem;
    }

    /* About Sections */
    .about-section {
        padding: 2rem 1.5rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        max-width: 100%;
        margin: 0 auto;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-bio {
        font-size: 1rem;
    }

    .about-btn {
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
    }

    /* Photo Gallery */
    .photo-gallery-section {
        padding: 3rem 1.5rem;
    }

    .photo-gallery-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

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

    .photo-gallery-column-title {
        font-size: 1.2rem;
    }

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

    /* Testimonials Grid */
    .testimonials-grid-section {
        padding: 3rem 1.5rem;
    }

    .testimonials-grid-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .testimonials-columns {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .testimonials-column-title {
        font-size: 1.2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-card-text {
        font-size: 0.95rem;
    }

    /* Explore Cards */
    .explore-section {
        padding: 3rem 1.5rem 4rem;
    }

    .explore-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .explore-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .card-image {
        height: 200px;
    }

    .card-title {
        font-size: 1.5rem;
    }

    /* Single Testimonial */
    .testimonial-section {
        padding: 3rem 1.5rem;
    }

    .testimonial-container {
        padding: 3rem 1.5rem;
        border-radius: 30px;
    }

    .testimonial-quote {
        font-size: 1.75rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    /* Hair Transplant */
    .hair-transplant-section {
        padding: 3rem 1.5rem;
    }

    .hair-transplant-title {
        font-size: 2rem;
    }

    .hair-transplant-subtitle {
        font-size: 0.8rem;
        margin-bottom: 2rem;
    }

    .hair-transplant-video-wrapper {
        border-radius: 15px;
    }

    .hair-transplant-description p {
        font-size: 0.95rem;
    }

    /* Booking */
    .booking-section {
        padding: 3rem 1.5rem;
    }

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

    .booking-subtitle {
        font-size: 0.75rem;
    }

    .booking-description {
        font-size: 0.9rem;
    }

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

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }

    /* Results */
    .results-section {
        padding: 3rem 1.5rem;
    }

    .results-title {
        font-size: 1.75rem;
        text-align: center;
    }

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

    .result-video {
        border-radius: 10px 10px 0 0;
    }

    .result-caption {
        font-size: 0.9rem;
        padding: 0.75rem;
    }

    /* Help Section */
    .help-section {
        padding: 3rem 1.5rem;
    }

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

    .help-info {
        gap: 1.5rem;
    }

    /* Footer */
    .footer {
        padding: 2.5rem 1.5rem 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo-circle {
        margin: 0 auto;
        width: 120px;
        height: 120px;
    }

    .footer-logo-circle img {
        width: 90px;
    }

    .footer-middle {
        justify-content: center;
    }

    .copyright {
        text-align: center;
    }
}

/* Responsive - Mobile Phones */
@media (max-width: 480px) {
    /* Top Banner */
    .top-banner {
        font-size: 0.7rem;
        padding: 0.4rem 0.5rem;
    }

    /* Header */
    .header-container {
        padding: 0.75rem 1rem;
    }

    .logo-icon img {
        height: 70px;
    }

    .mobile-menu-toggle {
        right: 1rem;
        top: 0.75rem;
    }

    /* Hero */
    .hero {
        height: 50vh;
        min-height: 350px;
    }

    .hero h1 {
        font-size: 1.4rem;
        padding: 0 1rem;
    }

    .learn-more-btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.85rem;
    }

    /* About */
    .about-section {
        padding: 1.5rem 1rem;
    }

    .about-content h2 {
        font-size: 1.75rem;
    }

    .about-subtitle {
        font-size: 0.75rem;
    }

    .about-bio {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    /* Photo Gallery */
    .photo-gallery-section {
        padding: 2rem 1rem;
    }

    .photo-gallery-title {
        font-size: 1.75rem;
    }

    .photo-gallery-column-title {
        font-size: 1.1rem;
    }

    .photo-grid {
        gap: 0.5rem;
    }

    /* Testimonials */
    .testimonials-grid-section {
        padding: 2rem 1rem;
    }

    .testimonials-grid-title {
        font-size: 1.75rem;
    }

    .testimonials-column-title {
        font-size: 1.1rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-card-text {
        font-size: 0.9rem;
    }

    /* Explore */
    .explore-section {
        padding: 2rem 1rem 3rem;
    }

    .explore-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .explore-cards {
        gap: 1.5rem;
    }

    .card-image {
        height: 180px;
    }

    .card-title {
        font-size: 1.3rem;
        margin: 1rem 0 0.5rem;
    }

    .card-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    /* Booking */
    .booking-section {
        padding: 2rem 1rem;
    }

    .booking-title {
        font-size: 1.75rem;
    }

    .booking-subtitle {
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }

    .booking-description {
        font-size: 0.85rem;
        margin-bottom: 2rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.75rem;
        font-size: 0.85rem;
    }

    .photo-upload-label {
        padding: 1rem;
    }

    .send-btn {
        padding: 0.85rem 2rem;
        font-size: 0.9rem;
    }

    /* Help */
    .help-section {
        padding: 2rem 1rem;
    }

    .help-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .help-label {
        font-size: 0.9rem;
    }

    .help-value {
        font-size: 0.9rem;
    }

    .contact-btn {
        padding: 0.85rem 2rem;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-heading {
        font-size: 1.1rem;
    }

    .footer-links a,
    .footer-links li:not(:has(a)) {
        font-size: 0.85rem;
    }

    .copyright {
        font-size: 0.8rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.2rem;
    }

    .about-content h2 {
        font-size: 1.5rem;
    }

    .photo-gallery-title,
    .testimonials-grid-title,
    .explore-title,
    .booking-title,
    .help-title {
        font-size: 1.5rem;
    }
}
