:root {
    --primary-color: #d4a373; /* Gold/Champagne */
    --gold-light: #f5e6d3;
    --gold-dark: #b8860b;
    --gold-muted: #e8d5b7;
    --accent-color: #f5ebe0; /* Cream */
    --secondary-color: #e63946; /* Soft Red/Pink */
    --text-dark: #2b2d42;
    --text-light: #8d99ae;
    --white: #ffffff;
    --bg-light: #fefae0;
    --bg-warm: #fdf8f2;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 8px 25px rgba(212, 163, 115, 0.15);
    --border-radius: 20px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

ul {
    list-style: none;
}

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

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

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-muted), var(--gold-dark));
    margin: 20px auto;
    border-radius: 2px;
}

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

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.9rem;
    line-height: 1.15;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3);
}

.btn-primary:hover {
    background: #c39262;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 163, 115, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
}

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid var(--accent-color);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 163, 115, 0.15);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 14px 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
    border-bottom-color: rgba(212, 163, 115, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    border-radius: 5px;
}

.brand-name span {
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
    color: var(--text-dark);
    display: block;
    line-height: 0.5;
    margin-left: 20px;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    color: var(--text-dark);
    position: relative;
    padding: 6px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold-dark));
    transition: width 0.3s ease;
}

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

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

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    display: flex;
    gap: 5px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(212, 163, 115, 0.4);
    color: var(--text-dark);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/herosection.jpg') center/cover no-repeat;
    z-index: 0;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Darker overlay for strong contrast */
    background: linear-gradient(45deg, rgba(0,0,0,0.55) 0%, rgba(212, 163, 115, 0.28) 100%);
    z-index: 1;
}

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

.hero .floating-elements {
    position: relative;
    z-index: 2;
}
.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.floating-elements i {
    position: absolute;
    color: var(--primary-color);
    opacity: 0.5;
    animation: float 6s ease-in-out infinite;
}

.sparkle-1 { top: 20%; left: 10%; font-size: 2rem; }
.sparkle-2 { top: 60%; right: 15%; font-size: 1.5rem; animation-delay: 2s !important; }
.sparkle-3 { top: 30%; right: 10%; font-size: 1.2rem; animation-delay: 4s !important; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(20deg); }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 3px solid var(--gold-light);
}

.service-card-link {
    color: inherit;
    position: relative;
    overflow: hidden;
}

.service-card-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(212, 163, 115, 0.08), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-top-color: var(--gold-dark);
}

.service-card-link:hover::after,
.service-card-link:focus-visible::after {
    opacity: 1;
}

.service-card-link:focus-visible {
    outline: 3px solid rgba(212, 163, 115, 0.35);
    outline-offset: 4px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: var(--transition);
    flex-shrink: 0;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(360deg);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    word-wrap: break-word;
    width: 100%;
    line-height: 1.2;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-page-body {
    background:
        radial-gradient(circle at top left, rgba(245, 235, 224, 0.9), rgba(245, 235, 224, 0) 45%),
        linear-gradient(180deg, #fffdf8 0%, #fdf8f2 40%, #fff 100%);
}

.service-page-main {
    padding-top: 92px;
}

.service-page-hero {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(115deg, rgba(43, 45, 66, 0.76), rgba(43, 45, 66, 0.42)),
        var(--service-hero-image) center/cover;
    color: var(--white);
    overflow: hidden;
}

.service-page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(212, 163, 115, 0.38), transparent 35%),
        radial-gradient(circle at bottom left, rgba(245, 235, 224, 0.18), transparent 30%);
    pointer-events: none;
}

.service-page-hero-inner {
    position: relative;
    z-index: 1;
    padding: 120px 20px 90px;
}

.service-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
}

.service-back-link:hover {
    color: var(--white);
}

.service-page-badge,
.service-section-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-page-badge {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    margin-bottom: 20px;
}

.service-page-hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.6rem);
    line-height: 0.96;
    max-width: 760px;
    margin-bottom: 22px;
}

.service-page-hero p {
    max-width: 720px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.84);
}

