/* RESET + BASIC STYLES */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Arial', sans-serif; line-height: 1.5; -webkit-font-smoothing: antialiased; color: #333; background: #fff; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }

/* CONTAINER */
.container { width: 90%; max-width: 1100px; margin: auto; }

/* NAVBAR */
nav {
    width: 100%;
    position: fixed;
    top: 0; left: 0;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    z-index: 100;
    transition: padding 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
}

/* LOGO */
nav .logo img {
    height: 69px;
    width: auto;
    display: block;
    transition: transform 0.2s ease;
}

nav .logo img:hover {
    transform: scale(1.05);
}

/* NAV BAR CTA BUTTON */
.nav-cta-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #1E5D6A;
    color: #fff;
    text-decoration: none;
    border-radius: 42px;
    font-weight: bold;
    transition: all 0.2s ease;
}

.nav-cta-btn:hover {
    background: #FF6B61;
    transform: translateY(-2px);
}

/* HERO */
header {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding-top: 140px;
    padding-bottom: 60px;
    background: 
        linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
        url('hero.jpg') no-repeat center center;
    background-size: cover;
    transition: transform 10s ease;
}

header:hover {
    transform: scale(1.02);
}

header h1, header p, header .btn, header .call-btn, header .text-btn {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

header h1 { 
    animation-delay: 0.2s; 
    font-size: 48px; 
    color: #ffffff; 
    margin-bottom: 20px; 
    max-width: 800px; 
}

header p { 
    animation-delay: 0.4s; 
    font-size: 22px; 
    margin-bottom: 30px; 
    max-width: 600px; 
}

header .hero-buttons a {
    display: inline-block;
    margin: 0 10px;
    padding: 16px 32px;
    background: #1E5D6A;
    color: #fff;
    text-decoration: none;
    border-radius: 42px;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.2s ease;
}

header .hero-buttons a:hover {
    background: #FF6B61;
    transform: translateY(-2px);
}

/* ANIMATION KEYFRAMES */
@keyframes fadeInUp { from {opacity:0; transform:translateY(20px);} to {opacity:1; transform:translateY(0);} }

/* TRUST BAR */
#trust-bar {
    background: #f4f7f9;
    padding: 20px 0;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-weight: bold;
    color: #1E5D6A;
    text-align: center;
}

/* SECTIONS */
section { padding: 60px 20px; }
h2 { text-align: center; margin-bottom: 40px; }

/* FADE-IN */
.fade-in, .services-grid, .review-grid { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in.show, .services-grid.show, .review-grid.show { opacity: 1; transform: translateY(0); }

/* SERVICES */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.service {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    flex: 1 1 250px;
    max-width: 320px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.service h3 { margin-top:0; margin-bottom:10px; font-size:20px; color:#1E5D6A; }

/* REVIEWS */
/* REVIEWS SECTION */
.reviews {
    background: #f4f7f9;
    padding: 60px 20px;
}

.review-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.review {
    max-width: 320px;
    text-align: center;
    border-left: 4px solid #1E5D6A;
    padding-left: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);

    /* fade-in defaults */
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.review p { 
    font-style: italic; 
    margin-bottom:10px; 
    font-size:16px; 
}

.review strong, .review span { 
    font-weight: bold; 
}

/* WHY CHOOSE US */

#why-us {
  background: #f4f7f9;

}

#why-us .why-list {
    list-style: none;
    max-width: 600px;
    margin: auto;
    padding: 0;
    text-align: left;
    
}

#why-us .why-list li {
    margin-bottom: 12px;
    font-weight: bold;
    color: #1E5D6A;
    
}

/* SERVICE AREA */
#service-area iframe { border: none; border-radius: 12px; margin-top: 20px; }

/* CONTACT US */
#contact {
    text-align: center;
    background: #f4f7f9;
}

.call-btn, .text-btn {
    display: inline-block;
    margin: 5px;
    padding: 14px 20px;
    background: #FF6B61;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transition: all 0.2s ease;
}

.call-btn:hover, .text-btn:hover {
    transform: translateY(-3px);
    background: #E84E4B;
}

/* FLOATING BUBBLE CTA BUTTON */
.floating-bubble {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.floating-bubble.show {
    opacity: 1;
    transform: translateY(0);
}

.floating-bubble .bubble-btn {
    display: inline-block;
    padding: 14px 20px;
    background: #FF6B61;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transition: all 0.2s ease;
}

.floating-bubble .bubble-btn:hover {
    transform: translateY(-3px);
    background: #E84E4B;
}

/* FOOTER */
footer { background: #222; color: white; text-align: center; padding: 25px 0; font-size: 14px; }

/* RESPONSIVENESS */
@media (max-width: 768px) {
    nav .logo img { height: 70px; }
    .nav-container { padding: 1px 15px; }
    header { padding-top: 100px; padding-bottom: 40px; }
    header h1 { font-size: 28px; max-width: 90%; }
    header p { font-size: 16px; max-width: 90%; margin-bottom: 20px; }
    header .hero-buttons a { padding: 12px 24px; font-size: 14px; margin: 5px; }
    .services-grid { flex-direction: column; gap: 20px; align-items: center; }
    .review-grid { flex-direction: column; gap: 20px; align-items: center; }
    .review p { font-size: 14px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    nav .logo img { height: 90px; }
    .nav-container { padding: 15px 18px; }
    header { padding-top: 120px; padding-bottom: 50px; }
    header h1 { font-size: 36px; }
    header p { font-size: 18px; }
    header .hero-buttons a { padding: 14px 28px; font-size: 15px; }
    .services-grid { gap: 20px; }
    .review-grid { gap: 20px; }
    .service h3 { font-size: 18px; }
    .review p { font-size: 15px; }
}