* {
    font-family: montserrat, sans-serif;
    line-height: 1.5;
    box-sizing: border-box;
}

body {
    text-align: center;
    padding: 0;
    margin: 0;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    max-width: 900px;
}

header p {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 400;
    color: #ddd;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }

    header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5rem;
    }

    header p {
        font-size: 1rem;
    }
}

footer {
    background-color: black;
    color: white;
    text-align: center;
    margin: 0;
    padding: 16px;
}

/* ************************************************************** */
/* *********************** Common Classes *********************** */
/* ************************************************************** */

.text-container {
    max-width: 1000px;
    min-width: 300px;
}

.section-container {
    padding: 32px;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.card {
    background-color: white;
    color: black;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
}

/* ************************************************************** */
/* ************************************************************** */
/* ************************************************************** */

/* ************************************************************** */
/* ********************** Specific Classes ********************** */
/* ************************************************************** */

.header-container {
    width: 100%;
    min-height: 700px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.80), rgba(0, 0, 0, 0.95)), url('./studio.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 48px 32px;
    gap: 40px;
}

.header-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}

.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container img {
    width: 300px;
    max-width: 90%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
    .header-container {
        min-height: 600px;
        padding: 32px 24px;
        gap: 32px;
    }

    .logo-container img {
        width: 240px;
    }
}

@media (max-width: 480px) {
    .header-container {
        min-height: 500px;
        padding: 24px 16px;
        gap: 24px;
    }

    .logo-container img {
        width: 200px;
    }
}

.cta-button-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-button {
    color: white;
    background-color: #c89100;
    font-weight: bold;
    font-size: 1.25rem;
    border: none;
    padding: 16px;
    width: 250px;
    border-radius: 10px;
    margin: 32px;
}

.cta-button:hover {
    background-color: #f1aa00;
    cursor: pointer;
    transition: background-color 0.3s ease;
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.cta-button:active {
    background-color: #b87c00;
    transform: scale(0.98);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.benefits-container {
    background-color: #f5f5f5;
    color: black;
}

.benefits-container h2 {
    margin-bottom: 32px;
}

.benefits-container h4 {
    margin: 24px 0;
    font-size: 1.2rem;
    color: #333;
    line-height: 1.8;
}

.benefits-container p {
    margin-top: 32px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.samples-container {
    color: white;
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.90)), url('./samples-bg.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.samples-container h2 {
    margin-bottom: 16px;
}

.samples-container p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    color: #ddd;
}

.samples {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 32px;
}

.samples h3 {
    margin: 8px 0;
    color: #c89100;
    font-size: 1.1rem;
}

.samples audio {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.process-container {
    background-color: #f5f5f5;
    color: black;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
    width: 100%;
}

.process-item {
    background-color: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.process-item h4 {
    margin: 0 0 12px 0;
    color: #c89100;
    font-size: 1.1rem;
}

.process-item p {
    margin: 0;
    line-height: 1.6;
    color: #333;
}

.process-item.highlight {
    border: 1px solid #f1aa00;
}

.process-item.highlight h4 {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

.tracking-container {
    color: white;
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.90)), url('./header-bg.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.tracking-container h2 {
    margin-bottom: 24px;
}

.tracking-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
}

.tracking-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 32px;
    width: 100%;
}

.tracking-feature {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #c89100;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tracking-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(200, 145, 0, 0.2);
}

.tracking-feature h4 {
    margin: 0 0 12px 0;
    color: #c89100;
    font-size: 1.1rem;
}

.tracking-feature p {
    margin: 0;
    line-height: 1.6;
    color: #ddd;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .tracking-features {
        grid-template-columns: 1fr;
    }

    .tracking-image {
        max-width: 100%;
    }
}

.gear-container {
    background-color: #f5f5f5;
    color: black;
}

.gear-container h2 {
    margin-bottom: 24px;
}

.gear-container > .text-container > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 32px;
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
    width: 100%;
}

.gear-item {
    background-color: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gear-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.gear-item h4 {
    margin: 0 0 12px 0;
    color: #c89100;
    font-size: 1.1rem;
}

.gear-item p {
    margin: 0;
    line-height: 1.6;
    color: #333;
}

.gear-item.highlight {
    border: 1px solid #f1aa00;
}

.gear-item.highlight h4 {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .gear-grid {
        grid-template-columns: 1fr;
    }
}

.testimonials-container {
    color: white;
    background-image: linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.85)), url('./testimonials-bg.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonials-container h2 {
    margin-bottom: 48px;
}

.testimonials-container blockquote {
    background-color: rgba(0, 0, 0, 0.87);
    border-left: 4px solid #c89100;
    padding: 24px 32px;
    margin: 24px 0;
    font-size: 1.05rem;
    line-height: 1.8;
    border-radius: 8px;
    max-width: 800px;
}

.testimonials-container cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    color: #c89100;
    font-weight: 500;
}

@media (max-width: 768px) {
    .testimonials-container blockquote {
        padding: 20px 24px;
    }
}

.about-container {
    background-color: #f5f5f5;
    color: black;
}

.about-container h2 {
    margin-bottom: 32px;
}

.about-container img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin: 24px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .about-container img {
        max-width: 250px;
    }
}

.final-cta-container {
    background-color: black;
    color: white;
    padding: 64px 32px;
}

.final-cta-container h2 {
    margin-bottom: 24px;
    font-size: 2rem;
}

.final-cta-container p {
    font-size: 1.2rem;
    color: #ddd;
    margin: 0;
}

.cta-arrow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    position: relative;
}

.cta-arrow-container p {
    flex: 0 1 auto;
}

.cta-arrow-container .curved-arrow {
    position: absolute;
    right: -120px;
}

.curved-arrow {
    width: 80px;
    height: 80px;
    animation: bounce 2s ease-in-out infinite;
    transform: rotate(90deg);
    filter: brightness(0) saturate(100%) invert(58%) sepia(85%) saturate(489%) hue-rotate(2deg) brightness(97%) contrast(101%);
}

@keyframes bounce {
    0%, 100% {
        transform: rotate(90deg) translateX(0);
    }
    50% {
        transform: rotate(90deg) translateX(10px);
    }
}

@media (max-width: 768px) {
    .final-cta-container {
        padding: 48px 32px;
    }

    .final-cta-container h2 {
        font-size: 1.6rem;
    }

    .final-cta-container p {
        font-size: 1.1rem;
    }

    .cta-arrow-container {
        flex-direction: column;
        gap: 16px;
    }

    .cta-arrow-container .curved-arrow {
        position: static;
        right: auto;
    }

    .curved-arrow {
        width: 60px;
        height: 60px;
    }
}

.action-container {
    background-color: #f5f5f5;
    color: black;
}

.quote-request-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 600px;
    width: 100%;
}

.quote-request-form label {
    width: 100%;
    text-align: left;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quote-request-form input,
.quote-request-form textarea,
.quote-request-form select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.quote-request-form input:focus,
.quote-request-form textarea:focus,
.quote-request-form select:focus {
    outline: none;
    border-color: #c89100;
    box-shadow: 0 0 0 3px rgba(200, 145, 0, 0.1);
}

.quote-request-form select {
    font-family: montserrat, sans-serif;
}

.quote-request-form textarea {
    min-height: 120px;
    resize: vertical;
    font-family: montserrat, sans-serif;
}

.services-fieldset {
    width: 100%;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.services-fieldset legend {
    font-weight: 500;
    padding: 0 8px;
}

.checkbox-label {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    gap: 10px;
    text-align: left;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
    margin: 0;
}

/* ************************************************************** */
/* ************************************************************** */
/* ************************************************************** */
