/*
Theme Name: Dr. Ayaloğlu Hair Transplant
Theme URI: https://drayaloglu.com
Author: VARYScode Digital Solutions
Author URI: https://varyscode.com
Description: Professional & Special for Dr. Ayaloğlu Hair Transplant Clinic Theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dr-ayaloglu
*/

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

:root {
    --primary-color: #043a4b;
    --primary-dark: #043a4b;
    --secondary-color: #008283;
    --secondary-dark: #008283;
    --accent-color: #4A9EFF;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --white: #ffffff;
    --border-radius: 25px;
    --border-radius-sm: 15px;
    --transition: all 0.3s ease;
}

h1 {
	color: var(--primary-color)!important;
   	font-weight: 700;
}

h2 {
	color: var(--primary-color)!important;
   	font-weight: 700;
}

h3 {
	color: var(--primary-color)!important;
	font-weight: 700;
}

h4 {
	color: var(--primary-color)!important;
	font-weight: 700;
}

h5 {
	color: var(--primary-color)!important;
	font-weight: 700;
}

h6 {
	color: var(--primary-color)!important;
	font-weight: 700;
}

body {
  	font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: #f6f6f6;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* ============================================
   HEADER STYLES
============================================ */
.site-header {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: 
        top 0.35s ease,
        background-color 0.35s ease,
        box-shadow 0.35s ease;
}

.site-header.scrolled {
    top: 20px;
	    box-shadow: 0 10px 30px rgba(0,0,0,0.1);

}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.site-logo img {
    height: 40px;
    width: auto;
}

/* Main Navigation */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.main-menu > li {
    position: relative;
}

.main-menu > li > a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 10px 5px;
    display: block;
    position: relative;
}

.main-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.main-menu > li:hover > a::after,
.main-menu > li.current-menu-item > a::after {
    width: 100%;
}

/* Dropdown Menu */
.main-menu li.menu-item-has-children {
    position: relative;
}

.main-menu li.menu-item-has-children > a::before {
    content: '▼';
    font-size: 8px;
    margin-left: 5px;
    transition: var(--transition);
	padding-right:5px;
}

.main-menu li.menu-item-has-children:hover > a::before {
    transform: rotate(180deg);
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    padding: 15px 0;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.main-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li a {
    padding: 10px 25px;
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    transition: var(--transition);
}

.sub-menu li a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding-left: 30px;
}

/* Get a Quote Button */
.header-cta {
    margin-left: 40px;
    margin-right: 20px;
}

.btn-outline {
    padding: 12px 30px;
    border: 2px solid var(--primary-dark);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-dark);
    transition: var(--transition);
}

.btn-outline:hover {
	background: var(--primary-dark);
    color: var(--white);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

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

/* ============================================
   HERO SECTION
============================================ */
.hero-section {
    padding: 30px 0;
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px;
    background: #f5f7f8;
    border-radius: 40px;
    overflow: hidden;
}

.hero-content::before {
    content: '';
    position: absolute;
    inset: 0;
	height: 100%;
    background-image: url(https://drayaloglu.com/wp-content/uploads/2026/02/banner.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 40px 0 0 40px;
    z-index: 1;
}

.hero-left,
.hero-right {
    position: relative;
    z-index: 2;
}

.hero-left {
    min-height: 600px;
}


/* Decorative background elements */


.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 40px;
	margin-left:50px;
}

.hero-title {
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 25px;
    color: #000;
	text-align:center;
	line-height:1.2em;
}
.hero-form {
    background: #fff;
    padding: 40px;
    border-radius: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #E0E0E0;
    border-radius: 25px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 95, 93, 0.1);
}

.form-control::placeholder {
    color: #999;
}

.btn-primary {
    width: 100%;
    padding: 15px;
    background: var(--primary-dark);
    color: var(--white);
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: var(--primary-dark);
	border:1px solid var(--primary-dark);
}

/* ============================================
   DR. AYALOĞLU SECTION
============================================ */
.doctor-intro-section {
    padding: 100px 0;
}

.doctor-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.doctor-image-wrapper {
    position: relative;
}

.doctor-main-image {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.doctor-main-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.doctor-info {
    padding: 20px 0;
}

.doctor-name {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.doctor-credentials {
    list-style: none;
}

.doctor-credentials li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 16px;
    color: var(--text-gray);
}

.doctor-credentials li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.doctor-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.btn-learn-more {
    padding: 12px 35px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    transition: var(--transition);
	background: var(--primary-dark);
    color: var(--white);
}


.btn-learn-more:hover {
    color: var(--white);
	background:#4e868c;
}

/* ============================================
   GALLERY SECTION
============================================ */
.gallery-section {
	padding-left:40px;
	padding-right:40px;
}

.gallery-mosaic {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-auto-rows: 220px;
    gap: 20px;
}

/* GENEL ITEM */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
}

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

/* UI’DAKİ GİBİ ÖZEL YERLEŞİM */
.gallery-item:nth-child(1) {
    grid-row: span 2;
}

.gallery-item:nth-child(2) {
    grid-row: span 1;
}

.gallery-item:nth-child(3) {
    grid-row: span 1;
}

.gallery-item:nth-child(4) {
    grid-row: span 1;
}

.gallery-item:nth-child(5) {
    grid-row: span 1;
}


/* ============================================
   SAPPHIRE FUE SECTION
============================================ */
.sapphire-section {
    padding: 30px 0;
    background-color: #f6f6f6;
    position: relative;
    overflow: hidden;

    /* sapphire pen */
    background-image: url("https://drayaloglu.com/wp-content/uploads/2026/01/new-sapphire-pen-img22.webp");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 90%;
}

@media (max-width: 1440px){
	.sapphire-section{
	background-image: url("https://drayaloglu.com/wp-content/uploads/2026/01/new-sapphire-pen-img33.webp");
    background-repeat: no-repeat;
    background-position: right 0px center;
    background-size: auto 80%;
	}
	
}

