/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

:root {
    --gold: #1A3A6B;
    --gold-dark: #0D2347;
    --gold-light: #A8C4F4;
    --black: #F5F7FA;
    --black-light: #E8EDF5;
    --black-lighter: #D6E0F0;
    --white: #000000;
    --gray: #1A2A4A;
    --gray-dark: #4A5A7A;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: var(--gray);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Allow text selection only where needed */
p, h1, h2, h3, h4, h5, h6, span, a, li, td, th {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: var(--gold);
    line-height: 1.3;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== LOADING ANIMATION ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 60px;
    height: 60px;
    border: 3px solid var(--black-light);
    border-top: 3px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(245, 247, 250, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(26, 58, 107, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(245, 247, 250, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-left: 12px;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

/* ===== HERO SECTIONS ===== */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(245, 247, 250, 0.9) 0%, rgba(245, 247, 250, 0.7) 100%), url('../images/hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--black) 100%);
}

.page-hero {
    height: 60vh;
    background: linear-gradient(135deg, rgba(245, 247, 250, 0.9) 0%, rgba(245, 247, 250, 0.8) 100%), url('../images/interior.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.4);
    animation: fadeInUp 1s ease;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
    font-family: 'Cinzel', serif;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--gray);
    animation: fadeInUp 1s ease 0.4s both;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #FFFFFF;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: fadeInUp 1s ease 0.6s both;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 58, 107, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: #FFFFFF;
}

.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ===== SECTIONS ===== */
.section {
    padding: 6rem 0;
}

.section-dark {
    background: var(--black-light);
}

.section-pattern {
    position: relative;
    overflow: hidden;
}

.section-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/turkish-pattern.png') repeat;
    opacity: 0.03;
    pointer-events: none;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* ===== OUR STORY SECTION ===== */
.our-story {
    background: linear-gradient(135deg, var(--black-light) 0%, var(--black) 100%);
    position: relative;
}

.our-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/turkish-pattern.png') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text {
    position: relative;
    z-index: 2;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--gray);
    line-height: 1.8;
}

.story-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}

.story-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 58, 107, 0.1) 0%, transparent 100%);
    z-index: 1;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

/* ===== MEET ABBAS SECTION ===== */
.abbas-section {
    background: var(--black);
}

.abbas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.abbas-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.abbas-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.abbas-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.abbas-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--gray);
    line-height: 1.8;
}

.experience-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(26, 58, 107, 0.1);
    border: 1px solid var(--gold);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    margin-top: 1rem;
    color: var(--gold);
    font-weight: 600;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--black-light);
    border: 1px solid rgba(26, 58, 107, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 58, 107, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
    margin: 1.5rem 0;
    font-family: 'Cinzel', serif;
}

.service-list {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.service-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.8rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.1rem;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-benefits {
    background: rgba(26, 58, 107, 0.05);
    border-left: 4px solid var(--gold);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.service-benefits h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 1rem;
}

.benefits-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefits-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: linear-gradient(135deg, var(--black-light) 0%, var(--black) 100%), url('../images/testimonial-bg.jpg') center/cover;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--black);
    border: 1px solid rgba(26, 58, 107, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--gold);
    font-family: 'Cinzel', serif;
    opacity: 0.3;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--gray);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== BLOG SECTION ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--black-light);
    border: 1px solid rgba(26, 58, 107, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.blog-content p {
    color: var(--gray-dark);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 0.8rem;
}

/* ===== CONTACT ===== */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-item {
    background: var(--black-light);
    border: 1px solid rgba(26, 58, 107, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.contact-item h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.map-container {
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(26, 58, 107, 0.2);
}

/* ===== PRICING TABLE ===== */
.pricing-section {
    background: var(--black-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: var(--black);
    border: 1px solid rgba(26, 58, 107, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--gold);
    transform: scale(1.05);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gold);
    color: #FFFFFF;
    padding: 0.5rem 3rem;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
    font-family: 'Cinzel', serif;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* ===== BOOKING MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 247, 250, 0.95);
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--black-light);
    border: 1px solid var(--gold);
    border-radius: 12px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.modal h2 {
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.modal-btn.primary {
    background: var(--gold);
    color: #FFFFFF;
}

.modal-btn.secondary {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 58, 107, 0.3);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black-light);
    border-top: 1px solid rgba(26, 58, 107, 0.2);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-about p {
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
}

.footer h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--gray-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact p {
    margin-bottom: 0.8rem;
    color: var(--gray-dark);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--black);
    color: var(--gold);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 58, 107, 0.2);
}

