* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #c41e3a;
    --dark-red: #8b0000;
    --light-red: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #d4d4d4;
    --service-icon-color: var(--primary-red);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    margin-left: 250px;
    transition: background-image 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

/* Background brick pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(139, 69, 19, 0.3) 25%, rgba(139, 69, 19, 0.3) 26%, transparent 27%, transparent 74%, rgba(139, 69, 19, 0.3) 75%, rgba(139, 69, 19, 0.3) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(139, 69, 19, 0.3) 25%, rgba(139, 69, 19, 0.3) 26%, transparent 27%, transparent 74%, rgba(139, 69, 19, 0.3) 75%, rgba(139, 69, 19, 0.3) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

body.policy-page {
    margin-left: 0;
}

.policy-card {
    max-width: 800px;
    width: min(800px, 100% - 32px);
    margin: 60px auto;
    padding: 40px 24px;
    background: #fff;
    color: #111;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.policy-card h1 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 12px;
}

.policy-card h2 {
    font-size: clamp(20px, 3vw, 26px);
    margin-top: 22px;
    margin-bottom: 10px;
}

.policy-card p {
    font-size: clamp(15px, 2.4vw, 17px);
    margin-bottom: 12px;
}

.policy-card img {
    max-width: 100%;
    height: auto;
}

.policy-card a {
    word-break: break-word;
}

@media (max-width: 768px) {
    .policy-card {
        margin: 30px auto;
        padding: 28px 18px;
    }

    .policy-card h1 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .policy-card {
        width: calc(100% - 24px);
        margin: 20px auto;
        padding: 22px 16px;
        border-radius: 6px;
    }

    .policy-card h1 {
        font-size: 24px;
    }

    .policy-card h2 {
        font-size: 19px;
    }
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--text-light);
    padding: 20px;
    position: fixed;
    left: 0;
    top: 0;
    width: 250px;
    height: 100vh;
    z-index: 100;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.logo {
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.logo-link:hover .logo {
    opacity: 0.85;
    transform: translateY(-2px);
}

.logo h1 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.logo .tagline {
    font-size: 11px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 0;
    flex: 1;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 15px 20px;
    border-radius: 4px;
    display: block;
    border-left: 4px solid transparent;
}

.nav-menu a.nav-cta {
    background: none;
    border: none;
    border-left: 4px solid transparent;
    font-weight: 500;
    text-transform: none;
    letter-spacing: normal;
}

.nav-menu a.nav-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    border-left-color: var(--text-light);
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-left-color: var(--text-light);
    padding-left: 25px;
}

/* Controls Section */
.controls-section {
    display: flex;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    flex-direction: column;
    gap: 15px;
}

.position-toggle-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--text-light);
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.position-toggle-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.position-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.lang-dropdown-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--text-light);
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lang-dropdown-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.lang-dropdown-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    display: none;
    position: absolute;
    bottom: 60px;
    left: 20px;
    right: 20px;
    background: rgba(139, 0, 0, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.language-dropdown.active {
    display: flex;
    flex-direction: column;
}

.lang-option {
    background: none;
    border: none;
    color: var(--text-light);
    padding: 12px 20px;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.15);
    padding-left: 25px;
}

.lang-option.active {
    background: rgba(255, 255, 255, 0.2);
    border-left: 4px solid var(--text-light);
    padding-left: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    order: -1;
    margin-bottom: 20px;
    margin-top: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Navbar Position Variants */
/* Default: Left position (navbar-left) */
body.navbar-left {
    margin-left: 250px;
}

body.navbar-left .navbar {
    left: 0;
    top: 0;
    width: 250px;
    height: 100vh;
    flex-direction: column;
}

/* Top position */
body.navbar-top {
    margin-left: 0;
    margin-top: 0;
}

body.navbar-top .navbar {
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

body.navbar-top .logo {
    margin-bottom: 0;
}

body.navbar-top .logo h1 {
    font-size: 18px;
    margin-bottom: 0;
}

body.navbar-top .logo .tagline {
    display: none;
}

body.navbar-top .nav-menu {
    display: flex;
    position: static;
    flex-direction: row;
    background: none;
    padding: 0;
    gap: 5px;
    width: auto;
    max-height: none;
    overflow: visible;
    flex: 1;
    margin: 0 20px;
}

body.navbar-top .nav-menu li {
    margin: 0;
    padding: 0;
}

body.navbar-top .nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 4px;
    display: inline-block;
    border-left: none;
    white-space: nowrap;
    font-size: 14px;
}

body.navbar-top .nav-menu a.nav-cta {
    padding: 10px 15px;
    border: none;
    background: none;
    border-left: none;
}

body.navbar-top .nav-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-left: none;
    padding-left: 15px;
}

body.navbar-top .controls-section {
    display: flex;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    flex-direction: row;
    gap: 10px;
    order: 1;
}

body.navbar-top .position-toggle-btn {
    padding: 10px 15px;
    font-size: 13px;
    width: auto;
}

body.navbar-top .language-switcher {
    border: none;
    padding: 0;
}

