/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D5B259;
    --dark-brown: #6B4822;
    --very-dark: #32261C;
    --light-gold: #E5C97A;
    --dark-gold: #B89A45;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --gray: #CCCCCC;
    --dark-gray: #666666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--very-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--very-dark);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--light-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-banner .hero-image,
.page-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(50, 38, 28, 0.85) 0%, rgba(107, 72, 34, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Hero */
.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero .container {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.page-hero .hero-subtitle {
    font-size: 1.2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--gold);
    color: var(--very-dark);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(213, 178, 89, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--very-dark);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--very-dark);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: var(--light-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.about-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper i {
    font-size: 2rem;
    color: var(--very-dark);
}

.about-card h3 {
    font-size: 1.5rem;
    color: var(--very-dark);
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--dark-gray);
    line-height: 1.8;
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-top: 1.5rem;
    background: var(--gray);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: var(--gray);
    display: block;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--very-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-content h3 i {
    color: var(--gold);
}

.service-content p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--dark-gold);
}

/* Content Section */
.content-section {
    background: var(--white);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.main-content h2 {
    font-size: 2.2rem;
    color: var(--very-dark);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.main-content h3 {
    font-size: 1.8rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    margin-top: 2.5rem;
    font-weight: 400;
}

.main-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.content-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin: 2rem 0;
    background: var(--gray);
    display: block;
}

/* Contact Section */
.contact-section {
    background: var(--very-dark);
    color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-weight: 300;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--light-gray);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.contact-item i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item strong {
    display: block;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin: 0;
    color: var(--light-gray);
}

.contact-item a {
    color: var(--light-gold);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--gold);
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.map-wrapper iframe {
    width: 100%;
    display: block;
    border: none;
}

/* Interactive Instruments Tabs Section */
.instruments-section {
    background: var(--white);
    padding: 5rem 0;
}

.instruments-tabs {
    margin-top: 3rem;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 1rem;
}

.tab-btn {
    background: transparent;
    border: 2px solid var(--gray);
    color: var(--dark-gray);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px 5px 0 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    margin-bottom: -1rem;
    padding-bottom: calc(1rem + 1px);
}

.tab-btn i {
    font-size: 1.2rem;
}

.tab-btn:hover {
    color: var(--very-dark);
    border-color: var(--gold);
}

.tab-btn.active {
    background: var(--gold);
    color: var(--very-dark);
    border-color: var(--gold);
    border-bottom-color: var(--white);
    font-weight: 600;
}

.tab-content-wrapper {
    position: relative;
    min-height: 500px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.tab-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.tab-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tab-image:hover img {
    transform: scale(1.05);
}

.tab-text h3 {
    font-size: 2rem;
    color: var(--very-dark);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.tab-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.tab-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.tab-text ul li {
    padding: 0.75rem 0;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.tab-text ul li i {
    color: var(--gold);
    font-size: 1rem;
}

/* Statistics Counter Section */
.stats-section {
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--very-dark) 100%);
    padding: 5rem 0;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(213, 178, 89, 0.2);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
}

.stat-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-family: 'Georgia', serif;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Page Section */
.contact-page-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

.contact-page-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--very-dark);
    font-weight: 600;
    font-size: 1rem;
}

.form-group .required {
    color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--gray);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--very-dark);
    background: var(--white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(213, 178, 89, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    padding-left: 3rem;
}

.form-group .form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.1rem;
    pointer-events: none;
}

.form-group textarea ~ .form-icon {
    top: 1.5rem;
    transform: none;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-submit i {
    font-size: 1rem;
}

.contact-info-wrapper {
    position: sticky;
    top: 100px;
}

.contact-info-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info-card h3 {
    font-size: 2rem;
    color: var(--very-dark);
    margin-bottom: 1rem;
    font-weight: 300;
}

.contact-info-card > p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details-list {
    margin-bottom: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: start;
}

.contact-detail-item .contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-item .contact-icon i {
    color: var(--very-dark);
    font-size: 1.3rem;
}

.contact-detail-item .contact-text h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-detail-item .contact-text p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin: 0;
}

.contact-detail-item .contact-text a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-item .contact-text a:hover {
    color: var(--dark-gold);
}

.map-wrapper-small {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-wrapper-small iframe {
    width: 100%;
    display: block;
    border: none;
}

/* Success Page Section */
.success-section {
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--very-dark) 100%);
    color: var(--white);
    padding: 5rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.success-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    font-size: 5rem;
    color: var(--gold);
    margin-bottom: 2rem;
    animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-section h1 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.success-subtitle {
    font-size: 1.3rem;
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.success-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.success-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(213, 178, 89, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.success-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
}

.success-icon-small {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.success-card h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 400;
}

.success-card p {
    color: var(--light-gray);
    line-height: 1.8;
    margin: 0;
}

.success-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.success-actions .btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.success-actions .btn i {
    font-size: 1rem;
}

.success-actions .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
}

.success-actions .btn-secondary:hover {
    background: var(--gold);
    color: var(--very-dark);
}

.success-contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(213, 178, 89, 0.2);
}

.success-contact-info h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 400;
}

.success-contact-info > p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
}

.quick-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.quick-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--light-gray);
    margin: 0;
}

.quick-contact i {
    color: var(--gold);
}