.service-page-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.service-page-outline {
    border-color: rgba(255, 255, 255, 0.72);
    color: var(--white);
}

.service-page-outline:hover {
    border-color: var(--white);
}

.service-page-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 220px));
    gap: 18px;
    margin-top: 42px;
}

.service-page-metric {
    padding: 22px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.service-page-metric strong {
    display: block;
    font-size: 1.7rem;
    font-family: 'Playfair Display', serif;
}

.service-page-metric span {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}

.service-price-section,
.service-portfolio-section {
    padding: 100px 0;
}

.service-price-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
    gap: 36px;
    align-items: start;
}

.service-price-copy h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin: 16px 0;
}

.service-price-copy p,
.service-section-intro {
    max-width: 720px;
    color: var(--text-light);
    font-size: 1rem;
}

.service-section-pill {
    background: rgba(212, 163, 115, 0.12);
    color: var(--gold-dark);
}

.service-price-board {
    position: relative;
    padding: 18px;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(212, 163, 115, 0.18), rgba(245, 235, 224, 0.75)),
        linear-gradient(180deg, #fff, #fdf8f2);
    box-shadow: 0 30px 60px rgba(212, 163, 115, 0.18);
}

.service-price-board--image {
    padding: 20px;
}

.service-price-board::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 22px;
    border: 1px solid rgba(184, 134, 11, 0.22);
    pointer-events: none;
}

.service-price-board-inner {
    position: relative;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(253, 248, 242, 0.96)),
        url('/images/logo.jpg') center/190px no-repeat;
    padding: 34px 28px;
    min-height: 100%;
}

.service-price-image-frame {
    position: relative;
    z-index: 1;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(253,248,242,0.96));
}

.service-price-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 980px;
    object-fit: contain;
    background: #fff;
}

.service-price-board-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 163, 115, 0.25);
}

.service-price-board-header span {
    color: var(--gold-dark);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.service-price-board-header strong {
    font-size: 1.4rem;
    text-align: right;
}

.service-price-rows {
    display: grid;
    gap: 14px;
}

.service-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px dashed rgba(141, 153, 174, 0.32);
}

.service-price-row:last-child {
    border-bottom: none;
}

.service-price-row-main h3 {
    font-size: 1.02rem;
    margin-bottom: 6px;
}

.service-price-row-main p {
    color: var(--text-light);
    font-size: 0.92rem;
}

.service-price-row strong {
    font-size: 1.05rem;
    white-space: nowrap;
}

.service-price-empty {
    color: var(--text-light);
    font-size: 1rem;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.service-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.service-portfolio-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(212, 163, 115, 0.12);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-portfolio-image {
    height: 260px;
    background-size: cover;
    background-position: center;
}

.service-portfolio-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.service-portfolio-content h3 {
    font-size: 1.25rem;
}

.service-portfolio-content p {
    color: var(--text-light);
}

.service-page-cta {
    text-align: center;
    margin-top: 48px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-warm);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-stack {
    position: relative;
    height: 500px;
}

.img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    background: url('images/aboutus1.jpeg') center/cover;
    border-radius: var(--border-radius);
    z-index: 2;
    box-shadow: var(--shadow);
}

.img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 80%;
    background: url('images/aboutus2.jpeg') center/cover;
    border-radius: var(--border-radius);
    z-index: 1;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
}

.features-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold-dark) 100%);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-item-link {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-decoration: none;
    color: #000;
    transition: opacity 0.2s ease;
}
.info-item-link:hover {
    opacity: 0.85;
    color: #000;
}
.info-item-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

.info-item i,
.info-item-link i {
    width: 50px;
    height: 50px;
    aspect-ratio: 1 / 1;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-item h4,
.info-item-link h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: #000;
}

.info-item p, .info-item a,
.info-item-link p {
    color: var(--text-light);
}

.info-item-link h4,
.info-item-link p {
    color: #000;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow), 0 0 0 1px rgba(212, 163, 115, 0.08);
}

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

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(212, 163, 115, 0.25);
    border-radius: 14px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
    background: var(--white);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.2);
}

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

