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

:root {
    --primary-color: #8B1538;
    --secondary-color: #c9a063;
    --dark-color: #2c3e50;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Header/Navigation */
header {
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.5rem 5%;
    background: rgba(255, 255, 255, 1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(139, 21, 56, 0.3);
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05);
}

.logo-text h1 {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-text p {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

nav a:hover,
nav a.active {
    color: var(--primary-color);
}

/* Google Translate Styling */
#google_translate_element {
    display: inline-block;
}

#google_translate_element select {
    background: var(--light-bg);
    border: 2px solid var(--primary-color);
    color: var(--dark-color);
    padding: 0.5rem 0.8rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

#google_translate_element select:hover {
    background: var(--primary-color);
    color: white;
}

/* Hide Google Translate banner */
.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

/* Style the Google Translate gadget */
.goog-te-gadget {
    font-family: inherit !important;
    font-size: inherit !important;
}

.goog-te-gadget-simple {
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.goog-te-gadget-simple .goog-te-menu-value {
    color: var(--dark-color) !important;
}

.goog-te-gadget-simple .goog-te-menu-value:hover {
    color: var(--primary-color) !important;
}

/* Language Switcher */
.language-switcher {
    margin-left: 1rem;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light-bg);
    border: 2px solid var(--primary-color);
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 21, 56, 0.3);
}

.lang-btn .flag {
    font-size: 1.2rem;
}

.lang-btn .lang-text {
    font-family: inherit;
}

/* RTL Support */
html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] body {
    text-align: right;
}

html[dir="rtl"] .logo-container {
    flex-direction: row-reverse;
}

html[dir="rtl"] nav ul {
    flex-direction: row-reverse;
}

html[dir="rtl"] .hero-buttons,
html[dir="rtl"] .cta-buttons,
html[dir="rtl"] .ceo-social,
html[dir="rtl"] .ceo-contact-buttons {
    flex-direction: row-reverse;
}

html[dir="rtl"] .service-list li {
    padding-left: 0;
    padding-right: 1.8rem;
}

html[dir="rtl"] .service-list li:before {
    left: auto;
    right: 0;
}

html[dir="rtl"] .consultation-includes li {
    padding-left: 0;
    padding-right: 1.5rem;
}

html[dir="rtl"] .consultation-includes li:before {
    left: auto;
    right: 0;
}

html[dir="rtl"] .footer-content {
    text-align: right;
}

html[dir="rtl"] .wa-float-wrap {
    right: auto;
    left: 30px;
    align-items: flex-start;
}

html[dir="rtl"] nav a:after {
    left: auto;
    right: 0;
}

.cta-nav {
    background: var(--primary-color);
    color: white !important;
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cta-nav:after {
    display: none;
}

.cta-nav:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 21, 56, 0.3);
}

/* Page Header (for internal pages) */
.page-header {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.95) 0%, rgba(201, 160, 99, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1600') center/cover;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.page-header-content {
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Hero Section (Home page only) */
.hero {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.95) 0%, rgba(201, 160, 99, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1600') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 80px;
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

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

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.3);
}

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

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

/* Stats Section */
.stats {
    background: var(--primary-color);
    color: white;
    padding: 4rem 5%;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item h2 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    transition: transform 0.4s ease, text-shadow 0.4s ease;
}

.stat-item h2.counter-done {
    transform: scale(1.08);
    text-shadow: 0 0 18px rgba(139, 21, 56, 0.45);
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Section Styling */
section {
    padding: 6rem 5%;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

/* Services Grid */
.services-grid, .services-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid var(--secondary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 21, 56, 0.15);
    border-top-color: var(--primary-color);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

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

.service-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    text-align: left;
}

.service-list li {
    padding: 0.6rem 0;
    color: #555;
    position: relative;
    padding-left: 1.8rem;
}

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

/* Portfolio Grid */
.portfolio-grid, .portfolio-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(139, 21, 56, 0.2);
}

.portfolio-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(139, 21, 56, 0.95), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    color: rgba(255,255,255,0.9);
}