.quick-contact a {
    color: var(--light-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.quick-contact a:hover {
    color: var(--gold);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--very-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
    font-weight: 300;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--light-gray);
}

.cta-section .contact-details {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.cta-section .contact-details p {
    margin: 0;
}

/* Footer */
.footer {
    background: var(--very-dark);
    color: var(--light-gray);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(213, 178, 89, 0.2);
    color: var(--gray);
}

/* Mobile Menu Styles */
@media (max-width: 1268px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--very-dark);
        flex-direction: column;
        padding: 1rem 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
        gap: 0;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        width: 100%;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Contact Page Mobile */
    .contact-page-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-wrapper {
        position: static;
    }

    .contact-form-wrapper,
    .contact-info-card {
        padding: 2rem;
    }

    .map-wrapper-small iframe {
        height: 250px;
    }

    /* Success Page Mobile */
    .success-section {
        padding: 3rem 0;
        min-height: auto;
    }

    .success-section h1 {
        font-size: 2rem;
    }

    .success-subtitle {
        font-size: 1.1rem;
    }

    .success-icon {
        font-size: 4rem;
    }

    .success-content {
        grid-template-columns: 1fr;
    }

    .success-actions {
        flex-direction: column;
        align-items: center;
    }

    .success-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .main-content h2 {
        font-size: 1.8rem;
    }

    .main-content h3 {
        font-size: 1.5rem;
    }

    .main-content p {
        font-size: 1rem;
        text-align: left;
    }

    .content-image {
        height: 250px;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    /* Instruments Tabs Mobile */
    .tab-content-inner {
        grid-template-columns: 1fr;
    }

    .tab-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .tab-btn {
        width: 100%;
        justify-content: center;
        margin-bottom: 0;
        border-radius: 5px;
        padding-bottom: 1rem;
    }

    .tab-btn.active {
        border-bottom-color: var(--gold);
    }

    .tab-image img {
        height: 250px;
    }

    /* Stats Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-icon {
        font-size: 2rem;
    }
}

/* Extra Small Mobile Styles (320px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .page-hero {
        height: 300px;
    }

    .page-hero h1 {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .about-card,
    .service-content {
        padding: 1.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    section {
        padding: 3rem 0;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .main-content h2 {
        font-size: 1.5rem;
    }

    .main-content h3 {
        font-size: 1.3rem;
    }

    /* Instruments Tabs Small Mobile */
    .tab-text h3 {
        font-size: 1.5rem;
    }

    .tab-text p {
        font-size: 1rem;
    }

    .tab-image img {
        height: 200px;
    }

    /* Stats Small Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-icon {
        font-size: 1.5rem;
    }

    /* Contact Page Mobile */
    .contact-page-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-wrapper {
        position: static;
    }

    .contact-form-wrapper,
    .contact-info-card {
        padding: 2rem;
    }

    .success-section h1 {
        font-size: 2rem;
    }

    .success-subtitle {
        font-size: 1.1rem;
    }

    .success-icon {
        font-size: 4rem;
    }

    .success-content {
        grid-template-columns: 1fr;
    }

    .success-actions {
        flex-direction: column;
    }

    .success-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Image Placeholder Styles */
img[src*="picture"] {
    background: var(--gray);
    min-height: 200px;
}

/* Accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Smooth Animations */
@media (prefers-reduced-motion: no-preference) {
    .about-card,
    .service-card {
        animation: fadeInUp 0.6s ease-out;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--very-dark) 0%, var(--dark-brown) 100%);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    border-top: 2px solid var(--gold);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-text h3 {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-banner-text h3 i {
    font-size: 1.3rem;
}

.cookie-banner-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--light-gray);
    margin: 0;
}

.cookie-banner-text a {
    color: var(--gold);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-banner-text a:hover {
    color: var(--light-gold);
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-btn i {
    font-size: 0.9rem;
}

.cookie-btn-accept {
    background: var(--gold);
    color: var(--very-dark);
}

.cookie-btn-accept:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(213, 178, 89, 0.4);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gray);
}

.cookie-btn-decline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--light-gray);
    border: none;
    text-decoration: underline;
    font-size: 0.9rem;
    padding: 0.5rem;
}

.cookie-btn-settings:hover {
    color: var(--gold);
}

/* Mobile Responsive for Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.25rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .cookie-banner-text {
        min-width: auto;
    }

    .cookie-banner-text h3 {
        font-size: 1.1rem;
    }

    .cookie-banner-text p {
        font-size: 0.9rem;
    }

    .cookie-banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.25rem;
    }
}

/* Extra Small Mobile (320px) */
@media (max-width: 480px) {
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-banner-text h3 {
        font-size: 1rem;
        flex-wrap: wrap;
    }

    .cookie-banner-text p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .cookie-banner-actions {
        gap: 0.75rem;
    }

    .cookie-btn {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }

    .cookie-btn-settings {
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
        padding: 0.5rem;
    }
}

/* Very Small Mobile (320px and below) */
@media (max-width: 320px) {
    .cookie-banner {
        padding: 0.875rem 0.75rem;
        left: 0;
        right: 0;
        width: 100%;
    }

    .cookie-banner-content {
        gap: 1rem;
    }

    .cookie-banner-text {
        min-width: 0;
        width: 100%;
    }

    .cookie-banner-text h3 {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
        flex-wrap: wrap;
        line-height: 1.4;
    }

    .cookie-banner-text h3 i {
        font-size: 1rem;
    }

    .cookie-banner-text p {
        font-size: 0.8rem;
        line-height: 1.4;
        word-wrap: break-word;
    }

    .cookie-banner-actions {
        gap: 0.625rem;
        width: 100%;
    }

    .cookie-btn {
        font-size: 0.85rem;
        padding: 0.7rem 0.875rem;
        width: 100%;
        min-width: 0;
    }

    .cookie-btn i {
        font-size: 0.8rem;
    }

    .cookie-btn-settings {
        font-size: 0.8rem;
        padding: 0.5rem;
        width: 100%;
        text-align: center;
    }
}

