/* Coral Bathrooms Landing Page - Main Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

p.gform_required_legend
 {
    display: none;
}

h1, h2 { color:#a79777!important;}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(8, 42, 62, 0.95), rgba(8, 42, 62, 0.98)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23082A3E" width="1200" height="800"/></svg>');
    color: white;
    padding: 60px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1), transparent);
    pointer-events: none; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color:#fff;
}

.hero .subtitle {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 300;
}

.hero .location {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-primary {
    background: #A79777;
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(167, 151, 119, 0.4);
}

.btn-primary:hover {
    background: #8f7f5f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(167, 151, 119, 0.5);
}

.btn-secondary {
    background: white;
    color: #082A3E;
    padding: 18px 40px;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

/* Phone Banner */
.phone-banner {
    background: #A79777;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
}

.phone-banner a {
    color: white;
    text-decoration: none;
    border-bottom: 2px solid white;
}

/* Trust Indicators */
.trust-bar {
    background: #f8f9fa;
    padding: 30px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.trust-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.trust-icon {
    font-size: 36px;
    margin-bottom: 10px;
    color: #082A3E;
}

.trust-item h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.trust-item p {
    font-size: 14px;
    color: #666;
}

/* Benefits Section */
.benefits {
    padding: 60px 20px;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 38px;
    color: #082A3E;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #082A3E;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #082A3E;
    font-size: 22px;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #555;
    line-height: 1.7;
}

/* Services Section */
.services {
    padding: 60px 20px;
    background: linear-gradient(135deg, #082A3E 0%, #051d2b 100%);
    color: white;
}

.services .section-title {
    color: white;
}

.services .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.service-card ul {
    list-style: none;
    margin-top: 20px;
}

.service-card li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #A79777;
    font-weight: bold;
    font-size: 18px;
}

/* Why Choose Section */
.why-choose {
    padding: 60px 20px;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 20px;
}

.contact-section {
    padding: 60px 20px;
    background: white;
}
.feature-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #082A3E;
    color: white;
    border-radius: 50%;
    line-height: 60px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.feature h3 {
    color: #082A3E;
    margin-bottom: 10px;
    font-size: 20px;
}

/* Testimonials */
.testimonials {
    padding: 60px 20px;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial p {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: #082A3E;
}

/* Final CTA */
.final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #082A3E 0%, #051d2b 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 20px 20px;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer p {
    margin: 10px 0;
    opacity: 0.9;
}

.footer a {
    color: #A79777;
    text-decoration: none;
}