/* About Page Styles */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content p {
    font-size: 20px;
    line-height: 2;
    color: #555;
    margin-bottom: 1.8rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-content p:first-child {
    font-size: 21px;
    font-weight: 500;
}

.location-highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.story-divider {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 20px auto 40px;
    border-radius: 10px;
    animation: glowline 2.5s ease-in-out infinite alternate;
}

@keyframes glowline {
    from { opacity: .6; }
    to { opacity: 1; }
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.8;
}

/* Why Choose Us */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-item {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.15);
}

.why-item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.why-item p {
    color: #666;
    line-height: 1.8;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

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

.process-step h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.process-step p {
    color: #666;
    line-height: 1.8;
}

/* CEO Section */
.ceo-section {
    background: var(--light-bg);
}

.ceo-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.ceo-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.ceo-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.ceo-text h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.ceo-title {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.ceo-text p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.ceo-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-btn {
    padding: 0.9rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-email {
    background: var(--primary-color);
    color: white;
}

.social-email:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
}

.social-instagram {
    background: #E4405F;
    color: white;
}

.social-instagram:hover {
    background: #c13584;
    transform: translateY(-2px);
}

/* Contact Section */
.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    text-align: center;
}

.contact-card {
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-card a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-color);
}

/* Booking Section */
.booking-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.booking-section .section-header h2,
.booking-section .section-header p {
    color: white;
}

.booking-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto;
}

.booking-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.booking-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.booking-card h3 {
    font-size: 1.6rem;
    margin: 1.5rem 0 1rem;
}

.booking-icon {
    font-size: 3.5rem;
}

.booking-btn {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255,255,255,0.3);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 6rem 5%;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-content .btn-primary {
    background: white;
    color: var(--primary-color);
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 5%;
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: 0.8rem;
}

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

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

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

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

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

.footer-bottom p {
    opacity: 0.7;
}

/* ── Floating WhatsApp dual-number button ───────────────────────────── */
.wa-float-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
}

/* The green circle button */
.floating-whatsapp {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    outline: none;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Dropdown card — hidden by default, shown when .open */
.wa-menu {
    display: none;
    flex-direction: column;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 36px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
    padding: 8px;
    margin-bottom: 12px;
    min-width: 230px;
    transform-origin: bottom right;
    animation: waMenuIn 0.18s cubic-bezier(0.34,1.56,0.64,1);
    border: 1px solid rgba(122,24,32,0.08);
}

.wa-menu.open {
    display: flex;
}

@keyframes waMenuIn {
    from { opacity: 0; transform: scale(0.82) translateY(10px); }
    to   { opacity: 1; transform: scale(1)    translateY(0);    }
}

.wa-menu-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #7a1820;
    padding: 4px 10px 8px;
    border-bottom: 1px solid #f0e6d3;
    margin-bottom: 4px;
    font-family: inherit;
}

.wa-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 11px;
    text-decoration: none;
    color: #1a1a1a;
    transition: background 0.15s ease;
}

.wa-option:hover {
    background: #fdf5ec;
    text-decoration: none;
}

.wa-flag {
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
}

.wa-region {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    font-family: inherit;
}

.wa-number {
    display: block;
    font-size: 11px;
    color: #999;
    line-height: 1.3;
    font-family: inherit;
}

/* RTL flip */
html[dir="rtl"] .wa-float-wrap {
    right: auto;
    left: 30px;
    align-items: flex-start;
}

html[dir="rtl"] .wa-menu {
    transform-origin: bottom left;
}

/* Mobile tweak */
@media (max-width: 480px) {
    .wa-float-wrap { bottom: 20px; right: 16px; }
    .wa-menu { min-width: 210px; }
}