.social-link:hover {
    background: var(--gold);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(26, 58, 107, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(26, 58, 107, 0.1);
    color: var(--gray-dark);
    font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== MOBILE FIXES ===== */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--black-light);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 2rem;
    }

    .nav.active {
        display: flex;
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        width: 100%;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
        width: 100%;
    }

    /* Prevent body scroll when menu is open */
    body.no-scroll {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-tagline {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .story-content,
    .abbas-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-image,
    .abbas-image {
        order: -1;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .section {
        padding: 4rem 0;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .modal-content {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .service-card,
    .contact-item,
    .pricing-card,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .btn {
        padding: 0.8rem 2rem;
    }
}

/* ===== TOUCH SCROLL FIXES ===== */
html, body {
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
}

.container, section, .hero {
    -webkit-overflow-scrolling: touch;
}

/* Prevent horizontal scroll */
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Add these styles to fix the services page */

/* Service highlight section */
.service-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 4rem 0;
}

.service-highlight .highlight-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-highlight .highlight-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.service-highlight .highlight-content {
    padding: 2rem 0;
}

.service-highlight .service-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.service-highlight .price {
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
    margin: 1rem 0 2rem 0;
    font-family: 'Cinzel', serif;
}

/* Price table container for better scrolling on mobile */
.price-table-container {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid rgba(26, 58, 107, 0.2);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--black);
    min-width: 600px;
}

.price-table th {
    background: var(--gold);
    color: #FFFFFF;
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.price-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(26, 58, 107, 0.1);
    color: var(--gray);
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table tr:hover {
    background: rgba(26, 58, 107, 0.05);
}

/* Booking CTA section */
.booking-cta {
    background: linear-gradient(135deg, var(--black-light) 0%, var(--black) 100%);
    text-align: center;
    padding: 4rem 0;
    margin-top: 3rem;
}

/* Service card improvements */
.service-card {
    background: var(--black-light);
    border: 1px solid rgba(26, 58, 107, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card .service-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.service-card .price {
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
    margin: 1rem 0;
    font-family: 'Cinzel', serif;
}

.service-card .service-description {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card .service-list {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.service-card .service-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.8rem;
    color: var(--gray);
}

.service-card .service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.1rem;
}

.service-card .service-list li strong {
    color: var(--gold-light);
}

/* Mobile responsiveness for services */
@media (max-width: 768px) {
    .service-highlight {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-highlight .highlight-image {
        order: -1;
    }
    
    .service-highlight .highlight-image img {
        height: 300px;
    }
    
    .service-highlight .highlight-content {
        padding: 1rem 0;
    }
    
    .price-table {
        min-width: 500px;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-card .service-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .service-highlight .highlight-image img {
        height: 250px;
    }
    
    .service-highlight .price {
        font-size: 2rem;
    }
    
    .price-table {
        min-width: 400px;
    }
    
    .price-table th,
    .price-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* Turkish Barber Experience Process Steps - Original Style */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.process-step {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--black);
    border-radius: 16px;
    border: 1px solid rgba(26, 58, 107, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 58, 107, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step:hover::before {
    opacity: 1;
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(26, 58, 107, 0.2);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    position: relative;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.process-step p {
    color: var(--gray);
    line-height: 1.6;
}

/* Mobile responsiveness for process steps */
@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .process-step h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .process-step {
        padding: 1.5rem 1rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Full Service Card without Image */
.full-service-card {
    background: var(--black-light);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.full-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 58, 107, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.service-icon-large {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.full-service-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--gold);
    position: relative;
    z-index: 2;
}

.price-large {
    font-size: 3.5rem;
    color: var(--gold);
    font-weight: 700;
    margin: 1rem 0 2rem 0;
    font-family: 'Cinzel', serif;
    position: relative;
    z-index: 2;
}

.full-service-card .service-description {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(26, 58, 107, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(26, 58, 107, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.benefit-item:hover {
    background: rgba(26, 58, 107, 0.1);
    transform: translateY(-2px);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--gold);
    width: 30px;
    text-align: center;
}

.benefit-item span {
    color: var(--gray);
    font-weight: 500;
}

.full-service-cta {
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.cta-note {
    color: var(--gray-dark);
    font-style: italic;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Remove old service-highlight styles */
.service-highlight {
    display: none;
}

/* Mobile responsiveness for full service card */
@media (max-width: 768px) {
    .full-service-card {
        padding: 3rem 2rem;
        margin: 0 1rem;
    }
    
    .service-icon-large {
        font-size: 3rem;
    }
    
    .full-service-card h3 {
        font-size: 1.8rem;
    }
    
    .price-large {
        font-size: 2.8rem;
    }
    
    .full-service-card .service-description {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .full-service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon-large {
        font-size: 2.5rem;
    }
    
    .full-service-card h3 {
        font-size: 1.6rem;
    }
    
    .price-large {
        font-size: 2.5rem;
    }
    
    .benefit-item {
        padding: 0.8rem;
    }
    
    .benefit-item i {
        font-size: 1.3rem;
    }
}

/* Contact Form Styles */
.contact-form-container {
    background: var(--black-light);
    border: 2px solid rgba(26, 58, 107, 0.3);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 58, 107, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.contact-form-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #FFFFFF;
}

.contact-form-header h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    color: var(--gray-dark);
    font-size: 1.1rem;
}

.contact-form {
    position: relative;
    z-index: 2;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
}

.form-group label i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: var(--black);
    border: 2px solid rgba(26, 58, 107, 0.2);
    border-radius: 12px;
    color: var(--gray);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(26, 58, 107, 0.1);
    background: var(--black-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-dark);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Inter', sans-serif;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 58, 107, 0.3);
}

/* Remove old contact-form styles */
.contact-form {
    /* This will be overridden by new styles */
}

/* Mobile responsiveness for contact form */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .contact-form-header h3 {
        font-size: 1.7rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 1rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 1.5rem 1rem;
    }
    
    .contact-form-header {
        margin-bottom: 2rem;
    }
    
    .contact-form-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-form-header h3 {
        font-size: 1.5rem;
    }
    
    .contact-form-header p {
        font-size: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Form validation styles */
.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #ff6b6b;
}

.form-group input:valid:not(:focus):not(:placeholder-shown),
.form-group textarea:valid:not(:focus):not(:placeholder-shown) {
    border-color: #51cf66;
}

/* ===== LUXURY SECTION STYLES ===== */
.luxury-section {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    position: relative;
    overflow: hidden;
}

.luxury-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/turkish-pattern.png') repeat;
    opacity: 0.03;
    pointer-events: none;
}

.luxury-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0 5rem;
}

.luxury-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: all 0.4s ease;
}

.luxury-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(26, 58, 107, 0.2);
}

.luxury-image {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.luxury-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.luxury-item:hover .luxury-image img {
    transform: scale(1.1);
}

.luxury-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 247, 250, 0.8) 0%, rgba(245, 247, 250, 0.4) 100%);
    display: flex;
    align-items: flex-end;
    padding: 3rem;
    opacity: 0;
    transition: all 0.4s ease;
}

.luxury-item:hover .luxury-overlay {
    opacity: 1;
}

.luxury-content {
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.luxury-item:hover .luxury-content {
    transform: translateY(0);
}

.luxury-content h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.luxury-content p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.luxury-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--black-light);
    border: 1px solid rgba(26, 58, 107, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 58, 107, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.feature-item p {
    color: var(--gray);
    line-height: 1.6;
}

/* Mobile responsiveness for luxury section */
@media (max-width: 768px) {
    .luxury-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0 3rem;
    }
    
    .luxury-image {
        height: 350px;
    }
    
    .luxury-overlay {
        padding: 2rem;
        opacity: 1;
        background: linear-gradient(135deg, rgba(245, 247, 250, 0.9) 0%, rgba(245, 247, 250, 0.7) 100%);
    }
    
    .luxury-content {
        transform: translateY(0);
    }
    
    .luxury-content h3 {
        font-size: 1.5rem;
    }
    
    .luxury-content p {
        font-size: 1rem;
    }
    
    .luxury-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .feature-item h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .luxury-image {
        height: 280px;
    }
    
    .luxury-overlay {
        padding: 1.5rem;
    }
    
    .luxury-content h3 {
        font-size: 1.3rem;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ===== BOOKING PAGE STYLES ===== */
.booking-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: var(--black-light);
    border: 1px solid rgba(26, 58, 107, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sidebar-card h3 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.sidebar-card h3 i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(26, 58, 107, 0.1);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span:first-child {
    color: var(--gray);
    font-weight: 500;
}

.hours-list li span:last-child {
    color: var(--gold);
    font-weight: 600;
}

/* Form improvements for booking page */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A3A6B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 1rem;
    padding-right: 3rem;
}

.form-group input[type="time"] {
    font-family: 'Inter', sans-serif;
}

/* WhatsApp button styling */
.submit-btn i {
    font-size: 1.2rem;
}

/* Mobile responsiveness for booking page */
@media (max-width: 968px) {
    .booking-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .sidebar-card {
        padding: 1.5rem;
    }
    
    .hours-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .hours-list li span:last-child {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .sidebar-card {
        padding: 1.2rem;
    }
    
    .sidebar-card h3 {
        font-size: 1.1rem;
    }
}

/* ===== SIMPLIFIED HOME PAGE STYLES ===== */

/* Simplified Hero Section */
.hero-simplified {
    height: 90vh;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(245, 247, 250, 0.85) 0%, rgba(245, 247, 250, 0.7) 100%), url('../images/hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 0;
}

.hero-content-simplified {
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease;
}

.hero-title-simplified {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
    font-family: 'Cinzel', serif;
    line-height: 1.3;
}

.hero-title-simplified span {
    display: block;
    font-size: 4rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.5rem;
}

.hero-subtitle-simplified {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--gray);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.book-now-btn {
    font-size: 1.2rem;
    padding: 1.2rem 3.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    box-shadow: 0 10px 25px rgba(26, 58, 107, 0.3);
}

.book-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(26, 58, 107, 0.4);
}

/* Quick Navigation Buttons */
.quick-nav-section {
    padding: 3rem 0;
    background: var(--black-light);
    border-bottom: 1px solid rgba(26, 58, 107, 0.1);
}

.quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.quick-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    background: var(--black);
    border: 1px solid rgba(26, 58, 107, 0.2);
    border-radius: 12px;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.quick-nav-item i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.quick-nav-item span {
    font-size: 1rem;
    font-weight: 500;
}

.quick-nav-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    background: rgba(26, 58, 107, 0.05);
}

.quick-nav-item:hover i {
    transform: scale(1.1);
}

/* Our Team Section */
.our-team-section {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    position: relative;
    overflow: hidden;
}

.our-team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/turkish-pattern.png') repeat;
    opacity: 0.03;
    pointer-events: none;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.team-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(26, 58, 107, 0.3);
}

.team-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.team-image:hover img {
    transform: scale(1.05);
}

.team-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(245, 247, 250, 0.95), transparent);
    padding: 2rem;
    color: var(--gray);
    text-align: center;
}

.team-image-overlay h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.team-image-overlay p {
    color: var(--gray);
    font-size: 1rem;
}

.team-text h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.team-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.team-text p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(26, 58, 107, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(26, 58, 107, 0.2);
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: var(--gold);
    background: rgba(26, 58, 107, 0.1);
    transform: translateX(5px);
}

.member-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.5rem;
}

.member-info h4 {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 0.2rem;
}

.member-info p {
    font-size: 0.95rem;
    color: var(--gray-dark);
    margin: 0;
}

/* Map Section */
.map-section {
    background: var(--black);
    padding: 4rem 0;
}

.map-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.map-container {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(26, 58, 107, 0.3);
    margin-bottom: 2rem;
}

.map-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.address-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(26, 58, 107, 0.1);
    border: 1px solid var(--gold);
    border-radius: 50px;
    padding: 1rem 2rem;
    color: var(--gold);
    font-weight: 500;
    font-size: 1.1rem;
}

.address-badge i {
    font-size: 1.2rem;
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 992px) {
    .team-content {
        gap: 2rem;
    }
    
    .team-image img {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .hero-title-simplified {
        font-size: 2.5rem;
    }
    
    .hero-title-simplified span {
        font-size: 3rem;
    }
    
    .hero-subtitle-simplified {
        font-size: 1.1rem;
    }
    
    .quick-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .quick-nav-item {
        padding: 1.2rem 0.8rem;
    }
    
    .quick-nav-item i {
        font-size: 1.8rem;
    }
    
    .team-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-image {
        order: -1;
    }
    
    .team-image img {
        height: 400px;
    }
    
    .team-text {
        text-align: center;
    }
    
    .team-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .map-container {
        height: 300px;
    }
    
    .address-badge {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-simplified {
        min-height: 500px;
    }
    
    .hero-title-simplified {
        font-size: 2rem;
    }
    
    .hero-title-simplified span {
        font-size: 2.2rem;
    }
    
    .hero-subtitle-simplified {
        font-size: 1rem;
    }
    
    .book-now-btn {
        font-size: 1rem;
        padding: 1rem 2.5rem;
    }
    
    .quick-nav-item {
        padding: 1rem 0.5rem;
    }
    
    .quick-nav-item i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .quick-nav-item span {
        font-size: 0.9rem;
    }
    
    .team-image img {
        height: 350px;
    }
    
    .team-image-overlay h3 {
        font-size: 1.5rem;
    }
    
    .team-text h3 {
        font-size: 1.6rem;
    }
    
    .team-text p {
        font-size: 1rem;
    }
    
    .team-member {
        padding: 1rem;
    }
    
    .member-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .member-info h4 {
        font-size: 1rem;
    }
    
    .member-info p {
        font-size: 0.85rem;
    }
    
    .map-container {
        height: 250px;
    }
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.book-now-btn,
.call-now-btn {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    min-width: 180px;
    transition: all 0.3s ease;
}

.book-now-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    color: #FFFFFF;
    box-shadow: 0 10px 25px rgba(26, 58, 107, 0.3);
}

.call-now-btn {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.call-now-btn:hover {
    background: var(--gold);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 58, 107, 0.3);
}

.book-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(26, 58, 107, 0.4);
}

.book-now-btn i,
.call-now-btn i {
    margin-right: 0.5rem;
}

/* Mobile responsiveness for buttons */
@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .book-now-btn,
    .call-now-btn {
        font-size: 1rem;
        padding: 1rem 2rem;
        min-width: 200px;
        width: 100%;
        max-width: 250px;
    }
}

/* ===== SIMPLIFIED HOME PAGE STYLES WITH WHATSAPP BUTTON ===== */

/* Simplified Hero Section */
.hero-simplified {
    height: 90vh;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(245, 247, 250, 0.85) 0%, rgba(245, 247, 250, 0.7) 100%), url('../images/hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 0;
}

.hero-content-simplified {
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease;
}

.hero-title-simplified {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
    font-family: 'Cinzel', serif;
    line-height: 1.3;
}

.hero-title-simplified span {
    display: block;
    font-size: 4rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.5rem;
}

.hero-subtitle-simplified {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--gray);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.whatsapp-btn,
.book-now-btn,
.call-now-btn {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    min-width: 180px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.whatsapp-btn {
    background: #25D366;
    border: none;
    color: white;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.book-now-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    color: #FFFFFF;
    box-shadow: 0 10px 25px rgba(26, 58, 107, 0.3);
}

.call-now-btn {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.call-now-btn:hover {
    background: var(--gold);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 58, 107, 0.3);
}

.book-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(26, 58, 107, 0.4);
}

/* Quick Navigation Buttons */
.quick-nav-section {
    padding: 3rem 0;
    background: var(--black-light);
    border-bottom: 1px solid rgba(26, 58, 107, 0.1);
}

.quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.quick-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    background: var(--black);
    border: 1px solid rgba(26, 58, 107, 0.2);
    border-radius: 12px;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.quick-nav-item i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.quick-nav-item span {
    font-size: 1rem;
    font-weight: 500;
}

.quick-nav-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    background: rgba(26, 58, 107, 0.05);
}

.quick-nav-item:hover i {
    transform: scale(1.1);
}

/* Our Team Section */
.our-team-section {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    position: relative;
    overflow: hidden;
}

.our-team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/turkish-pattern.png') repeat;
    opacity: 0.03;
    pointer-events: none;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.team-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(26, 58, 107, 0.3);
}

.team-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.team-image:hover img {
    transform: scale(1.05);
}

.team-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(245, 247, 250, 0.95), transparent);
    padding: 2rem;
    color: var(--gray);
    text-align: center;
}