@media (max-width: 1200px){
	.sapphire-section{
	background-image: url("https://drayaloglu.com/wp-content/uploads/2026/01/new-sapphire-pen-img33.webp");
    background-repeat: no-repeat;
    background-position: right 0px center;
    background-size: auto 75%;
	}
	
}

@media (max-width: 1024px){
	.sapphire-section{
	background-image: url("https://drayaloglu.com/wp-content/uploads/2026/01/new-sapphire-pen-img33.webp");
    background-repeat: no-repeat;
    background-position: right 0px center;
    background-size: auto 70%;
	}
	
}
@media (max-width: 1023px){
	.sapphire-section{
	background-image: none;
	height: 1200px;
	}
	
}

@media (max-width: 768px){
	.sapphire-section{
	background-image: none;
	height: 1000px;
	}
	
}

@media (max-width: 425px){
	.sapphire-section{
	background-image: none;
	height: 1100px;
	}
	
}

@media (max-width: 375px) {
    .sapphire-section {
        background-image: none;
        height: 1000px;
    }}

@media (max-width: 320px) {
    .sapphire-section {
        background-image: none;
        height: 910px;
    }
}

/* RIGHT ALIGNED IMAGE - ALTERNATIVE */
.right-aligned-image-wrapper {
    display: none;
}

@media (max-width: 1024px) {
    .right-aligned-image-wrapper {
        display: block;
        position: absolute;
        right: 0;
		margin-top:500px;
        width: auto;
        max-width: 50%; /* İstediğin genişliği ayarlayabilirsin */
    }
    
    .right-aligned-image-wrapper img {
        width: 100%;
        height: auto;
        display: block;
    }
}

@media (max-width: 1024px) {
    .right-aligned-image-wrapper {
		margin-top:500px;
        max-width: 60%; /* İstediğin genişliği ayarlayabilirsin */
    }

}

@media (max-width: 768px) {
    .right-aligned-image-wrapper {
		margin-top:390px;
        max-width: 55%; /* İstediğin genişliği ayarlayabilirsin */
    }

}

@media (max-width: 425px) {
    .right-aligned-image-wrapper {
		margin-top:650px;
        max-width: 85%; /* İstediğin genişliği ayarlayabilirsin */
    }

}

@media (max-width: 375px) {
    .right-aligned-image-wrapper {
        margin-top: 590px;
        max-width: 80%;
    }
}

@media (max-width: 320px) {
    .right-aligned-image-wrapper {
        margin-top: 525px;
        max-width: 90%;
    }
}

.sapphire-content {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 100px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.sapphire-image img {
    max-width: 420px;
    width: 100%;
    border-bottom: 4px solid var(--primary-dark);
}

.sapphire-info h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.sapphire-description {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-gray);
    max-width: 520px;
    margin-bottom: 30px;
	padding-right: 80px;
}


/* ============================================
   PROCEDURES SECTION
============================================ */
.procedures-section {
    padding: 40px 0;
    background: #EAEFEF;
	margin-top:40px;
}

.section-header {
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
}

.procedures-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.carousel-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
	padding-bottom:20px;
	padding-top:20px;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.procedure-card {
    min-width: 300px;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.procedure-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

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

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
    z-index: 10;
	font-size: 40px;
    font-weight: 300;
}

.carousel-nav:hover {
    background: var(--primary-color);
    color: var(--white);
}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}


/* ============================================
   CLINIC LOCATION SECTION
============================================ */
.location-section {
    padding: 30px 0;
    background: #f6f6f6;
}

.location-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.location-header {
    text-align: center;
    margin-bottom: 40px;
}

.location-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
}

.map-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 450px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #ffffffc2;
    padding: 5px 25px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.contact-text h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 3px;
}

.contact-text p {
    font-size: 13px;
    color: var(--text-gray);
}

/* ============================================
   REVIEWS SECTION
============================================ */
.reviews-section {
    padding: 100px 0;
    background: #f6f6f6;
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://drayaloglu.com/wp-content/uploads/2026/01/hair-transplant-reviews-bg-img-dr-ayaloglu.webp');
    background-size:cover;
	background-position:absolute;
	opacity: 0.6;
}

.reviews-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.reviews-header {
    text-align: center;
    margin-bottom: 30px;
}

.reviews-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.review-card {
    background: rgba(255,255,255,0.95);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

.review-meta h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 3px;
}

.review-rating {
    color: #FFB800;
    font-size: 14px;
}

.review-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-gray);
}