/* Floating Instagram Button */
.floating-instagram {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.floating-instagram:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(188, 24, 136, 0.6);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.lightbox-caption {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px 40px;
    border-radius: 10px;
    max-width: 80%;
    backdrop-filter: blur(10px);
}

.lightbox-caption h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.lightbox-caption p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 2.5rem;
    padding: 15px 25px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* Portfolio Page Styles */
.project-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 3px solid var(--secondary-color);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 21, 56, 0.15);
    border-top-color: var(--primary-color);
}

.category-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.category-card p {
    color: #666;
    line-height: 1.8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-stars {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: #555;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 600;
}

/* Design Philosophy Showcase */
.philosophy-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.philosophy-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 21, 56, 0.15);
}

.philosophy-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.philosophy-content {
    padding: 2rem;
}

.philosophy-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.philosophy-content p {
    color: #666;
    line-height: 1.8;
}

/* Design Styles Showcase */
.styles-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.style-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    cursor: pointer;
    height: 350px;
}

.style-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.style-item:hover img {
    transform: scale(1.1);
}

.style-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(139, 21, 56, 0.95), rgba(139, 21, 56, 0.7), transparent);
    padding: 2.5rem 2rem;
    color: white;
}

.style-overlay h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.style-overlay p {
    color: rgba(255,255,255,0.95);
    font-size: 0.95rem;
}

/* Contact Page Styles */
.ceo-contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.ceo-contact-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
}

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

.ceo-contact-info {
    padding: 3rem;
}

.ceo-contact-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.ceo-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.ceo-contact-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.12);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.8;
}

.location-info {
    max-width: 600px;
    margin: 0 auto;
}

.location-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    text-align: center;
}

.location-card h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.location-card p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 0.8rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Booking Page Styles */
.booking-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.booking-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.booking-benefits {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}

.booking-benefits li {
    padding: 0.5rem 0;
    color: rgba(255,255,255,0.9);
}

.consultation-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.consultation-step {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.consultation-step:hover {
    transform: translateY(-10px);
}

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

.consultation-step h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.consultation-step p {
    color: #666;
    line-height: 1.8;
}

.consultation-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.consultation-type-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary-color);
}

.consultation-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 21, 56, 0.15);
    border-top-color: var(--primary-color);
}