.team-image-overlay h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.team-image-overlay p {
    color: var(--gray);
    font-size: 1rem;
}

.team-text h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.team-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.team-text p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(26, 58, 107, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(26, 58, 107, 0.2);
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: var(--gold);
    background: rgba(26, 58, 107, 0.1);
    transform: translateX(5px);
}

.member-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.5rem;
}

.member-info h4 {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 0.2rem;
}

.member-info p {
    font-size: 0.95rem;
    color: var(--gray-dark);
    margin: 0;
}

/* Experience Badge */
.experience-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(26, 58, 107, 0.1);
    border: 1px solid var(--gold);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    margin-top: 1rem;
    color: var(--gold);
    font-weight: 600;
}

/* Map Section */
.map-section {
    background: var(--black);
    padding: 4rem 0;
}

.map-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.map-container {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(26, 58, 107, 0.3);
    margin-bottom: 2rem;
}

.map-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.address-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(26, 58, 107, 0.1);
    border: 1px solid var(--gold);
    border-radius: 50px;
    padding: 1rem 2rem;
    color: var(--gold);
    font-weight: 500;
    font-size: 1.1rem;
}

.address-badge i {
    font-size: 1.2rem;
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 992px) {
    .team-content {
        gap: 2rem;
    }
    
    .team-image img {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .hero-title-simplified {
        font-size: 2.5rem;
    }
    
    .hero-title-simplified span {
        font-size: 3rem;
    }
    
    .hero-subtitle-simplified {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .whatsapp-btn,
    .book-now-btn,
    .call-now-btn {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        min-width: 220px;
        width: 100%;
        max-width: 280px;
    }
    
    .quick-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .quick-nav-item {
        padding: 1.2rem 0.8rem;
    }
    
    .quick-nav-item i {
        font-size: 1.8rem;
    }
    
    .team-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-image {
        order: -1;
    }
    
    .team-image img {
        height: 400px;
    }
    
    .team-text {
        text-align: center;
    }
    
    .team-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .map-container {
        height: 300px;
    }
    
    .address-badge {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-simplified {
        min-height: 500px;
    }
    
    .hero-title-simplified {
        font-size: 2rem;
    }
    
    .hero-title-simplified span {
        font-size: 2.2rem;
    }
    
    .hero-subtitle-simplified {
        font-size: 1rem;
    }
    
    .whatsapp-btn,
    .book-now-btn,
    .call-now-btn {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
        min-width: 200px;
    }
    
    .quick-nav-item {
        padding: 1rem 0.5rem;
    }
    
    .quick-nav-item i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .quick-nav-item span {
        font-size: 0.9rem;
    }
    
    .team-image img {
        height: 350px;
    }
    
    .team-image-overlay h3 {
        font-size: 1.5rem;
    }
    
    .team-text h3 {
        font-size: 1.6rem;
    }
    
    .team-text p {
        font-size: 1rem;
    }
    
    .team-member {
        padding: 1rem;
    }
    
    .member-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .member-info h4 {
        font-size: 1rem;
    }
    
    .member-info p {
        font-size: 0.85rem;
    }
    
    .map-container {
        height: 250px;
    }
    
    .experience-badge {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
}

/* Sample Page Layout Styles - Add these to your existing CSS */

/* Site Layout Classes */
.site-layout.home.index {
    background-color: #F5F7FA;
    color: #1A2A4A;
}

/* Header/Navbar Styles */
.navbar-wrapper {
    position: relative;
    z-index: 10;
    background-color: #F5F7FA;
}

.masthead {
    padding: 20px 15px;
    max-width: 1170px;
    margin: 0 auto;
}

.masthead .inner {
    position: relative;
}

.contain-absolute {
    position: relative;
}

.masthead-brand {
    text-align: center;
    margin-bottom: 20px;
}

.masthead-brand img {
    max-height: 80px;
    width: auto;
}

.nav.masthead-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 10px 20px;
    margin: 0;
    border-radius: 50px;
    background-color: rgba(26, 58, 107, 0.1) !important;
}

.nav.masthead-nav li {
    margin: 5px 10px;
}

.nav.masthead-nav li a {
    color: #1A2A4A;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.nav.masthead-nav li.active a,
.nav.masthead-nav li a:hover {
    color: #1A3A6B;
}

.header-break {
    display: none;
}

.header-gap {
    display: none;
}

/* Home CTA Section */
.home-cta {
    text-align: center;
    padding: 40px 20px;
    background-color: #F5F7FA;
}

.home-cta h2 {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1A2A4A;
}

.home-cta h2 span {
    color: #1A3A6B;
}

.home-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #4A5A7A;
    margin-bottom: 30px;
}

.btn-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.btn-1 .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #1A3A6B;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-1 .btn i {
    font-size: 18px;
}

.btn-1 .btn.black-text {
    color: #FFFFFF !important;
}

.btn-1 .btn:first-child {
    background-color: #1A3A6B;
    color: #FFFFFF;
}

.btn-1 .btn:first-child:hover {
    background-color: transparent;
    color: #1A3A6B;
}

.btn-1 .btn:not(:first-child) {
    background-color: transparent;
    color: #1A2A4A;
}

.btn-1 .btn:not(:first-child):hover {
    background-color: #1A3A6B;
    color: #FFFFFF;
}

/* Carousel/Hero Section - Compact */
.carousel.carousel-compact {
    min-height: 300px;
}

.carousel,
.carousel .item,
.full-image,
.active,
.carousel-inner {
    height: 100%;
}

.carousel {
    margin: 0;
}

.carousel .item {
    background-color: #F5F7FA;
}

#carousel-0 {
    background-size: cover;
    background-position: center;
    min-height: 300px;
}

.shaddow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245, 247, 250, 0.3);
}