/* Select wrappers – custom dropdown look */
.form-select-wrap {
    position: relative;
    display: block;
}

.form-select-wrap select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 16px 48px 16px 20px;
    cursor: pointer;
    background: linear-gradient(180deg, #fefdfb 0%, var(--bg-warm) 100%);
    border: 1px solid rgba(212, 163, 115, 0.3);
    border-radius: 14px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-select-wrap select:hover {
    border-color: rgba(212, 163, 115, 0.5);
    background: linear-gradient(180deg, var(--white) 0%, #fefdfb 100%);
}

.form-select-wrap select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.2);
    outline: none;
}

.form-select-wrap select:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #f8f8f8;
}

.form-select-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 7px solid var(--gold-dark);
    opacity: 0.8;
    transition: var(--transition);
}

.form-select-wrap:focus-within .form-select-icon {
    border-top-color: var(--primary-color);
    opacity: 1;
}

/* Date wrapper: trigger + custom calendar */
.form-date-wrap {
    position: relative;
    display: block;
}


/* Hide browser’s built-in calendar icon so only our custom icon shows */

.custom-date-trigger {
    display: block;
    width: 100%;
    padding: 16px 48px 16px 20px;
    text-align: left;
    cursor: pointer;
    background: linear-gradient(180deg, #fefdfb 0%, var(--bg-warm) 100%);
    border: 1px solid rgba(212, 163, 115, 0.3);
    border-radius: 14px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.custom-date-trigger:hover:not(:disabled) {
    border-color: rgba(212, 163, 115, 0.5);
    background: linear-gradient(180deg, var(--white) 0%, #fefdfb 100%);
}

.custom-date-trigger:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.2);
    outline: none;
}

.custom-date-trigger:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #f8f8f8;
}

.custom-date-placeholder { color: var(--text-light); }
.custom-date-value { font-weight: 500; }

.custom-calendar {
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    z-index: 100;
    width: 100%;
    min-width: 280px;
    max-width: 320px;
    padding: 20px;
    box-sizing: border-box;
    background: var(--white);
    border: 1px solid rgba(212, 163, 115, 0.3);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(212, 163, 115, 0.08);
}

.custom-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 12px;
}

.custom-calendar-title { font-weight: 600; font-size: 1.05rem; color: var(--text-dark); }

.custom-calendar-prev,
.custom-calendar-next {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 163, 115, 0.35);
    border-radius: 10px;
    background: linear-gradient(180deg, #fefdfb 0%, var(--bg-warm) 100%);
    color: var(--gold-dark);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.custom-calendar-prev:hover,
.custom-calendar-next:hover {
    border-color: var(--primary-color);
    background: var(--gold-light);
    color: var(--gold-dark);
}

.custom-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
    margin-bottom: 8px;
}

.custom-calendar-weekday {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.custom-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
}

.custom-calendar-day {
    aspect-ratio: 1;
    min-width: 0;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.custom-calendar-day--empty { pointer-events: none; visibility: hidden; }

.custom-calendar-day:not(.custom-calendar-day--empty):not([disabled]):hover {
    background: rgba(212, 163, 115, 0.15);
    color: var(--gold-dark);
}

.custom-calendar-day--past,
.custom-calendar-day--closed {
    color: var(--text-light);
    opacity: 0.5;
    cursor: not-allowed;
}

.custom-calendar-day:not(.custom-calendar-day--empty):not([disabled]):active {
    background: linear-gradient(135deg, var(--gold-light) 0%, rgba(245, 230, 211, 0.7) 100%);
    color: var(--gold-dark);
}

/* Single custom calendar icon (CSS-only) */
.form-date-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold-dark);
    border-radius: 4px;
    opacity: 0.85;
    transition: var(--transition);
}

.form-date-icon::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 2px;
    background: var(--gold-dark);
    border-radius: 1px;
}

.form-date-wrap:focus-within .form-date-icon {
    border-color: var(--primary-color);
    opacity: 1;
}