.consultation-icon {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.consultation-type-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.consultation-type-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.consultation-includes {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.consultation-includes p {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.consultation-includes ul {
    list-style: none;
    padding-left: 0;
}

.consultation-includes li {
    padding: 0.4rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.consultation-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.preparation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.preparation-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.preparation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.15);
}

.preparation-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.preparation-card p {
    color: #666;
    line-height: 1.8;
}

.alternative-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.alt-contact-card {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.alt-contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.alt-contact-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.alt-contact-card p {
    color: #666;
    margin-bottom: 1rem;
}

.alt-contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.alt-contact-card a:hover {
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    nav ul {
        display: none;
    }

    .logo-text h1 {
        font-size: 1rem;
    }

    .logo-text p {
        font-size: 0.65rem;
    }

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

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

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

    .stat-item h2 {
        font-size: 2.5rem;
    }

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

    .ceo-social,
    .ceo-contact-buttons {
        flex-direction: column;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    /* Lightbox mobile adjustments */
    .lightbox-content {
        max-width: 95%;
        max-height: 70vh;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 35px;
    }

    .lightbox-caption {
        bottom: 20px;
        padding: 15px 20px;
        max-width: 90%;
    }

    .lightbox-caption h3 {
        font-size: 1.3rem;
    }

    .lightbox-caption p {
        font-size: 0.9rem;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 1.8rem;
        padding: 10px 15px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

/* ========================================
   MOBILE NAVIGATION STYLES
   ======================================== */

/* Hamburger Menu Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 2em;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.6);
}

.mobile-menu-toggle .close-icon {
    display: none;
}

.mobile-menu-toggle.active .hamburger-icon {
    display: none;
}

.mobile-menu-toggle.active .close-icon {
    display: block;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    /* Show hamburger button on mobile */
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Hide navigation by default on mobile */
    nav ul {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(to right, rgba(139, 21, 56, 0.30), transparent) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 20px;
        gap: 0;
        box-shadow: none;
        z-index: 1000;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }
    
    /* Show navigation when active */
    nav ul.active {
        display: flex !important;
    }
    
    /* Mobile navigation items */
    nav ul li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    nav ul li a {
        display: block;
        padding: 15px 20px;
        width: 100%;
        transition: all 0.3s ease;
        background: none !important;
        margin-bottom: 0;
        border-radius: 0;
        color: white !important;
        font-weight: 600;
    }
    
    nav ul li a:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        transform: none;
    }
    
    /* Adjust header layout for mobile */
    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }
    
    .logo-container {
        width: 100%;
        margin-bottom: 10px;
    }
    
    nav {
        width: 100%;
        position: relative;
    }
}

/* Tablet adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    nav ul {
        gap: 1rem;
        font-size: 0.9em;
    }
    
    nav ul li a {
        padding: 10px 15px;
    }
}

/* Ensure smooth transitions */
nav ul {
    transition: all 0.3s ease;
}

/* ========================================
   MOBILE NAVIGATION CONTRAST IMPROVEMENTS
   ======================================== */

/* Mobile Navigation Menu - Improved Contrast */
@media (max-width: 768px) {
    /* Lighter background for better contrast */
    nav ul {
        background: linear-gradient(to right, rgba(249, 243, 244, 0.98), rgba(255, 255, 255, 0.98)) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    /* Dark maroon text for all navigation links */
    nav ul li a {
        color: #6d1f1f !important;
        font-weight: 600 !important;
        text-shadow: none !important;
    }
    
    /* Hover state for menu items */
    nav ul li a:hover {
        color: #8B0000 !important;
        background: rgba(139, 0, 0, 0.08) !important;
    }
    
    /* Active/current page indicator */
    nav ul li a.active {
        color: #8B0000 !important;
        background: rgba(139, 0, 0, 0.05) !important;
    }
    
    /* Book Now button - maintain visibility */
    nav ul li a.cta-nav {
        background: #8B0000 !important;
        color: #ffffff !important;
        border: 2px solid #8B0000 !important;
        margin: 10px 0 !important;
        text-align: center !important;
        border-radius: 25px !important;
    }
    
    nav ul li a.cta-nav:hover {
        background: #6d1f1f !important;
        color: #ffffff !important;
    }
    
    /* Close button (X) - ensure visibility */
    .mobile-menu-toggle {
        color: #6d1f1f !important;
        text-shadow: none !important;
    }
    
    .mobile-menu-toggle.active {
        color: #8B0000 !important;
    }
    
    /* Border color adjustment */
    nav ul li {
        border-bottom: 1px solid rgba(139, 21, 56, 0.15) !important;
    }
}

/* ========================================
   IPAD & DARK MODE FIXES - CORRECTED VERSION
   ======================================== */

/* 1. FIX: Prevent dark mode extensions from hiding background images on ALL pages */
.hero,
.page-header {
    color-scheme: only light !important;
    -webkit-color-scheme: only light !important;
    forced-color-adjust: none !important;
}

/* Protect against filter/invert from dark mode extensions */
.hero,
.page-header {
    filter: none !important;
    -webkit-filter: none !important;
}

/* Additional dark mode prevention for various dark mode methods */
html[data-theme="dark"] .hero,
html[data-theme="dark"] .page-header,
html[style*="color-scheme: dark"] .hero,
html[style*="color-scheme: dark"] .page-header,
html[style*="filter"] .hero,
html[style*="filter"] .page-header {
    opacity: 1 !important;
    filter: none !important;
    -webkit-filter: none !important;
}

/* Prevent dark reader and similar extensions from inverting */
.hero *,
.page-header * {
    filter: none !important;
    -webkit-filter: none !important;
}

@media (prefers-color-scheme: dark) {
    .hero,
    .page-header {
        color-scheme: only light !important;
        forced-color-adjust: none !important;
    }
}

/* CRITICAL: Force background images ONLY for OTHER PAGES (not home) */
.page-header {
    position: relative !important;
}

.page-header::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1600') center/cover no-repeat !important;
    opacity: 1 !important;
    z-index: 0 !important;
    filter: none !important;
    -webkit-filter: none !important;
}

.page-header::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.95) 0%, rgba(201, 160, 99, 0.9) 100%) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

/* Ensure content stays above background for OTHER PAGES */
.page-header-content {
    position: relative !important;
    z-index: 2 !important;
}

/* Keep HOME PAGE clean - no pseudo-elements */
.hero {
    position: relative !important;
}

.hero-content {
    position: relative !important;
    z-index: 2 !important;
}

/* 2. FIX: iPad Portrait - Show MORE sofa/floor, LESS chandelier/ceiling */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .hero {
        background-position: center 65% !important;
        background-size: cover !important;
        background-attachment: scroll !important;
    }

    /* Navigation already fixed - keep this */
    nav ul {
        gap: 1rem !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        padding: 0 1rem !important;
    }

    nav ul li a {
        font-size: 0.85rem !important;
        padding: 0.6rem 0.9rem !important;
    }

    .cta-nav {
        padding: 0.6rem 1.4rem !important;
    }
}