/* User Links / Quick Action Buttons */
#user_links {
    margin: 20px 0 30px;
}

#user_links .btn-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

#user_links .btn-1 .btn {
    min-width: 100px;
    padding: 10px 20px;
}

/* Barber Bios Section - Single Team Box */
#barber_bios {
    padding: 40px 0;
    background-color: #F5F7FA;
}

#about-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.featurette-heading.flex-basis-100 {
    width: 100%;
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 36px;
    font-weight: 600;
    color: #1A3A6B;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-center {
    justify-content: center;
}

.barber_bio.team-bio {
    flex: 0 0 100%;
    max-width: 500px;
    margin: 0 auto;
}

.bio-container {
    background-color: #E8EDF5;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.bio-container:hover {
    transform: translateY(-5px);
}

.panel-body {
    padding: 20px;
}

.avatar {
    margin-bottom: 15px;
}

.barber-img {
    width: 100%;
    padding-bottom: 75%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    border: 3px solid #1A3A6B;
}

.barber-img.team-img {
    padding-bottom: 60%;
}

.bio-text-container h2 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 600;
    color: #1A2A4A;
    margin: 10px 0 5px;
}

.barber-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #1A3A6B;
    margin-bottom: 5px;
    font-weight: 600;
}

.barber-specialty {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #4A5A7A;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* Shops/Location Section - Compact */
#shops {
    padding: 40px 0;
    background-color: #F5F7FA;
}