body.navbar-top .lang-dropdown-btn {
    width: auto;
    padding: 10px 15px;
    font-size: 13px;
}

body.navbar-top .language-dropdown {
    position: fixed;
    top: 60px;
    bottom: auto;
    left: auto;
    right: 20px;
}

body.navbar-top main,
body.navbar-top section {
    margin-top: 0;
}

body.navbar-top .hero {
    margin-top: 50px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.9), rgba(139, 0, 0, 0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%238b4513" width="1200" height="600"/><rect fill="%23a0522d" x="0" y="0" width="100" height="100"/><rect fill="%23a0522d" x="110" y="0" width="100" height="100"/><rect fill="%238b4513" x="110" y="110" width="100" height="100"/><rect fill="%238b4513" x="0" y="110" width="100" height="100"/></svg>');
    background-size: cover;
    background-position: center;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.hero-bg-img.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.hero-content > p {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-content .subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--text-light);
    color: var(--primary-red);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: var(--gray-light);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--gray-light);
}

.services h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--primary-red);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(196, 30, 58, 0.2);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--service-icon-color);
}

.service-card h3 {
    font-size: 22px;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

/* Suppliers Section */
.suppliers {
    padding: 80px 0;
    background: var(--gray-light);
}

.suppliers h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.suppliers .section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 16px;
}

.suppliers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.supplier-card {
    background: var(--text-light);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.supplier-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.supplier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(196, 30, 58, 0.2);
}

.supplier-logo {
    font-size: 56px;
    margin-bottom: 20px;
}

.supplier-logo img {
    max-width: 100%;
    height: auto;
    max-height: 120px;
}

.supplier-click-text {
    color: var(--primary-red);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.supplier-card h3 {
    font-size: 24px;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.supplier-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--text-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about h2 {
    font-size: 42px;
    color: var(--primary-red);
    margin-bottom: 25px;
}

.about p {
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.about-list {
    list-style: none;
    margin-top: 30px;
}

.about-list li {
    padding: 12px 0;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
}

.about-list li:before {
    content: '✓ ';
    color: var(--primary-red);
    font-weight: 700;
    margin-right: 8px;
}

.image-placeholder {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(139, 0, 0, 0.1));
    border: 3px dashed var(--primary-red);
    border-radius: 10px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-red);
    font-weight: 600;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-container p {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-red);
    margin: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    width: 100%;
}

.gallery-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.gallery-hidden {
    display: none;
}

.gallery-show-more {
    width: 150px;
    height: 150px;
    border: 3px solid var(--primary-red);
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(139, 0, 0, 0.1));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-red);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.gallery-show-more:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(196, 30, 58, 0.3);
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.2), rgba(139, 0, 0, 0.2));
}

.plus-icon {
    line-height: 1;
}

/* Appointments Section */
.appointments {
    padding: 80px 0;
    background: var(--text-light);
}

.appointments h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-red);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.appointments-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.appointment-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.05), rgba(139, 0, 0, 0.05));
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-red);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
    color: var(--primary-red);
    font-size: 18px;
    margin-bottom: 15px;
}

.info-card ol {
    margin-left: 20px;
    color: #555;
    line-height: 1.8;
}

.info-card ol li {
    margin-bottom: 10px;
}

.info-card p {
    color: #555;
    line-height: 1.8;
}

.appointment-form {
    background: var(--gray-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--gray-medium);
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
    background: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 10px rgba(196, 30, 58, 0.2);
    background: #fafafa;
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    margin-bottom: 5px;
}

.form-note {
    text-align: center;
    color: #999;
    font-size: 13px;
    margin-top: 15px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--text-light);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--gray-light);
}

.contact h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--primary-red);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item h3 {
    color: var(--primary-red);
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-item p {
    color: #555;
    font-size: 16px;
}

.contact-item a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-item .socials-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    padding: 12px 18px;
    border-radius: 6px;
    background: linear-gradient(135deg, #e51e1e, #c01515);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(192, 21, 21, 0.35);
    border: none;
}

.contact-item .socials-button:hover {
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(21, 101, 192, 0.45);
}

body.policy-page,
body.socials-page {
    margin-left: 0;
}

.socials-card {
    max-width: 900px;
    width: min(900px, 100% - 32px);
    margin: 60px auto;
    padding: 40px 24px;
    background: #fff;
    color: #111;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.socials-card h1 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 10px;
}

.socials-card p {
    font-size: clamp(15px, 2.4vw, 17px);
    margin-bottom: 16px;
}

.socials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.socials-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 10px;
    border: 2px solid rgba(196, 30, 58, 0.15);
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.05), rgba(139, 0, 0, 0.05));
    color: #111;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.25s ease;
}

.socials-link span {
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

.socials-link:hover {
    transform: translateY(-2px);
    border-color: rgba(196, 30, 58, 0.4);
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.18);
}

.socials-back {
    display: inline-block;
    margin-top: 24px;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
}

.socials-back:hover {
    text-decoration: underline;
}

.contact-item a:hover {
    color: var(--dark-red);
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--gray-medium);
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 10px rgba(196, 30, 58, 0.2);
}