/* 3. FIX: iPad Landscape - Show MORE sofa/floor, LESS chandelier/ceiling */
@media (min-width: 768px) and (max-width: 1366px) and (orientation: landscape) {
    .hero {
        background-position: center 60% !important;
        background-size: cover !important;
        background-attachment: scroll !important;
    }
}

/* 4. ADDITIONAL: Ensure backgrounds work on all iPad orientations for other pages */
@media (min-width: 768px) and (max-width: 1366px) {
    .page-header {
        background-position: center !important;
        background-size: cover !important;
        background-attachment: scroll !important;
    }
}

/* Mobile - Fix page-header height (About, Services, Portfolio, etc.) */
@media (max-width: 767px) {
    .page-header {
        min-height: 40vh !important;
        background-position: center !important;
    }

    .page-header-content {
        padding: 2rem 1rem !important;
    }
}

/* ========================================
   DARK MODE - STRONGER TEXT SHADOW ONLY
   ======================================== */

/* Stronger shadow for white text in dark mode (no color change) */
@media (prefers-color-scheme: dark) {
    .hero h1,
    .hero p,
    .hero-content h1,
    .hero-content p,
    .page-header h1,
    .page-header p,
    .page-header-content h1,
    .page-header-content p {
        text-shadow: 0 3px 10px rgba(0, 0, 0, 0.9),
                     0 0 30px rgba(0, 0, 0, 0.7) !important;
    }
}

html[data-theme="dark"] .hero h1,
html[data-theme="dark"] .hero p,
html[data-theme="dark"] .hero-content h1,
html[data-theme="dark"] .hero-content p,
html[data-theme="dark"] .page-header h1,
html[data-theme="dark"] .page-header p,
html[data-theme="dark"] .page-header-content h1,
html[data-theme="dark"] .page-header-content p {
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.9),
                 0 0 30px rgba(0, 0, 0, 0.7) !important;
}

/* ========================================
   RESTRAINED PREMIUM REDESIGN
   Clean studio look without changing floating WhatsApp/IG buttons
   ======================================== */

:root {
    --primary-color: #7a182d;
    --secondary-color: #b89556;
    --dark-color: #1d1a18;
    --light-bg: #f6f1e9;
    --white: #ffffff;
    --text-muted: #6f6860;
    --border-soft: rgba(122, 24, 45, 0.12);
    --paper: #fffdf8;
    --shadow-soft: 0 14px 34px rgba(31, 21, 15, 0.08);
    --shadow-hover: 0 22px 50px rgba(31, 21, 15, 0.13);
}