.featurette {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.featurette-img.map-block {
    margin-bottom: 20px;
}

.nopadding {
    padding: 0;
}

#google_map_abbas {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info.compact-info {
    background-color: #E8EDF5;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-info h3.featurette-heading.compact-heading {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 600;
    color: #1A3A6B;
    margin-bottom: 15px;
}

.contact-info hr.compact-hr {
    border-color: #D6E0F0;
    margin: 10px 0 15px;
}

.shoploc.row {
    margin: 0;
}

.address-info p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #1A2A4A;
    margin-bottom: 3px;
    line-height: 1.5;
}

/* Business Hours Table - Compact */
.bhtable.compact-hours {
    width: 100%;
}

.bhtable.compact-hours .row {
    margin: 0;
    padding: 5px 0;
    border-bottom: 1px solid #D6E0F0;
}

.bhtable.compact-hours .row:last-child {
    border-bottom: none;
}

.bhtable.compact-hours .col-xs-6 p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1A2A4A;
    margin: 0;
}

.bhtable.compact-hours .col-xs-6:first-child {
    font-weight: 500;
}

.bhtable.compact-hours .col-xs-6:last-child {
    text-align: right;
}

/* Shop Details/Connect Section - Compact */
.shop-details-section {
    margin-top: 20px;
}

