:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-17cc6b6 *//* ================================================
   BELLAYACHT - PREMIUM CSS
   Maritime Luxury Theme
   ================================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f8f9fa;
    color: #1a1a1a;
    overflow-x: hidden;
    line-height: 1.6;
}

}

/* ================================================
   HERO PREMIUM - MARITIME GRADIENT
   ================================================ */

.hero-premium {
    position: relative;
    background: linear-gradient(135deg, #001233 0%, #002d5c 40%, #003d7a 100%);
    padding: 140px 40px 100px;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212,175,55,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05) 0%, transparent 50%);
    opacity: 0.6;
}

.hero-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-premium h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 64px;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease;
}

.hero-premium .tagline {
    font-size: 28px;
    color: #D4AF37;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(212,175,55,0.5);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-premium .subtitle {
    font-size: 19px;
    max-width: 950px;
    margin: 0 auto 60px;
    opacity: 0.95;
    line-height: 1.9;
    font-weight: 300;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-badge {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(15px);
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid rgba(212,175,55,0.4);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.hero-badge:hover {
    background: rgba(212,175,55,0.25);
    border-color: #D4AF37;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(40px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* ================================================
   SECTIONS LAYOUT
   ================================================ */

.certifications, 
.our-story, 
.testimonials, 
.zones-intervention {
    background: white;
    padding: 100px 40px;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: #001233;
    font-size: 48px;
    margin-bottom: 70px;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 25px;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    box-shadow: 0 2px 10px rgba(212,175,55,0.5);
}

/* ================================================
   INTRO TEXT
   ================================================ */

.intro-text {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px 50px;
}

.intro-text p {
    font-size: 18px;
    line-height: 2;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 400;
}

.intro-text p:first-child {
    font-size: 20px;
    font-weight: 600;
    color: #001233;
}

/* ================================================
   STORY CONTENT
   ================================================ */

.story-content {
    max-width: 950px;
    margin: 0 auto;
    font-size: 17px;
    color: #2c3e50;
    line-height: 2;
}

.story-content p {
    margin-bottom: 28px;
}

.story-content strong {
    color: #001233;
    font-weight: 700;
}

.story-highlight {
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    border-left: 5px solid #D4AF37;
    padding: 35px 40px;
    margin: 45px 0;
    font-style: italic;
    color: #001233;
    border-radius: 12px;
    font-size: 19px;
    line-height: 2;
    box-shadow: 0 5px 25px rgba(0,18,51,0.08);
    font-weight: 500;
}

/* ================================================
   FOUNDERS SECTION
   ================================================ */

.founders-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 40px;
}

.founders-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.founder-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 60px rgba(0,18,51,0.15);
    transition: all 0.5s ease;
    border: 3px solid transparent;
}

.founder-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 80px rgba(0,18,51,0.25);
    border-color: #D4AF37;
}

.founder-image {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e0e5ea 0%, #f5f7fa 100%);
}

.founder-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,18,51,0.1) 100%);
    z-index: 1;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.founder-card:hover .founder-image img {
    transform: scale(1.05);
}

.founder-info {
    padding: 45px;
    background: white;
}

.founder-info h3 {
    color: #001233;
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 700;
    font-family: 'Playfair Display', Georgia, serif;
}

.founder-info .role {
    color: #D4AF37;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-info .bio {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 30px;
}

.founder-info .languages {
    display: flex;
    gap: 15px;
    font-size: 13px;
    flex-wrap: wrap;
}

.founder-info .languages span {
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    padding: 10px 20px;
    border-radius: 30px;
    border: 2px solid #D4AF37;
    transition: all 0.3s ease;
    color: #001233;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.founder-info .languages span:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #c9a332 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(212,175,55,0.4);
}

/* ================================================
   KEY STATS - MARITIME DARK
   ================================================ */

.key-stats {
    background: linear-gradient(135deg, #000a1a 0%, #001a3d 50%, #002d5c 100%);
    padding: 100px 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.key-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.key-stats::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.key-stats .section-title {
    color: white;
    position: relative;
    z-index: 1;
    font-size: 52px;
}

.key-stats .section-title::after {
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    box-shadow: 0 0 20px rgba(212,175,55,0.6);
}

.stats-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 45px 25px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 2px solid rgba(212,175,55,0.25);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.15), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-12px);
    border-color: #D4AF37;
    box-shadow: 0 20px 60px rgba(212,175,55,0.3);
}

.stat-card .number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 52px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(212,175,55,0.5);
    line-height: 1;
}

.stat-card .label {
    font-size: 14px;
    opacity: 0.95;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ================================================
   TESTIMONIALS
   ================================================ */

.testimonials-grid {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.testimonial-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 18px;
    border-left: 5px solid #D4AF37;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0,18,51,0.08);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,18,51,0.15);
    border-left-width: 8px;
}

.testimonial-card .quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 60px;
    color: #D4AF37;
    opacity: 0.12;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card .stars {
    color: #D4AF37;
    font-size: 20px;
    margin-bottom: 25px;
    letter-spacing: 3px;
}

.testimonial-card .text {
    font-size: 15px;
    color: #2c3e50;
    line-height: 1.9;
    margin-bottom: 30px;
    font-style: italic;
    font-weight: 400;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 2px solid rgba(212,175,55,0.2);
}

.testimonial-card .author-info {
    flex: 1;
}

.testimonial-card .author-name {
    font-weight: 700;
    color: #001233;
    font-size: 17px;
    margin-bottom: 6px;
}

.testimonial-card .author-details {
    font-size: 13px;
    color: #718096;
    font-weight: 500;
}

/* ================================================
   OUR COMMITMENT
   ================================================ */

.our-commitment {
    background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);
    padding: 100px 40px;
}