body {
    font-family: "Avenir Next", "Segoe UI", Arial, sans-serif !important;
    color: var(--dark-color);
    background: linear-gradient(180deg, #fffdf8 0%, #f8f3ea 100%);
}

h1, h2, h3,
.section-header h2,
.page-header h1,
.hero h1,
.hero-content h1,
.cta-content h2 {
    font-family: Georgia, "Times New Roman", serif !important;
    letter-spacing: -0.025em;
}

header {
    background: rgba(255, 253, 248, 0.94) !important;
    border-bottom: 1px solid rgba(122, 24, 45, 0.10);
    box-shadow: 0 8px 28px rgba(31, 21, 15, 0.07) !important;
    backdrop-filter: blur(14px);
}

header.scrolled {
    background: rgba(255, 253, 248, 0.98) !important;
}

.logo-icon {
    background: #fff !important;
    border: 1px solid rgba(184, 149, 86, 0.35);
    border-radius: 14px !important;
    box-shadow: 0 8px 20px rgba(31, 21, 15, 0.08) !important;
}

.logo-text h1 {
    color: var(--primary-color) !important;
    font-size: clamp(0.95rem, 1.4vw, 1.15rem) !important;
}

.logo-text p {
    color: var(--text-muted) !important;
}

nav ul {
    gap: clamp(0.8rem, 1.5vw, 1.65rem) !important;
}

nav li {
    white-space: nowrap;
}

nav a {
    display: inline-block;
    color: #2f2925 !important;
    font-weight: 600 !important;
    font-size: 0.94rem;
    white-space: nowrap;
}

nav a:hover,
nav a.active {
    color: var(--primary-color) !important;
}

nav a:after {
    height: 1px !important;
    background: var(--secondary-color) !important;
}

.cta-nav,
nav a[href="/booking"]:last-child {
    background: var(--primary-color) !important;
    color: #fff !important;
    border-radius: 6px !important;
    box-shadow: none !important;
    padding: 0.62rem 1rem !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
}

.hero {
    min-height: 82vh !important;
    margin-top: 80px !important;
    justify-content: flex-start !important;
    text-align: left !important;
    background-position: center 58% !important;
    background-attachment: scroll !important;
    isolation: isolate;
}

.hero::before {
    background: linear-gradient(90deg, rgba(14, 9, 8, 0.84) 0%, rgba(48, 18, 25, 0.64) 46%, rgba(26, 17, 14, 0.18) 100%) !important;
}

.hero::after {
    display: none !important;
}

.hero-content {
    max-width: 760px !important;
    padding: 7rem 5% 5rem !important;
    margin-left: min(5vw, 60px);
    text-align: left !important;
}

.hero-content h1,
.hero h1 {
    color: #fff !important;
    font-size: clamp(2.7rem, 6vw, 5.6rem) !important;
    line-height: 0.98 !important;
    margin-bottom: 1.25rem !important;
    text-shadow: 0 8px 30px rgba(0,0,0,0.62) !important;
}

.hero-content .hero-tagline {
    display: inline-block;
    color: #f0dba9 !important;
    font-size: clamp(0.92rem, 1.7vw, 1.08rem) !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase;
    margin-bottom: 1rem !important;
    text-shadow: none !important;
}

.hero-content p,
.hero p {
    color: rgba(255,255,255,0.94) !important;
    font-size: clamp(1rem, 1.7vw, 1.16rem) !important;
    max-width: 640px;
    text-shadow: 0 3px 16px rgba(0,0,0,0.42) !important;
}

.hero-buttons {
    justify-content: flex-start !important;
    gap: 0.9rem !important;
}

.btn-primary,
.btn-secondary,
.booking-btn,
.social-btn {
    border-radius: 6px !important;
    padding: 0.92rem 1.45rem !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    box-shadow: none !important;
}

.btn-primary {
    background: var(--primary-color) !important;
    color: #fff !important;
    border: 1px solid var(--primary-color) !important;
}

.btn-primary:hover {
    background: #5f1021 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 24px rgba(122, 24, 45, 0.18) !important;
}

.btn-secondary {
    background: rgba(255,255,255,0.08) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.72) !important;
}

