:root {
    --primary-color: #0288d1; /* Fresh Blue */
    --secondary-color: #4caf50; /* Fresh Green */
    --text-color: #333;
    --bg-color: #f9f9f9;
    --white: #ffffff;
    --gray-light: #e0e0e0;
    --font-heading: 'Roboto', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --container-width: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Button & Placeholders */
.btn-primary, .btn-secondary, .btn-white {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #0277bd;
    transform: translateY(-2px);
    color: white; /* Force white text */
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--white);
    color: var(--secondary-color);
}

.btn-white:hover {
    background-color: #eee;
    transform: translateY(-2px);
    color: var(--secondary-color);
}

.placeholder-img {
    background-color: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
    font-weight: bold;
    min-height: 200px;
    border-radius: 8px;
}

.placeholder-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    background-color: #eee;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

header nav ul {
    display: flex;
    gap: 20px;
    align-items: center;
}

header nav a {
    color: var(--text-color);
    font-weight: 600;
}

header nav a.active {
    color: var(--primary-color);
}

header nav a.btn-primary {
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.trust-badges span {
    margin-right: 15px;
    font-weight: 600;
    color: var(--secondary-color);
}

.hero-image .placeholder-img {
    height: 400px;
}

/* Special Offer */
.special-offer {
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 3rem 0;
}

.special-offer h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.special-offer p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.special-offer .small {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Services Overview */
.services-overview {
    padding: 4rem 0;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

/* Why Choose Us */
.why-choose-us {
    background-color: #e8f5e9; /* Light green tint */
    padding: 4rem 0;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 0.5rem;
}

/* Gallery Preview */
.gallery-preview {
    padding: 4rem 0;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item.placeholder-img {
    height: 250px;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background-color: var(--white);
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial h4 {
    color: var(--primary-color);
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #01579b 100%);
    color: var(--white);
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: #263238; /* Dark Blue-Grey */
    color: #eceff1;
    padding: 3rem 0 1rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 0.5rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #eceff1;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.footer-col p {
    margin-bottom: 0.8rem;
}

.footer-col i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.copyright {
    text-align: center;
    border-top: 1px solid #455a64;
    padding-top: 1.5rem;
    font-size: 0.9rem;
    color: #b0bec5;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    header .container {
        flex-wrap: wrap;
    }

    header nav {
        display: none; /* Can be toggled with JS */
        width: 100%;
        margin-top: 1rem;
    }
    
    header nav.active {
        display: block;
    }

    header nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
    }

    .hero-image {
        order: -1; /* Image on top on mobile */
    }
}

/* Services Page Styles */
.services-detailed {
    padding: 4rem 0;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Image and Content split */
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.service-block.reverse .service-content {
    order: 2;
}

.service-block.reverse .service-image {
    order: 1;
}

/* Mobile responsive for service blocks */
@media (max-width: 768px) {
    .service-block, .service-block.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-block.reverse .service-content {
        order: 0;
    }
}

.service-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.benefits-list {
    margin-bottom: 2rem;
}

.benefits-list li {
    margin-bottom: 0.5rem;
}

.benefits-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.price-box {
    background-color: #e1f5fe;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
}

.price-box h3 {
    margin: 0;
    color: var(--primary-color);
}

.price-box p {
    margin: 0.5rem 0 1rem;
    font-size: 0.9rem;
}

/* --------------------------------------------------
   Home Redesign (index.html)
-------------------------------------------------- */
.home-redesign {
    background: #f4f8ff;
}

.home-redesign .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #e8edf5;
    box-shadow: 0 6px 20px rgba(8, 35, 78, 0.08);
}

.home-redesign .nav-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 20px;
}

.home-redesign .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #10427a;
    font-weight: 700;
    font-family: var(--font-heading);
    white-space: nowrap;
}

.home-redesign .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #00b36b, #1690ff);
    font-weight: 700;
}

.home-redesign nav {
    flex: 1;
}

.home-redesign nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.home-redesign nav a {
    color: #12365f;
    font-weight: 600;
    font-size: 0.95rem;
}

.home-redesign nav a.active,
.home-redesign nav a:hover {
    color: #0c7ddd;
}

.home-redesign .header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-redesign .cta-green,
.home-redesign .cta-phone {
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.92rem;
    border: 1px solid transparent;
    white-space: nowrap;
}

.home-redesign .cta-green {
    background: #18b65f;
    color: #fff;
}

.home-redesign .cta-green:hover {
    background: #12934b;
    color: #fff;
}

.home-redesign .cta-phone {
    color: #18b65f;
    border-color: #18b65f;
    background: #fff;
}

.home-redesign .cta-phone:hover {
    background: #eafcf2;
    color: #14964f;
}

