/* ==========================================
   MONTACLAUDIO - MAIN STYLESHEET
   ========================================== */

/* CSS Variables */
:root {
    --primary-color: #0066cc;
    --secondary-color: #004494;
    --accent-color: #c89968;
    --accent-dark: #a0744a;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-warm: #f5f0eb;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* ==========================================
   HEADER
   ========================================== */
header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.logo i {
    font-size: 2rem;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-header {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.contact-item i {
    font-size: 1.2rem;
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    background: linear-gradient(135deg, rgba(0,102,204,0.95) 0%, rgba(0,68,148,0.95) 100%), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f0f0f0" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
    padding: 6rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInDown 0.8s ease-out;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--accent-color);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(200, 153, 104, 0.4);
    animation: fadeIn 1s ease-out;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(200, 153, 104, 0.6);
    background: var(--accent-dark);
}

/* ==========================================
   SECTIONS
   ========================================== */
.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

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

/* ==========================================
   BENEFITS GRID
   ========================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.benefit-icon.danger {
    color: #dc3545;
}

.benefit-icon.success {
    color: #28a745;
}

.benefit-icon i {
    display: block;
}

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

.benefit-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}

/* ==========================================
   OWNER SECTION
   ========================================== */

/* Experience Banner */
.experience-banner {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text h3 {
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
}

.since-tag {
    font-family: 'Brush Script MT', cursive;
    font-size: 1.5rem;
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
}

/* Mission Box */
.mission-box {
    background: var(--bg-warm);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border-left: 5px solid var(--accent-color);
}

.mission-box h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.mission-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.highlight-text {
    background: var(--accent-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.3rem;
    text-align: center;
    margin-top: 1.5rem;
}

/* Value Propositions */
.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
}

.value-card.promotion {
    border-top-color: var(--accent-color);
    background: linear-gradient(to bottom, #fff9f0 0%, white 30%);
}

.value-card h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card.promotion h4 {
    color: var(--accent-color);
}

.value-card p {
    color: #555;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials-section {
    background: var(--bg-warm);
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.testimonials-section h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.testimonials-section h3 i {
    color: #ffd700;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    font-size: 1.2rem;
    line-height: 1.7;
    text-align: center;
}

.owner-section {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.owner-image {
    flex: 0 0 300px;
}

.owner-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.owner-info {
    flex: 1;
    min-width: 300px;
}

.owner-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.owner-info h3 i {
    font-size: 1.8rem;
}

.owner-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.highlight {
    background: linear-gradient(120deg, rgba(200, 153, 104, 0.2) 0%, rgba(200, 153, 104, 0.1) 100%);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ==========================================
   CERTIFICATIONS
   ========================================== */
.certifications {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.certifications h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.certifications h3 i {
    font-size: 2.2rem;
    color: #ffd700;
}

.cert-intro {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.cert-list {
    list-style: none;
    margin-top: 1.5rem;
}

.cert-list li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.cert-list li i {
    position: absolute;
    left: 0;
    top: 1rem;
    color: #ffd700;
    font-size: 1.5rem;
}

/* ==========================================
   SAFETY SECTION
   ========================================== */
.safety-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.safety-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 2rem;
    color: #555;
}

/* ==========================================
   GALLERY
   ========================================== */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    background: white;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    display: block;
    padding: 1rem;
    background: white;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: white;
    padding: 2rem 1.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.gallery-caption i {
    font-size: 1.5rem;
}

/* Brochure Link */
.brochure-link {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: var(--transition);
}

.brochure-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.brochure-link i {
    font-size: 2rem;
    color: #dc3545;
}

.brochure-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: var(--transition);
}

.brochure-link a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    text-align: center;
    background: var(--bg-warm);
    padding: 5rem 2rem;
}

.contact-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #555;
}

.slogan-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: white;
    padding: 2rem 3rem;
    border-radius: 15px;
    margin: 3rem auto;
    max-width: 700px;
    box-shadow: var(--shadow-lg);
}

.slogan-box h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.contact-method {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    min-width: 250px;
    max-width: 300px;
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.contact-method a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: var(--transition);
}

.contact-method a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

.contact-method p {
    margin-top: 1rem;
    color: #666;
}

.coverage-info {
    margin-top: 3rem;
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.coverage-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.coverage-info h3 i {
    font-size: 2rem;
}

.coverage-info p {
    font-size: 1.2rem;
    color: #555;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
    background: var(--text-dark);
    color: var(--text-light);
    text-align: center;
    padding: 2.5rem 0;
}

footer p {
    margin-bottom: 0.5rem;
}

.footer-tags {
    margin-top: 1rem;
    opacity: 0.8;
    font-size: 0.95rem;
}

.disclaimer {
    margin-top: 2rem;
    font-size: 0.65rem;
    opacity: 0.4;
    color: #999;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-dark);
    transform: translateY(-5px);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablet */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .owner-image {
        flex: 0 0 250px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
    }
    
    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1.1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-header {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .experience-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .exp-number {
        font-size: 4rem;
    }
    
    .mission-box {
        padding: 1.5rem;
    }

    .owner-section {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .owner-image {
        flex: 0 0 auto;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .owner-info h3 {
        justify-content: center;
        font-size: 1.6rem;
    }
    
    .value-props {
        grid-template-columns: 1fr;
    }
    
    .testimonials-section {
        padding: 2rem;
    }
    
    .slogan-box {
        padding: 1.5rem;
    }
    
    .slogan-box h3 {
        font-size: 1.6rem;
    }
    
    .certifications {
        padding: 2rem;
    }
    
    .certifications h3 {
        font-size: 1.6rem;
        justify-content: center;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .hero h2 {
        font-size: 1.7rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
}