.btn-secondary:hover {
    background: #fff !important;
    color: var(--primary-color) !important;
    transform: translateY(-2px) !important;
}

.trust-strip {
    border-radius: 6px !important;
    background: rgba(255,255,255,0.09) !important;
    border-color: rgba(255,255,255,0.20) !important;
    backdrop-filter: blur(6px);
}

.scroll-indicator {
    display: none !important;
}

.stats {
    background: #201917 !important;
    padding: 3rem 5% !important;
}

.stat-item h2 {
    color: var(--secondary-color) !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: clamp(2.4rem, 4vw, 3.6rem) !important;
}

section {
    padding: clamp(4rem, 6vw, 6rem) 5% !important;
}

.section-header {
    margin-bottom: 3rem !important;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3.15rem) !important;
    color: var(--dark-color) !important;
}

.section-header h2:after {
    width: 56px !important;
    height: 2px !important;
    background: var(--secondary-color) !important;
}

.section-header p {
    color: var(--text-muted) !important;
}

.service-card,
.value-card,
.why-item,
.process-step,
.contact-card,
.consultation-step,
.consultation-type-card,
.preparation-card,
.alt-contact-card,
.category-card,
.testimonial-card,
.location-card {
    background: var(--paper) !important;
    border: 1px solid var(--border-soft) !important;
    border-radius: 10px !important;
    box-shadow: var(--shadow-soft) !important;
}

.service-card,
.value-card,
.process-step,
.consultation-step,
.consultation-type-card {
    border-top: 1px solid rgba(184, 149, 86, 0.45) !important;
}

.service-card:hover,
.value-card:hover,
.why-item:hover,
.process-step:hover,
.contact-card:hover,
.consultation-step:hover,
.consultation-type-card:hover,
.portfolio-item:hover {
    transform: translateY(-4px) !important;
    box-shadow: var(--shadow-hover) !important;
}

.service-icon,
.value-icon,
.consultation-icon,
.booking-icon,
.contact-icon,
.alt-contact-icon,
.category-icon {
    font-size: 2.2rem !important;
}

.service-card h3,
.value-card h3,
.why-item h3,
.process-step h3,
.contact-card h3,
.consultation-step h3,
.consultation-type-card h3 {
    color: var(--primary-color) !important;
}

.portfolio-item {
    border-radius: 10px !important;
    box-shadow: var(--shadow-soft) !important;
}

.portfolio-item img {
    height: 330px !important;
}

.portfolio-overlay {
    background: linear-gradient(to top, rgba(29, 26, 24, 0.86), rgba(29, 26, 24, 0.08)) !important;
    transform: translateY(0) !important;
    opacity: 1;
}

.portfolio-overlay h3,
.portfolio-overlay p {
    color: #fff !important;
}

.page-header {
    min-height: 42vh !important;
    background: linear-gradient(90deg, rgba(29, 26, 24, 0.78), rgba(122, 24, 45, 0.52)),
                url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1600') center/cover !important;
}

.page-header::before,
.page-header::after {
    display: none !important;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
    text-shadow: 0 4px 18px rgba(0,0,0,0.38) !important;
}

.booking-section,
.cta-section {
    background: #201917 !important;
}

.booking-card {
    background: rgba(255,255,255,0.07) !important;
    border-color: rgba(255,255,255,0.14) !important;
    box-shadow: none !important;
}

footer {
    background: #201917 !important;
}

input,
select,
textarea {
    border-radius: 6px !important;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(184, 149, 86, 0.25) !important;
    border-color: var(--secondary-color) !important;
}

@media (max-width: 768px) {
    .hero {
        min-height: 78vh !important;
        text-align: center !important;
        justify-content: center !important;
    }

    .hero-content {
        margin-left: 0 !important;
        text-align: center !important;
        padding: 5rem 1.2rem 4rem !important;
    }

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

    .btn-primary,
    .btn-secondary {
        width: auto !important;
        max-width: none !important;
    }

    nav ul {
        background: rgba(255,253,248,0.98) !important;
    }
}