.commitment-grid {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.commitment-card {
    background: white;
    padding: 50px 40px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,18,51,0.1);
    transition: all 0.5s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.commitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #D4AF37, #c9a332);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.commitment-card:hover::before {
    transform: scaleX(1);
}

.commitment-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0,18,51,0.2);
    border-color: #D4AF37;
}

.commitment-card h3 {
    color: #001233;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Playfair Display', Georgia, serif;
}

.commitment-card p {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.8;
}

/* ================================================
   SERVICE AREAS / ZONES
   ================================================ */

.zones-intervention .intro {
    text-align: center;
    color: #4a5568;
    font-size: 18px;
    max-width: 950px;
    margin: 0 auto 70px;
    line-height: 2;
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.zone-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 45px;
    border-radius: 18px;
    border-left: 5px solid #D4AF37;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,18,51,0.08);
}

.zone-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(180deg, #D4AF37, #001233);
    transition: height 0.5s ease;
}

.zone-card:hover::before {
    height: 100%;
}

.zone-card:hover {
    background: linear-gradient(135deg, #001233 0%, #002d5c 100%);
    color: white;
    transform: translateX(10px);
    box-shadow: -12px 12px 40px rgba(0,18,51,0.3);
}

.zone-card h3 {
    color: #001233;
    font-size: 26px;
    margin-bottom: 18px;
    font-weight: 700;
    transition: color 0.3s ease;
    font-family: 'Playfair Display', Georgia, serif;
}

.zone-card:hover h3 {
    color: #D4AF37;
}

.zone-card p {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.9;
    transition: color 0.3s ease;
}

.zone-card:hover p {
    color: rgba(255,255,255,0.92);
}

.zone-card .services {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid rgba(212,175,55,0.3);
    font-size: 13px;
    color: #D4AF37;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.zones-footer {
    text-align: center;
    margin-top: 70px;
    padding: 50px;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    border-radius: 18px;
    border: 2px solid rgba(212,175,55,0.2);
    box-shadow: 0 8px 30px rgba(0,18,51,0.08);
}

.zones-footer p {
    line-height: 2;
    color: #4a5568;
    margin-bottom: 18px;
    font-size: 16px;
}

.zones-footer strong {
    color: #001233;
    font-size: 19px;
    font-weight: 700;
}

.zones-footer em {
    color: #718096;
    font-size: 15px;
}

/* ================================================
   CTA SECTION - STRONG CONTRAST
   ================================================ */

.cta-section {
    background: linear-gradient(135deg, #000a1a 0%, #001a3d 50%, #002d5c 100%);
    padding: 100px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: -60%;
    left: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -60%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 50px;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.cta-section > p {
    font-size: 20px;
    margin-bottom: 70px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-card {
    background: white;
    padding: 50px 35px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.5s ease;
    border: 3px solid transparent;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.cta-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.4);
    border-color: #D4AF37;
}

.cta-card h3 {
    color: #001233;
    font-size: 24px;
    margin-bottom: 18px;
    font-weight: 700;
    font-family: 'Playfair Display', Georgia, serif;
}

.cta-card p {
    color: #4a5568;
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-button {
    background: linear-gradient(135deg, #D4AF37 0%, #c9a332 100%);
    color: #001233;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.4s ease;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(212,175,55,0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cta-button:hover {
    background: linear-gradient(135deg, #001233 0%, #002d5c 100%);
    color: white;
    transform: scale(1.08);
    box-shadow: 0 12px 35px rgba(0,18,51,0.5);
}

.cta-button.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.cta-button.whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    box-shadow: 0 12px 35px rgba(37,211,102,0.5);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-premium {
        padding: 100px 25px 70px;
    }
    
    .hero-premium h1 {
        font-size: 40px;
    }
    
    .hero-premium .tagline {
        font-size: 22px;
    }
    
    .hero-premium .subtitle {
        font-size: 17px;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: stretch;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .whatsapp-button {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button svg {
        width: 28px;
        height: 28px;
    }
    
    .founders-grid,
    .testimonials-grid,
    .commitment-grid,
    .zones-grid,
    .cta-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .certifications, 
    .our-story, 
    .founders-section, 
    .key-stats, 
    .testimonials, 
    .our-commitment, 
    .zones-intervention, 
    .cta-section {
        padding: 70px 25px;
    }
    
    .founder-image {
        height: 380px;
    }
}

@media (max-width: 480px) {
    .hero-premium h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .stat-card .number {
        font-size: 42px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
    }
}/* End custom CSS */