.form-date-wrap:focus-within .form-date-icon::before {
    background: var(--primary-color);
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.booking-category-filter-wrap {
    margin-bottom: 12px;
}

.booking-filter-label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-light);
}

.booking-category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.booking-category-chip {
    border: 1px solid rgba(212, 163, 115, 0.32);
    background: rgba(255, 255, 255, 0.72);
    color: var(--text-dark);
    padding: 10px 14px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
}

.booking-category-chip:hover:not(:disabled),
.booking-category-chip:focus-visible:not(:disabled) {
    border-color: var(--primary-color);
    background: rgba(245, 230, 211, 0.85);
    color: var(--gold-dark);
    outline: none;
}

.booking-category-chip.active {
    background: linear-gradient(135deg, var(--primary-color), #c39262);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 12px 24px rgba(212, 163, 115, 0.22);
}

.booking-category-chip:disabled,
.booking-category-chip.is-empty {
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: none;
}

.form-hint {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 6px;
}

.form-error {
    display: block;
    font-size: 0.85rem;
    color: var(--secondary-color);
    margin-top: 6px;
    min-height: 1.25em;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.form-error.is-visible {
    opacity: 1;
}

.form-group.has-error input {
    border-color: var(--secondary-color);
}

.form-group.has-error input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.2);
}

.form-row {
    display: grid;
    gap: 20px;
}

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

@media (max-width: 560px) {
    .form-row-2 {
        grid-template-columns: 1fr;
    }
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    min-height: 48px;
    align-items: start;
}

@media (max-width: 420px) {
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }
}

.time-slots-placeholder {
    grid-column: 1 / -1;
    color: var(--text-light);
    font-size: 0.9rem;
}

.time-slots-closed {
    color: var(--gold-dark);
    font-weight: 500;
}

.time-slot-btn {
    padding: 12px 20px;
    border: 1px solid rgba(212, 163, 115, 0.35);
    border-radius: 999px;
    background: linear-gradient(180deg, #fefdfb 0%, var(--bg-warm) 100%);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.time-slot-btn:hover {
    border-color: var(--primary-color);
    background: linear-gradient(180deg, var(--white) 0%, rgba(245, 230, 211, 0.25) 100%);
    box-shadow: 0 4px 12px rgba(212, 163, 115, 0.2);
    transform: translateY(-1px);
}

.time-slot-btn.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--gold-light) 0%, rgba(245, 230, 211, 0.7) 100%);
    color: var(--gold-dark);
    box-shadow: 0 4px 14px rgba(212, 163, 115, 0.3);
}

/* Why Choose Us */
.why-us {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-warm) 50%, var(--white) 100%);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.why-us-item {
    text-align: center;
    padding: 36px 24px;
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid rgba(212, 163, 115, 0.2);
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.why-us-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--gold-dark), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-us-item:hover {
    border-color: rgba(212, 163, 115, 0.35);
    box-shadow: 0 12px 32px rgba(212, 163, 115, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.why-us-item:hover::before {
    opacity: 1;
}

.why-us-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
    color: var(--gold-dark);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gold-light) 0%, rgba(245, 230, 211, 0.5) 100%);
    border-radius: 14px;
    border: 1px solid rgba(212, 163, 115, 0.2);
    transition: var(--transition);
}

.why-us-item:hover i {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border-color: transparent;
}

.why-us-item h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.why-us-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

/* Working Hours */
.hours {
    padding: 70px 0;
    background: var(--bg-warm);
    border-top: 1px solid var(--gold-light);
    border-bottom: 1px solid var(--gold-light);
}

.hours-wrapper {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.hours-list {
    margin-top: 25px;
    text-align: left;
    display: inline-block;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--gold-muted);
    font-size: 1rem;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    font-weight: 600;
    color: var(--text-dark);
}

.hours-list .time {
    color: var(--gold-dark);
    font-weight: 500;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border-left: 4px solid var(--primary-color);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    color: var(--gold-light);
    line-height: 1;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-gold);
    border-left-color: var(--gold-dark);
}

.testimonial-card p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    padding-left: 20px;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-card .author span {
    color: var(--gold-dark);
    font-size: 0.9rem;
    font-weight: 400;
}