.home-redesign .hero-modern {
    position: relative;
    background: linear-gradient(120deg, #0e315e 0%, #103f79 50%, #0f558f 100%);
    min-height: calc(100vh - 78px);
    overflow: hidden;
}

.home-redesign .hero-modern::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(30, 191, 115, 0.35), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 170, 255, 0.24), transparent 45%);
}

.home-redesign .hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(9, 29, 54, 0.86) 0%, rgba(9, 29, 54, 0.64) 45%, rgba(9, 29, 54, 0.2) 100%);
}

.home-redesign .hero-grid-modern {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
    min-height: calc(100vh - 78px);
    padding-top: 40px;
    padding-bottom: 40px;
}

.home-redesign .eyebrow {
    color: #44ffa2;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.home-redesign .hero-left h1 {
    color: #fff;
    font-size: clamp(2.2rem, 4vw, 4.1rem);
    line-height: 1.08;
    max-width: 760px;
    margin-bottom: 14px;
}

.home-redesign .hero-left h1 span {
    color: #18b4ff;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
}

.home-redesign .hero-sub {
    color: #d6e8ff;
    font-size: 1.7rem;
    font-family: var(--font-heading);
    margin-bottom: 22px;
}

.home-redesign .hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-redesign .hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 700;
    border: 2px solid transparent;
}

.home-redesign .hero-btn-primary {
    background: #18b65f;
    color: #fff;
}

.home-redesign .hero-btn-primary:hover {
    background: #12934b;
    color: #fff;
}

.home-redesign .hero-btn-outline {
    background: rgba(13, 45, 81, 0.55);
    border-color: rgba(225, 238, 255, 0.52);
    color: #fff;
}

.home-redesign .hero-btn-outline:hover {
    background: rgba(16, 57, 99, 0.95);
    color: #fff;
}

.home-redesign .hero-right {
    position: relative;
    min-height: 520px;
}

.home-redesign .photo-card {
    position: absolute;
    border-radius: 14px;
    border: 3px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #e7f4ff;
    background: linear-gradient(145deg, rgba(22, 145, 255, 0.4), rgba(24, 182, 95, 0.45));
    backdrop-filter: blur(2px);
}

.home-redesign .photo-main {
    top: 30px;
    right: 25px;
    width: min(100%, 400px);
    height: 270px;
}

.home-redesign .photo-small {
    right: 0;
    bottom: 110px;
    width: 180px;
    height: 120px;
}

.home-redesign .chat-box {
    position: absolute;
    left: 20px;
    bottom: 30px;
    width: min(100%, 310px);
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 14px;
    padding: 14px;
    color: #234f7d;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.24);
}

.home-redesign .chat-box i {
    color: #18b65f;
    font-size: 1.2rem;
}

.home-redesign .chat-box p {
    margin: 0;
    font-weight: 600;
}

.home-redesign .home-proof {
    background: #fff;
    border-top: 1px solid #ebf0f7;
}

.home-redesign .proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 24px;
    padding-bottom: 24px;
}

.home-redesign .proof-item {
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    background: #f8fbff;
    border: 1px solid #e5edf7;
}

.home-redesign .proof-item h3 {
    margin-bottom: 2px;
    color: #0d62b0;
    font-size: 1.45rem;
}

.home-redesign .proof-item p {
    margin: 0;
    color: #4c6784;
}

@media (max-width: 1180px) {
    .home-redesign nav {
        display: none;
        width: 100%;
        order: 4;
        margin-top: 10px;
    }

    .home-redesign nav.active {
        display: block;
    }

    .home-redesign nav ul {
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
    }

    .home-redesign .mobile-menu-toggle {
        display: block;
        margin-left: auto;
    }

    .home-redesign .header-cta {
        margin-left: auto;
    }
}

@media (max-width: 980px) {
    .home-redesign .hero-grid-modern {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 36px;
    }

    .home-redesign .hero-right {
        min-height: 380px;
    }

    .home-redesign .photo-main {
        left: 0;
        right: auto;
        width: min(100%, 410px);
    }

    .home-redesign .photo-small {
        left: 220px;
        right: auto;
    }

    .home-redesign .chat-box {
        left: 0;
    }

    .home-redesign .proof-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .home-redesign .header-cta {
        display: none;
    }

    .home-redesign .hero-sub {
        font-size: 1.25rem;
    }

    .home-redesign .eyebrow {
        font-size: 0.95rem;
    }

    .home-redesign .photo-main {
        width: 100%;
        height: 220px;
    }

    .home-redesign .photo-small {
        width: 140px;
        height: 100px;
        left: auto;
        right: 0;
        bottom: 125px;
    }
}