.review-platforms {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.platform-badge {
    background: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: var(--transition);
}

.platform-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.platform-badge img {
    height: 24px;
}



/* ============================================
   PROCESS SECTION
============================================ */
.process-section {
    padding: 100px 0;
    background: #f6f6f6;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.process-step {
    background: #028181;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    transition: var(--transition);
    color: var(--white);
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 20px;
    color: var(--white);
}

.step-title {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 15px;
	color: var(--white)!important;
}

.step-description {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

/* ============================================
   NEWSLETTER SECTION
============================================ */
.newsletter-section {
    padding: 80px 0;
    background: var(--white);
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: #f6f6f6;
    border-radius: var(--border-radius);
}

.newsletter-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.newsletter-content p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border: 1px solid #E0E0E0;
    border-radius: 25px;
    font-size: 14px;
}

.newsletter-form button {
    padding: 15px 40px;
    background: var(--text-dark);
    color: var(--white);
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}





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

/* ============================================
   RESPONSIVE STYLES - PROFESSIONALLY TESTED
   Breakpoints: 2560px, 1440px, 1024px, 900px, 768px, 425px, 375px, 325px
============================================ */

/* ============================================
   1024px - TABLET LANDSCAPE / SMALL LAPTOP
============================================ */
@media (max-width: 1024px) {
    
    /* HEADER */
.header-inner {
    display: inline-flex;
 }
    
    .main-menu {
        gap: 20px;
    }
    
    .main-menu > li > a {
        font-size: 13px;
    }
    
    /* HERO SECTION */
    .hero-section {
        padding: 25px 0;
    }
    
    .hero-content {
        padding: 50px 40px;
        max-width: 95%;
    }
    
    .hero-left {
        min-height: 500px;
    }
    
    .hero-right {
        padding-left: 30px;
        margin-left: 30px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .hero-form {
        padding: 35px;
    }
    
    /* DOCTOR INTRO */
    .doctor-intro-section {
        padding: 40px 0;
    }
    
    .doctor-intro-content {
        gap: 60px;
        padding: 0 30px;
    }
    
    .doctor-name {
        font-size: 36px;
    }
    
    /* GALLERY */
    .gallery-section {
        padding: 40px 30px;
    }
    
    .gallery-mosaic {
        gap: 15px;
        grid-auto-rows: 180px;
    }
    
    /* SAPPHIRE */
    .sapphire-section {
        padding: 40px 0;
    }
    
    .sapphire-content {
        gap: 70px;
        padding: 0 30px;
        grid-template-columns: 380px 1fr;
    }
    
    .sapphire-image img {
        max-width: 380px;
    }
    
    .sapphire-info h2 {
        font-size: 40px;
    }
    
    /* PROCEDURES */
    .procedures-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .procedures-carousel {
        padding: 0 60px;
    }
    
    .procedure-card {
        min-width: 270px;
    }
    
    /* LOCATION */
    .location-section {
        padding: 40px 0;
    }
    
    .location-content {
        padding: 0 30px;
    }
    
    .map-wrapper {
        height: 400px;
    }
    
    /* REVIEWS */
    .reviews-section {
        padding: 40px 0;
    }
    
    .reviews-content {
        padding: 0 30px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* PROCESS */
    .process-section {
        padding: 40px 0;
    }
    
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        padding: 0 30px;
    }
    
    /* FOOTER */
    .footer-main {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 40px;
    }
}

/* ============================================
   900px - TABLET
============================================ */
@media (max-width: 900px) {
    
    /* HEADER */
    .header-inner {
        padding: 0 25px;
    }
    
    .main-menu {
        gap: 18px;
    }
    
    .btn-outline {
        padding: 7px 6px;
        font-size: 11px;
    }
    
    /* HERO SECTION - STACK VERTICALLY */
    .hero-section {
        padding: 20px 15px;
    }
    
    .hero-content {
        padding: 0;
        max-width: 100%;
    }
    
    .hero-content::before {
        width: 100%;
        height: 100%;
        border-radius: 30px 30px 0 0;
        left: 0;
        right: 0;
        top: 0;
        bottom: auto;
    }
    
    .hero-left {
        min-height: 400px;
    }
    
    .hero-right {
        padding: 40px 30px;
        margin-left: 0;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-form {
        padding: 30px;
    }
    
    /* DOCTOR INTRO */
    .doctor-intro-section {
        padding: 70px 0;
    }
    
    .doctor-intro-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 0 25px;
    }
    
    .doctor-name {
        font-size: 32px;
    }
	
    
    /* GALLERY */
    .gallery-section {
        padding: 70px 25px;
    }
    
    .gallery-mosaic {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
	.gallery-item:nth-child(1) {
    	grid-row: span 2;
	}

	.gallery-item:nth-child(2) {
    	grid-row: span 2;
	}

	.gallery-item:nth-child(3) {
    	grid-row: span 2;
	}

	.gallery-item:nth-child(4) {
    	grid-row: span 4;
	}

	.gallery-item:nth-child(5) {
    	grid-row: span 2;
	}
    
    /* SAPPHIRE */
    .sapphire-section {
        padding: 70px 0;
    }
    
    .sapphire-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 25px;
    }
    
    .sapphire-image {
        display: flex;
        justify-content: center;
    }
    
    .sapphire-image img {
        max-width: 100%;
        width: 400px;
    }
    
    .sapphire-info h2 {
        font-size: 36px;
    }
    
    .sapphire-description {
        max-width: 100%;
    }
    
    /* PROCEDURES */
    .procedures-section {
        padding: 70px 0;
    }
    
    .procedure-card {
        min-width: 250px;
    }
    
    /* LOCATION */
    .location-section {
        padding: 70px 0;
    }
    
    .location-content {
        padding: 0 25px;
    }
    
    .map-wrapper {
        height: 350px;
    }
    
    /* REVIEWS */
    .reviews-section {
        padding: 70px 0;
    }
    
    .reviews-content {
        padding: 0 25px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    /* PROCESS */
    .process-section {
        padding: 70px 0;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 25px;
    }
    
    /* FOOTER */
    .footer-content {
        padding: 0 25px;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
}

/* ============================================
   768px - MOBILE LANDSCAPE & TABLET PORTRAIT
============================================ */
@media (max-width: 768px) {
    
    /* HEADER - MOBILE MENU */
    .site-header {
        padding: 15px 0;
    }
	
	.site-header.scrolled{
		top:0px;
	}
    
    .header-inner {
        padding: 0 20px;
    }
    
    .site-logo img {
        height: 35px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        position: fixed;
        top: 120px;
        left: -100%;
        width: 50%;
        height: calc(100vh - 70px);
        background: var(--white);
        padding: 30px 20px;
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        display: block;
    }
    
    .main-navigation.active {
        left: 0;
    }
    
    .main-menu {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }
    
    .main-menu > li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .main-menu > li > a {
        font-size: 16px;
        padding: 15px 0;
    }
    
    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin: 0;
        padding: 0 0 10px 20px;
        background: #f9f9f9;
    }
    
    .sub-menu li a {
        padding: 10px 15px;
    }
    
    .btn-outline {
        display: block;
        text-align: center;
    }
    
    /* HERO */
    .hero-section {
        padding: 15px 10px;
    }

    .hero-content {
        border-radius: 25px;
    }
    
   .hero-content::before {
        width: 100%;
        height: 100%;
        border-radius: 30px 30px 0 0;
        left: 0;
        right: 0;
        top: 0;
        bottom: auto;
    }
    
    .hero-left {
        min-height: 350px;
    }
    
    .hero-right {
        padding: 35px 25px;
    }
    
    .hero-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .hero-form {
        padding: 25px;
        border-radius: 25px;
    }
    
    .form-control {
        padding: 13px 18px;
        font-size: 13px;
    }
    
    .btn-primary {
        padding: 13px;
        font-size: 18px;
    }
    
    /* DOCTOR INTRO */
    .doctor-intro-section {
        padding: 60px 0;
    }
    
    .doctor-intro-content {
        padding: 0 20px;
        gap: 35px;
    }
    
    .doctor-name {
        font-size: 30px;
        margin-bottom: 18px;
    }
    
    .doctor-credentials li {
        font-size: 16px;
        padding: 7px 0 7px 22px;
    }
    
    .doctor-description {
        font-size: 16px;
    }
    
    .btn-learn-more {
        padding: 11px 30px;
        font-size: 18px;
    }
    
    /* GALLERY */
    .gallery-section {
        padding: 60px 20px;
    }
    
    .gallery-mosaic {
        grid-auto-rows: 170px;
        gap: 10px;
    }
    
    /* SAPPHIRE */
    .sapphire-section {
        padding: 60px 0;
    }
    
    .sapphire-content {
        padding: 0 20px;
        gap: 35px;
    }
    
    .sapphire-image img {
        width: 100%;
        max-width: 350px;
    }
    
    .sapphire-info h2 {
        font-size: 34px;
        margin-bottom: 20px;
    }
    
    .sapphire-description {
        font-size: 16px;
		padding-left:80px;
		padding-right:80px;
    }
    
    /* PROCEDURES */
    .procedures-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .procedures-carousel {
        padding: 0 50px;
    }
    
    .carousel-track {
        gap: 20px;
    }
    
    .procedure-card {
        min-width: 230px;
    }
    
    .carousel-nav {
        width: 45px;
        height: 45px;
        font-size: 32px;
    }
    
    /* LOCATION */
    .location-section {
        padding: 60px 0;
    }
    
    .location-content {
        padding: 0 20px;
    }
    
    .location-header h2 {
        font-size: 26px;
    }
    
    .map-wrapper {
        height: 300px;
        border-radius: 20px;
    }
    
    .contact-info-badge {
        padding: 5px 20px;
        bottom: 20px;
        left: 20px;
    }
    
    /* REVIEWS */
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-content {
        padding: 0 20px;
    }
    
    .reviews-header h2 {
        font-size: 30px;
    }
    
    /* PROCESS */
    .process-section {
        padding: 60px 0;
    }
    
    .process-header h2 {
        font-size: 26px;
    }
    
    .process-steps {
        grid-template-columns: 1fr 1fr;
        padding: 0 20px;
        gap: 20px;
    }
    
    .process-step {
        padding: 35px 25px;
    }
    
    /* NEWSLETTER */
    .newsletter-section {
        padding: 50px 0;
    }
    
    .newsletter-content {
        padding: 40px 25px;
        margin: 0 20px;
    }
    
    .newsletter-content p[style*="32px"] {
        font-size: 22px !important;
    }
    
    .newsletter-content p[style*="22px"] {
        font-size: 16px !important;
    }
    
    /* FOOTER */
    .site-footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        padding: 0 20px;
    }
    
    .footer-main {
        grid-template-columns: 2fr 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ============================================
   425px - LARGE MOBILE
============================================ */
@media (max-width: 425px) {
    
    /* HEADER - MOBILE MENU */
    .site-header {
        padding: 15px 0;
    }
	
	.site-header.scrolled{
		top:0px;
	}
    
    .header-inner {
        padding: 0 20px;
    }
    
    .site-logo img {
        height: 35px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        position: fixed;
        top: 120px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: var(--white);
        padding: 30px 20px;
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        display: block;
    }
    
    .main-navigation.active {
        left: 0;
    }
    
    .main-menu {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }
    
    .main-menu > li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .main-menu > li > a {
        font-size: 16px;
        padding: 15px 0;
    }
    
    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin: 0;
        padding: 0 0 10px 20px;
        background: #f9f9f9;
    }
    
    .sub-menu li a {
        padding: 10px 15px;
    }

    
    .btn-outline {
        display: block;
        text-align: center;
    }
    
    /* HERO */
    .hero-section {
        padding: 12px 8px;
    }
    
    .hero-content {
        border-radius: 20px;
		grid-template-columns: 1fr;
    }
    
   .hero-content::before {
        width: 100%;
        height: 100%;
        border-radius: 30px 30px 0 0;
        left: 0;
        right: 0;
        top: 0;
        bottom: auto;
    }
    
    .hero-left {
        min-height: 300px;
    }
    
    .hero-right {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 19px;
        margin-bottom: 18px;
    }
    
    .hero-form {
        padding: 22px;
        border-radius: 22px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-control {
        padding: 12px 16px;
        font-size: 12px;
        border-radius: 20px;
    }
    
    .btn-primary {
        padding: 12px;
        font-size: 18px;
        border-radius: 20px;
    }
    
    /* DOCTOR INTRO */
    .doctor-intro-section {
        padding: 50px 0;
    }
    
    .doctor-intro-content {
        padding: 0 15px;
        gap: 30px;
		grid-template-columns: 1fr;
    }
    
    .doctor-main-image {
        border-radius: 20px;
    }
    
    .doctor-name {
        font-size: 30px;
        margin-bottom: 15px;
    }
    
    .doctor-credentials li {
        font-size: 14px;
        padding: 6px 0 6px 20px;
    }
    
    .doctor-description {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .btn-learn-more {
        padding: 10px 25px;
        font-size: 18px;
        border-radius: 20px;
		display:none;
    }
    
    /* GALLERY */
    .gallery-section {
        padding: 50px 15px;
    }
    
    .gallery-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
        gap: 10px;
    }
    
    .gallery-item {
        border-radius: 20px;
    }
    
	.gallery-item:nth-child(1) {
        grid-row: span 1;
    }
	
	.gallery-item:nth-child(2) {
        grid-row: span 1;
    }
	
	.gallery-item:nth-child(3) {
        grid-row: span 1;
    }
	
	.gallery-item:nth-child(4) {
        grid-row: span 2;
    }
	
    .gallery-item:nth-child(5) {
        grid-row: span 1;
    }
    
    /* SAPPHIRE */
    .sapphire-section {
        padding: 50px 0;
    }
    
    .sapphire-content {
        padding: 0 15px;
        gap: 30px;
    }
    
    .sapphire-image img {
        width: 100%;
        max-width: 100%;
    }
    
    .sapphire-info h2 {
        font-size: 26px;
        margin-bottom: 18px;
    }
    
    .sapphire-description {
        font-size: 15px;
        margin-bottom: 20px;
		padding:0px;
    }
    
    /* PROCEDURES */
    .procedures-section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 26px;
		margin-bottom: -30px;
    }
    
    .procedures-carousel {
        padding: 0 40px;
    }
    
    .carousel-track {
        gap: 15px;
    }
    
    .procedure-card {
        min-width: 210px;
        border-radius: 20px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }
    
    .carousel-nav.prev {
        left: 5px;
    }
    
    .carousel-nav.next {
        right: 5px;
    }
    
    /* LOCATION */
    .location-section {
        padding: 50px 0;
    }
    
    .location-content {
        padding: 0 15px;
    }
    
    .location-header h2 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .map-wrapper {
        height: 280px;
        border-radius: 18px;
    }
    
    .contact-info-badge {
        padding: 4px 16px;
        bottom: 15px;
        left: 15px;
        gap: 12px;
        border-radius: 12px;
    }
    
    .contact-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .contact-text h4 {
        font-size: 12px;
    }
    
    .contact-text p {
        font-size: 11px;
    }
    
    /* REVIEWS */
    .reviews-section {
        padding: 50px 0;
    }
    
    .reviews-content {
        padding: 0 15px;
    }
    
    .reviews-header h2 {
        font-size: 26px;
        margin-bottom: 35px;
    }
    
/* PROCESS SECTION */
.process-section {
    padding: 60px 20px;
    background: #fff;
}

.process-header h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.process-step {
    position: relative;
    padding: 40px 30px 30px;
    border-radius: 15px;
    background: #028181;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: left;
}

.process-step:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.step-number-bg {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 80px;
    font-weight: 900;
    color: #f0f0f0;
    line-height: 1;
    opacity: 0.3;
}

.step-icon {
    width: 60px!important;
    height: 60px!important;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.step-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .process-section {
        padding: 40px 15px;
    }
    
    .process-header h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-step {
        padding: 30px 20px 25px;
    }
    
    .step-number-bg {
        font-size: 60px;
        top: 15px;
        right: 15px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .step-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .step-description {
        font-size: 13px;
		color: #fff;
        padding-right: 70px;
    }
}
    
    /* NEWSLETTER */
    .newsletter-content {
        padding: 35px 20px;
        margin: 0 15px;
        border-radius: 18px;
    }
    
    .newsletter-content p[style*="32px"] {
        font-size: 18px !important;
    }
    
    .newsletter-content p[style*="22px"] {
        font-size: 14px !important;
    }
    
    /* FOOTER */
    .footer-content {
        padding: 0 15px;
    }
    
    .footer-about h3 {
        font-size: 18px;
    }
    
    .footer-newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
}

/* ============================================
   375px - MEDIUM MOBILE (iPhone 6/7/8)
============================================ */
@media (max-width: 375px) {
    
    /* HEADER */
	
	.main-navigation {
        padding: 25px 15px;
		top: 110px;
        left: -100%;
        width: 80%;
    }
	
    .site-header {
        padding: 12px 0;
    }
	
	.site-header.scrolled{
		top:0px;
	}
    
    .header-inner {
        padding: 0 12px;
    }
    
    .site-logo {
        font-size: 15px;
    }
    
    .site-logo img {
        height: 30px;
    }
    
    .mobile-menu-toggle span {
        width: 22px;
    }
    
    /* HERO */
    .hero-section {
        padding: 10px 6px;
    }
    
    .hero-content {
        border-radius: 18px;
    }
    
   .hero-content::before {
        width: 100%;
        height: 100%;
        border-radius: 30px 30px 0 0;
        left: 0;
        right: 0;
        top: 0;
        bottom: auto;
    }
    
    .hero-left {
        min-height: 280px;
    }
    
    .hero-right {
        padding: 25px 18px;
    }
    
    .hero-title {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .hero-form {
        padding: 20px;
        border-radius: 20px;
    }
    
    .form-control {
        padding: 11px 15px;
        font-size: 11px;
    }
    
    .btn-primary {
        padding: 11px;
        font-size: 16px;
    }
    
    /* DOCTOR INTRO */
    .doctor-intro-section {
        padding: 45px 0;
    }
    
    .doctor-intro-content {
        padding: 0 12px;
        gap: 28px;
    }
    
    .doctor-main-image {
        border-radius: 18px;
    }
    
    .doctor-name {
        font-size: 30px;
        margin-bottom: 14px;
    }
    
    .doctor-credentials li {
        font-size: 13px;
        padding: 5px 0 5px 18px;
    }
    
    .doctor-description {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .btn-learn-more {
        padding: 9px 22px;
        font-size: 16px;
		display:none;
    }
    
    /* GALLERY */
    .gallery-section {
        padding: 45px 12px;
    }
    
    .gallery-mosaic {
        grid-auto-rows: 180px;
        gap: 8px;
    }
    
    .gallery-item {
        border-radius: 18px;
    }
    
    /* SAPPHIRE */
    .sapphire-section {
        padding: 45px 0;
    }
    
    .sapphire-content {
        padding: 0 12px;
        gap: 28px;
    }
    
    .sapphire-info h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .sapphire-description {
        font-size: 14px;
        margin-bottom: 18px;
		padding:0px;
    }
    
    /* PROCEDURES */
    .procedures-section {
        padding: 45px 0;
    }
    
    .section-title {
        font-size: 26px;
		margin-bottom: -30px;
    }
    
    .procedures-carousel {
        padding: 0 35px;
    }
    
    .procedure-card {
        min-width: 190px;
    }
    
    .carousel-nav {
        width: 38px;
        height: 38px;
        font-size: 26px;
    }
    
    /* LOCATION */
    .location-section {
        padding: 45px 0;
    }
    
    .location-content {
        padding: 0 12px;
    }
    
    .location-header h2 {
        font-size: 20px;
        margin-bottom: 22px;
    }
    
    .map-wrapper {
        height: 260px;
        border-radius: 16px;
    }
    
    .contact-info-badge {
        padding: 4px 14px;
        bottom: 12px;
        left: 12px;
    }
    
    .contact-icon {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }
    
    /* REVIEWS */
    .reviews-section {
        padding: 45px 0;
    }
    
    .reviews-content {
        padding: 0 12px;
    }
    
    .reviews-header h2 {
        font-size: 26px;
    }
    
    /* PROCESS */
    .process-section {
        padding: 45px 0;
    }
    
    .process-header h2 {
        font-size: 20px;
    }
    
    .process-steps {
        padding: 0 12px;
    }
    
    .process-step {
        padding: 28px 18px;
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
    
    .step-title {
        font-size: 15px;
    }
    
    /* NEWSLETTER */
    .newsletter-content {
        padding: 30px 18px;
        margin: 0 12px;
    }
    
    .newsletter-content p[style*="32px"] {
        font-size: 17px !important;
    }
    
    .newsletter-content p[style*="22px"] {
        font-size: 13px !important;
    }
    
    /* FOOTER */
    .footer-content {
        padding: 0 12px;
    }
}

/* ============================================
   325px - SMALL MOBILE (iPhone SE 1st Gen)
============================================ */
@media (max-width: 325px) {
    
    /* HEADER */
    .site-header {
        padding: 10px 0;
    }
	
	.site-header.scrolled{
		top:0px;
	}
    
    .header-inner {
        padding: 0 10px;
    }
    
    .site-logo {
        font-size: 14px;
    }
    
    .site-logo img {
        height: 28px;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
        height: 2.5px;
    }
    
    .main-navigation {
        padding: 25px 15px;
		top: 120px;
        left: -100%;
        width: 90%;
    }
    
    /* HERO */
    .hero-section {
        padding: 8px 5px;
    }
    
    .hero-content {
        border-radius: 16px;
    }
    
   .hero-content::before {
        width: 100%;
        height: 100%;
        border-radius: 30px 30px 0 0;
        left: 0;
        right: 0;
        top: 0;
        bottom: auto;
    }
    
    .hero-left {
        min-height: 250px;
    }
    
    .hero-right {
        padding: 22px 15px;
    }
    
    .hero-title {
        font-size: 18px;
        margin-bottom: 14px;
    }
    
    .hero-form {
        padding: 18px;
        border-radius: 18px;
    }
    
    .form-group {
        margin-bottom: 12px;
    }
    
    .form-control {
        padding: 10px 14px;
        font-size: 10px;
        border-radius: 18px;
    }
    
    .btn-primary {
        padding: 10px;
        font-size: 16px;
        border-radius: 18px;
    }
    
    /* DOCTOR INTRO */
    .doctor-intro-section {
        padding: 40px 0;
    }
    
    .doctor-intro-content {
        padding: 0 10px;
        gap: 25px;
    }
    
    .doctor-main-image {
        border-radius: 16px;
    }
    
    .doctor-name {
        font-size: 27px;
        margin-bottom: 12px;
    }
    
    .doctor-credentials li {
        font-size: 13px;
        padding: 4px 0 4px 16px;
    }
    
    .doctor-credentials li::before {
        font-size: 13px;
    }
    
    .doctor-description {
        font-size: 13px;
        margin-bottom: 14px;
    }
    
    .btn-learn-more {
        padding: 8px 20px;
        font-size: 16px;
        border-radius: 18px;
		display:none;
    }
    
    /* GALLERY */
    .gallery-section {
        padding: 40px 10px;
    }
    
    .gallery-mosaic {
        grid-auto-rows: 160px;
        gap: 8px;
    }
    
    .gallery-item {
        border-radius: 16px;
    }
    
    /* SAPPHIRE */
    .sapphire-section {
        padding: 40px 0;
    }
    
    .sapphire-content {
        padding: 0 10px;
        gap: 25px;
    }
    
    .sapphire-info h2 {
        font-size: 27px;
        margin-bottom: 14px;
    }
    
    .sapphire-description {
        font-size: 13px;
        margin-bottom: 16px;
		padding:0px;
    }
    
    /* PROCEDURES */
    .procedures-section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 27px;
		margin-bottom: -20px;
    }
    
    .procedures-carousel {
        padding: 0 32px;
    }
    
    .carousel-track {
        gap: 12px;
    }
    
    .procedure-card {
        min-width: 170px;
        border-radius: 18px;
    }
    
    .carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
    
    /* LOCATION */
    .location-section {
        padding: 40px 0;
    }
    
    .location-content {
        padding: 0 10px;
    }
    
    .location-header {
        margin-bottom: 20px;
    }
    
    .location-header h2 {
        font-size: 27px;
    }
    
    .map-wrapper {
        height: 240px;
        border-radius: 15px;
    }
    
    .contact-info-badge {
        padding: 3px 12px;
        bottom: 10px;
        left: 10px;
        gap: 8px;
        border-radius: 10px;
    }
    
    .contact-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .contact-text h4 {
        font-size: 11px;
    }
    
    .contact-text p {
        font-size: 10px;
    }
    
    /* REVIEWS */
    .reviews-section {
        padding: 40px 0;
    }
    
    .reviews-content {
        padding: 0 10px;
    }
    
    .reviews-header {
        margin-bottom: 27px;
    }
    
    .reviews-header h2 {
        font-size: 25px;
    }
    
    /* PROCESS */
    .process-section {
        padding: 40px 0;
    }
    
    .process-header {
        margin-bottom: 25px;
    }
    
    .process-header h2 {
        font-size: 27px;
    }
    
    .process-steps {
        padding: 0 10px;
        gap: 12px;
    }
    
    .process-step {
        padding: 25px 16px;
        border-radius: 18px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .step-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .step-description {
        font-size: 13px;
		color: #fff;
        padding-right: 70px;
    }
    
    /* NEWSLETTER */
    .newsletter-section {
        padding: 40px 0;
    }
    
    .newsletter-content {
        padding: 28px 15px;
        margin: 0 10px;
        border-radius: 16px;
    }
    
    .newsletter-content p[style*="32px"] {
        font-size: 15px !important;
    }
    
    .newsletter-content p[style*="22px"] {
        font-size: 12px !important;
    }
    
    /* FOOTER */
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        padding: 0 10px;
    }
    
    .footer-main {
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .footer-about h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .footer-about p {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .footer-newsletter-form input {
        padding: 10px 15px;
        font-size: 11px;
    }
    
    .footer-newsletter-form button {
        padding: 10px 18px;
        font-size: 11px;
    }
    
    .footer-column h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
    
    .footer-bottom {
        padding-top: 20px;
        gap: 12px;
    }
    
    .copyright,
    .footer-legal a {
        font-size: 11px;
    }
}

/* ============================================
   MOBILE MENU ANIMATIONS
============================================ */
.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(7px, -6px);
}

/* ============================================
   TOUCH OPTIMIZATIONS FOR MOBILE
============================================ */
@media (max-width: 768px) {

    
    /* Better touch scrolling */
    .carousel-track {
        -webkit-overflow-scrolling: touch;
    }
}

/* ============================================
   UTILITY CLASSES
============================================ */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .show-mobile {
        display: none !important;
    }
}

/* =====================================
   ABOUT US PAGE
===================================== */



/* =====================================
   VALUES GRID
===================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* =====================================
   VALUE CARD
===================================== */
.value-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* =====================================
   ICON
===================================== */
.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

/* =====================================
   TITLE
===================================== */
.value-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* =====================================
   TEXT
===================================== */
.value-text {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 15px;
}

/* =====================================
   RESPONSIVE
===================================== */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .value-card {
        padding: 35px 25px;
    }
}

@media (max-width: 425px) {
    .value-title {
        font-size: 20px;
    }

    .value-icon {
        font-size: 42px;
    }
}


/* =====================================
   HAIR TRANSPLANT SAYFA
===================================== */

/* =====================================
   SERVICES GRID
===================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* =====================================
   SERVICE CARD
===================================== */
.service-card {
    background: #028181;
    padding: 50px;
    border-radius: 25px;
}

/* =====================================
   TITLE
===================================== */
.service-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff !important;
}

/* =====================================
   DESCRIPTION
===================================== */
.service-desc {
    color: #fff;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 17px;
}

/* =====================================
   LIST
===================================== */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    position: relative;
    padding: 8px 0 8px 25px;
    color: var(--text-gray);
    font-size: 15px;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.seo-text-section h2 {
font-size: 32px;
margin-bottom: 20px;
}


.seo-text-section h3 {
font-size: 24px;
margin: 30px 0 15px;
}


.seo-text-section p {
line-height: 1.7;
margin-bottom: 20px;
color: #555;
}

.seo-text-section {
	padding-top:30px;
padding-bottom:30px;
}

.service-desc ul {
    list-style: disc;
    padding-left: 20px;
    margin: 15px 0;
}

.service-desc li {
    margin-bottom: 8px;
}

/* =====================================
   RESPONSIVE
===================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-card {
        padding: 35px 25px;
    }

    .service-title {
        font-size: 24px;
    }
}

@media (max-width: 425px) {
    .service-title {
        font-size: 22px;
    }

    .service-desc,
    .service-list li {
        font-size: 14px;
    }
}


/* =====================================
   RESULTS GRID
===================================== */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* =====================================
   CARD
===================================== */
.result-card {
    background: #ececec;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.result-card:hover {
    transform: translateY(-10px);
}

/* =====================================
   IMAGE AS BACKGROUND
===================================== */
.result-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 25px 25px 0 0;
	height:375px;
}

/* =====================================
   BADGE
===================================== */
.result-badge {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 12px;
    background: var(--primary-color);
    color: #fff;
}

/* =====================================
   INFO
===================================== */
.result-info {
    padding: 20px;
    text-align: center;
}

.result-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.result-info p {
    font-size: 14px;
    color: var(--text-gray);
}

/* =====================================
   RESPONSIVE
===================================== */
@media (max-width: 1200px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: 1fr;
    }

    .result-image img {
        height: 260px;
    }
}

@media (max-width: 420px) {
    .result-image img {
        height: 220px;
    }

    .result-info h3 {
        font-size: 15px;
    }

    .result-info p {
        font-size: 13px;
    }
}



/* ===============================
   BLOG SECTION
================================ */
.blog-section {
    padding: 100px 0;
    background: #fff;
}

/* ===============================
   LAYOUT
================================ */
.blog-layout {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ===============================
   BLOG CARDS
================================ */
.blog-card {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    background: #ececec;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-content {
    padding: 40px;
}

.blog-date {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 10px;
    display: block;
}

.blog-card-content h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-card-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.blog-read-more {
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

/* ===============================
   SIDEBAR
================================ */
.blog-sidebar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar-box {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.sidebar-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.sidebar-box p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* FORM */
.sidebar-form input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    font-size: 14px;
}

.sidebar-form button {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

/* LIST */
.sidebar-list {
    list-style: none;
    padding: 0;
}

.sidebar-list li {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

    .blog-card {
        grid-template-columns: 1fr;
    }

    .blog-card-image img {
        height: 260px;
    }
}

@media (max-width: 480px) {
    .blog-card-content {
        padding: 30px 25px;
    }

    .blog-card-content h2 {
        font-size: 20px;
    }
}

/* ===============================
   CONTACT SECTION – ISOLATED
================================ */

.contact-section * {
    box-sizing: border-box;
}

.contact-section {
    padding: 100px 0;
    background: #fff;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* TITLES */
.contact-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-desc {
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* FORM */
.contact-form {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: 25px;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    font-family: inherit;
}


.form-group textarea {
    border-radius: 20px;
    resize: vertical;
}

.contact-btn {
    width: 100%;
    padding: 15px;
    border-radius: 25px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

/* INFO */
.contact-info-box {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: 25px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

/* CTA */
.contact-cta-box {
    background: var(--primary-color);
    padding: 40px;
    border-radius: 25px;
    color: #fff;
    text-align: center;
}

.contact-cta-box a {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 40px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
}

/* ===============================
   MOBILE FIX (375 + 320 SAFE)
================================ */

@media (max-width: 480px) {
    .contact-container {
        padding: 0 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-title {
        font-size: 26px;
    }

    .contact-form,
    .contact-info-box,
    .contact-cta-box {
        padding: 25px;
    }
}

/* HARD STOP – OVERFLOW KILL */
@media (max-width: 400px) {
    .contact-section {
        overflow-x: hidden;
    }
}



/* =====================================
   SINGLE POST LAYOUT
===================================== */

.single-content-section {
    padding: 80px 0;
    background: white;
}

.single-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
}

/* CONTENT */
.single-content {
    max-width: 100%;
}

.single-thumbnail {
    margin-bottom: 40px;
    border-radius: 25px;
    overflow: hidden;
}

.single-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.single-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-dark);
}

/* SIDEBAR */
.single-sidebar {
    background: var(--secondary-color);
    border-radius: 50px;
    padding: 10px;
    position: sticky;
    top: 120px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .single-layout {
        grid-template-columns: 1fr;
    }

    .single-sidebar {
        position: relative;
        top: auto;
        margin-top: 40px;
    }
}


/* Phone Input with Country Code Styles */
.phone-group {
    position: relative;
}

.phone-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.country-code-select {
    flex: 0 0 120px;
    padding: 12px 25px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 14px;
    background-color: #fff;
    cursor: pointer;
	color:#8d8d8d;
    transition: all 0.3s ease;
    font-family: inherit;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M1.41 0L6 4.59L10.59 0L12 1.41l-6 6l-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
}

.country-code-select:focus {
    outline: none;
    border-color: #1F4948;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.country-code-select:hover {
    border-color: #1F4948;
}

.phone-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.phone-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .phone-input-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .country-code-select {
        flex: 1;
        width: 100%;
    }
}


/* Form Submit Handling */
.hero-form.submitting {
    opacity: 0.6;
    pointer-events: none;
}

/* Banner Mobil */

@media (max-width: 425px){
	.hero-content::before {
    content: '';
    position: absolute;
    inset: 0;
	height: 100%;
    background-image: url(https://drayaloglu.com/wp-content/uploads/2026/01/dr-ayaoglu-hair-transplant-mb-bg-.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 40px 0 0 40px;
    z-index: 1;
	}
}


/* INSTAGRAM FEEDS */

.instagramfeeds{
	padding-right:150px;
	padding-left:150px;
}

@media (max-width: 900px){
	.instagramfeeds {
	padding-right:20px;
	padding-left:20px;
}
}
/* ============================================
   FOOTER
============================================ */
.site-footer {
    background: var(--white);
    border-top: 1px solid #E0E0E0;
    padding: 60px 0 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 0.7fr 0.9fr 2.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* ===== FOOTER ABOUT (Sol Kolon) ===== */
.footer-about h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* ===== SOCIAL ICON BOXES ===== */
.footer-social-icons {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.social-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #D0D0D0;
    border-radius: 6px;
    color: var(--text-gray);
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.social-icon-box:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* ===== FOOTER MENU KOLONLARI ===== */
.footer-column h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--text-dark);
}

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

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-gray);
    transition: var(--transition);
    white-space: nowrap;
}

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

/* ===== FOOTER CONTACT (Sağ Kolon) ===== */
.footer-contact h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--text-dark);
}

/* ===== 2x2 CLINIC GRID ===== */
.clinic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
}

.clinic-item {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-gray);
}

.clinic-item strong {
    display: block;
    margin-bottom: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

.clinic-item p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.5;
}

.clinic-icon {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.5;
}

/* 4. kutu: telefon + e-posta */
.clinic-item--contact {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.clinic-contact-row {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.clinic-contact-row a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.clinic-contact-row a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid #E0E0E0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 13px;
    color: var(--text-gray);
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    font-size: 13px;
    color: var(--text-gray);
    transition: var(--transition);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .footer-main {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-legal {
        gap: 15px;
    }
}