/* Footer */
footer {
    padding: 50px 0;
    background: var(--white);
    text-align: center;
    border-top: 2px solid var(--gold-light);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .brand-name {
    color: var(--gold-dark);
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-logo-img {
    height: 42px;
    width: 42px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.copyright {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-credit {
    margin-top: 4px;
    font-size: 1rem;
    color: #000;
    font-weight: 400;
}

.footer-credit span {
    font-weight: 400;
}

.footer-credit-brand {
    position: relative;
    display: inline-block;
    color: var(--primary-color) !important;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease, text-shadow 0.25s ease;
}

.footer-credit-brand::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(212, 163, 115, 0.2), var(--primary-color), rgba(212, 163, 115, 0.2));
    transform: scaleX(0.35);
    transform-origin: center;
    opacity: 0.65;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-credit-brand:hover {
    color: var(--primary-color) !important;
    transform: translateY(-1px);
    text-shadow: 0 0 14px rgba(212, 163, 115, 0.28);
    animation: footer-brand-glow 1.2s ease-in-out infinite alternate;
}

.footer-credit-brand:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

@keyframes footer-brand-glow {
    from {
        text-shadow: 0 0 0 rgba(212, 163, 115, 0.12);
    }
    to {
        text-shadow: 0 0 16px rgba(212, 163, 115, 0.32);
    }
}

@media (prefers-reduced-motion: reduce) {
    .footer-credit-brand,
    .footer-credit-brand::after {
        transition: none;
    }

    .footer-credit-brand:hover {
        animation: none;
        transform: none;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .about-wrapper, .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .service-price-grid {
        grid-template-columns: 1fr;
    }
    
    .image-stack {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-content {
        text-align: center;
    }
    
    .features-list li {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .info-item i,
    .info-item-link i {
        width: 44px;
        height: 44px;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        z-index: 999;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.5s;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .nav-menu a {
        font-size: 1.5rem;
    }
    
    .hamburger {
        display: flex;
        z-index: 1000;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-btns {
        flex-direction: column;
        padding: 0 40px;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .service-page-main {
        padding-top: 82px;
    }

    .service-page-hero {
        min-height: auto;
    }

    .service-page-hero-inner {
        padding: 108px 20px 72px;
    }

    .service-page-hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .service-price-board-inner {
        padding: 28px 22px;
    }

    .service-price-board-header,
    .service-price-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-portfolio-image {
        height: 220px;
    }
}

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

    .service-page-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .service-page-actions .btn {
        text-align: center;
    }

    .service-page-metrics {
        grid-template-columns: 1fr;
    }

    .service-portfolio-content {
        padding: 20px 18px 22px;
    }
}

/* Confirmation modal */
.confirmation-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.confirmation-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.confirmation-modal.is-open .confirmation-modal-box {
    transform: scale(1);
    opacity: 1;
}

.confirmation-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(43, 45, 66, 0.5);
    backdrop-filter: blur(4px);
}

.confirmation-modal-box {
    position: relative;
    width: 100%;
    max-width: 420px;
    padding: 40px 32px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(212, 163, 115, 0.12);
    text-align: center;
    transform: scale(0.92);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.confirmation-modal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-light) 0%, rgba(245, 230, 211, 0.8) 100%);
    border: 2px solid rgba(212, 163, 115, 0.4);
    border-radius: 50%;
    color: var(--gold-dark);
    font-size: 1.75rem;
}

.confirmation-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.confirmation-modal-message {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.confirmation-modal-close {
    min-width: 140px;
}

/* Service modal list */
.service-modal-body {
    max-height: 260px;
    overflow-y: auto;
    margin-bottom: 16px;
    text-align: left;
}

.service-modal-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0;
    border-bottom: 1px dashed var(--gold-muted);
    font-size: 0.95rem;
}

.service-modal-item:last-child {
    border-bottom: none;
}

.service-modal-item-name {
    font-weight: 600;
    color: var(--text-dark);
}

.service-modal-item-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: right;
}