.shop-details-section .col-xs-12 {
    background-color: #F5F7FA !important;
    padding: 20px 15px;
    border-radius: 10px;
}

.links-title p {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 600;
    color: #1A3A6B;
    text-align: center;
    margin-bottom: 20px;
}

.details-container {
    max-width: 800px;
    margin: 0 auto;
}

.shopdetails.compact-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.detail-container {
    flex: 0 0 auto;
}

.icon-social-container p {
    margin: 0;
}

.soc-med-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #E8EDF5;
    border-radius: 50%;
    color: #1A3A6B;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.soc-med-icon:hover {
    background-color: #1A3A6B;
    color: #F5F7FA;
    transform: scale(1.1);
}

/* Utility Classes */
.col-xs-12 {
    width: 100%;
}

.col-xs-10 {
    width: 83.33333%;
}

.col-xs-7 {
    width: 58.33333%;
}

.col-xs-6 {
    width: 50%;
}

.col-xs-5 {
    width: 41.66667%;
}

.col-xs-2 {
    width: 16.66667%;
}

.text-center {
    text-align: center;
}

.no-padding {
    padding: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .masthead-brand img {
        max-height: 60px;
    }
    
    .nav.masthead-nav {
        flex-direction: column;
        align-items: center;
        border-radius: 20px;
    }
    
    .nav.masthead-nav li {
        margin: 5px 0;
    }
    
    .home-cta h2 {
        font-size: 28px;
    }
    
    .home-cta p {
        font-size: 16px;
    }
    
    .btn-1 {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-1 .btn {
        width: 100%;
        max-width: 220px;
        justify-content: center;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    #user_links .btn-1 .btn {
        min-width: auto;
        width: auto;
        padding: 8px 15px;
    }
    
    .barber_bio.team-bio {
        max-width: 350px;
    }
    
    .bio-text-container h2 {
        font-size: 28px;
    }
    
    .barber-title {
        font-size: 16px;
    }
    
    .barber-specialty {
        font-size: 14px;
    }
    
    .contact-info h3.featurette-heading.compact-heading {
        font-size: 20px;
    }
    
    .col-sm-5, .col-sm-7 {
        width: 100%;
    }
    
    .bhtable.compact-hours .col-xs-6 {
        width: 50%;
    }
    
    .bhtable.compact-hours .col-xs-6:last-child {
        text-align: left;
        padding-left: 10px;
    }
    
    .address-info {
        margin-top: 5px;
    }
    
    .shopdetails.compact-social {
        gap: 12px;
    }
    
    .soc-med-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .barber_bio.team-bio {
        max-width: 450px;
    }
}