.submit-btn {
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--text-light);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--text-light);
    text-align: center;
    padding: 30px 0;
}

.footer p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Default behavior for tablets/mobile */
    body.navbar-left {
        margin-left: 0;
    }

    body.navbar-left .navbar {
        width: 100%;
        height: auto;
        position: sticky;
        top: 0;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        z-index: 100;
        overflow-y: visible;
    }

    body.navbar-left .logo h1 {
        font-size: 20px;
        margin-bottom: 0;
    }

    body.navbar-left .logo .tagline {
        display: none;
    }

    body.navbar-left .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--primary-red);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        max-height: calc(100vh - 60px);
        overflow: visible;
    }

    body.navbar-left .nav-menu.active {
        display: flex !important;
    }

    body.navbar-left .hamburger {
        display: flex;
    }

    body.navbar-left .controls-section {
        display: flex;
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        flex-direction: row;
        gap: 0;
    }

    body.navbar-left .position-toggle-btn {
        display: none;
    }

    body.navbar-left .language-switcher {
        border-top: none;
        position: static;
        width: auto;
    }

    body.navbar-left .lang-dropdown-btn {
        width: auto;
    }

    body.navbar-left .language-dropdown {
        position: absolute;
        bottom: auto;
        top: 100%;
        left: auto;
        right: 20px;
        margin-top: 10px;
    }

    /* Top navbar on mobile */
    body.navbar-top .navbar {
        width: 100%;
        height: auto;
        position: sticky;
        top: 0;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        z-index: 100;
        flex-wrap: nowrap;
        overflow-y: visible;
    }

    body.navbar-top .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--primary-red);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        max-height: calc(100vh - 60px);
        overflow: visible;
    }

    body.navbar-top .nav-menu.active {
        display: flex !important;
    }

    body.navbar-top .hamburger {
        display: flex;
    }

    body.navbar-top .controls-section {
        display: flex;
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        flex-direction: row;
        gap: 0;
    }

    body.navbar-top .position-toggle-btn {
        display: none;
    }

    body.navbar-top .language-switcher {
        border-top: none;
        width: auto;
    }

    body.navbar-top .lang-dropdown-btn {
        width: auto;
    }

    body.navbar-top .language-dropdown {
        position: absolute;
        bottom: auto;
        top: 100%;
        left: auto;
        right: 20px;
        margin-top: 0px;
    }

    /* Content sections */
    body.navbar-left .hero,
    body.navbar-top .hero {
        margin-top: 0;
        margin-left: 0;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content > p {
        font-size: 20px;
    }

    .hero-content .subtitle {
        font-size: 14px;
    }

    .hero {
        height: 300px;
    }

    .services h2,
    .about h2,
    .appointments h2,
    .contact h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .appointments-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .services {
        padding: 25px 0;
    }

    .about {
        padding: 25px 0;
    }

    .appointments {
        padding: 25px 0;
    }

    .contact {
        padding: 25px 0;
    }

    .image-placeholder {
        height: 180px;
    }

    .nav-menu a {
        display: block;
        padding: 12px;
        text-align: left;
    }

    .language-switcher {
        display: flex;
        gap: 5px;
        order: 3;
        width: 100%;
        margin-top: 10px;
    }

    .lang-btn {
        flex: 1;
        padding: 8px;
        font-size: 11px;
    }
}
/* Force checkbox to be inline and not inherit full-width input styles */
.contact-form .privacy-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}
.contact-form .privacy-group input[type="checkbox"] {
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-block !important;
    -webkit-appearance: checkbox !important;
    appearance: checkbox !important;
}
.contact-form .privacy-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}
.contact-form .validation-message {
    margin-left: 0;
}

@media (max-width: 480px) {
    .navbar .container {
        flex-direction: column;
        gap: 10px;
    }

    .logo h1 {
        font-size: 20px;
    }

    .hero {
        height: 250px;
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .hero-content > p {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .hero-content .subtitle {
        font-size: 11px;
        margin-bottom: 15px;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 13px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .services h2,
    .about h2,
    .contact h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .service-card {
        padding: 15px;
    }

    .service-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .service-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .service-card p {
        font-size: 13px;
    }

    .contact-form {
        padding: 15px;
    }

    .form-group {
        margin-bottom: 10px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
        padding: 8px;
    }
}
/* Language switcher in mobile menu */
.language-switcher-mobile {
    display: none;
}

@media (max-width: 768px) {
    .language-switcher-mobile {
        display: list-item;
        list-style: none;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .language-switcher-mobile .lang-dropdown-btn {
        width: 100%;
        padding: 12px 0;
        background: none;
        border: none;
        justify-content: flex-start;
    }

    .language-switcher-mobile .lang-dropdown-btn:hover {
        background: none;
        border: none;
        opacity: 0.8;
    }

    .language-switcher-mobile .language-dropdown {
        position: static;
        background: rgba(139, 0, 0, 0.6);
        border: none;
        border-radius: 0;
        box-shadow: none;
        margin-top: 10px;
        bottom: auto;
        left: auto;
        right: auto;
    }
}