/* 
   Olive Green Cleaning - Modern Premium Design
   Brand Colors (STRICT):
   Primary Blue: #4f8ec9
   Secondary Blue: #4a6cb0
   Accent Green: #75c525
   Dark Text: #4f4f51
   Light Background: #e3e3e4
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables - Brand Colors */
:root {
    --primary-blue: #4f8ec9;
    --secondary-blue: #4a6cb0;
    --accent-green: #75c525;
    --dark-text: #4f4f51;
    --light-bg: #e3e3e4;
    --white: #ffffff;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;
}

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

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-text);
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    font-size: 1.05rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Section Spacing */
section {
    padding: var(--section-padding) 0;
}

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

/* Navigation - Sticky & Modern */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(79, 142, 201, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(79, 142, 201, 0.15);
}

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

.navbar .logo {
    height: 55px;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo {
    height: 45px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.has-dropdown > .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.has-dropdown .dropdown {
    position: absolute;
    top: 38px;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    padding: 10px 0;
    display: none;
    z-index: 1000;
}

.has-dropdown:hover .dropdown {
    display: block;
}

.has-dropdown .dropdown li a {
    display: block;
    padding: 10px 16px;
    color: var(--dark-text);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.has-dropdown .dropdown li a:hover {
    background: var(--light-bg);
    color: var(--primary-blue);
    padding-left: 20px;
}

.nav-link {
    color: var(--dark-text);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-blue);
}

/* Global heading colors */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-blue);
}

/* Keep hero/banner headings white for contrast over images */
.hero .hero-content h1,
.hero .hero-content h2,
.about-hero h1,
.about-hero h2 {
    color: var(--white);
}

/* Service Areas: make city names use brand blue with elegant pill badges */
#service-areas-section .badge,
.area-card .badge {
    display: inline-block;
    color: var(--primary-blue);
    background: var(--white);
    border: 1px solid var(--primary-blue);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-text);
    transition: all 0.3s ease;
}

/* Buttons - Premium Style */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(79, 142, 201, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(74, 108, 176, 0.4);
}

.btn-secondary {
    background: var(--accent-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(117, 197, 37, 0.3);
}

.btn-secondary:hover {
    background: #68b320;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(117, 197, 37, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* Hero Section - Full Width with Form */
.hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    background: url('../images/kitchen/kitchenbanner.jpg') no-repeat center center/cover;
    margin-top: 80px;
    padding: 40px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    color: var(--white);
    font-size: 3.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.hero-cta .btn-secondary {
    background: var(--accent-green);
    border: 2px solid var(--accent-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(117, 197, 37, 0.4);
}

.hero-cta .btn-secondary:hover {
    background: #68b320;
    border-color: #68b320;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(117, 197, 37, 0.5);
}

/* Hero Form - Premium Card */
.hero-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-form h3 {
    color: var(--dark-text);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.hero-form p {
    color: var(--dark-text);
    font-size: 0.95rem;
    margin-bottom: 25px;
    opacity: 0.8;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--dark-text);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-bg);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(79, 142, 201, 0.1);
}

.hero-form .btn {
    width: 100%;
    margin-top: 10px;
}

/* Trust Section - Clean Icons */
.trust-section {
    padding: 80px 0;
    background: var(--white);
}

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

.trust-item {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    position: relative;
}

.trust-icon i {
    font-size: 32px;
    color: var(--white);
}

.trust-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-green);
    opacity: 0;
    transform: scale(1.2);
    transition: all 0.3s ease;
}

.trust-item:hover .trust-icon::after {
    opacity: 1;
    transform: scale(1.3);
}

.trust-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.trust-item p {
    font-size: 0.9rem;
    color: var(--dark-text);
    opacity: 0.8;
}

/* Services Section - Premium Cards */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--primary-blue);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    opacity: 0.85;
}

.services-section .section-header h2,
.services-section .section-header p {
    color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 3px solid var(--white);
    outline: 2px solid var(--accent-green);
    outline-offset: -8px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(117, 197, 37, 0.3);
    outline-color: var(--primary-blue);
    outline-width: 3px;
}

.service-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    border-bottom: 3px solid var(--accent-green);
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(79, 142, 201, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(1.05) contrast(1.1);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(79, 142, 201, 0.1) 100%);
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card:hover .service-image::after {
    opacity: 1;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.service-content p {
    font-size: 0.88rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-content .btn-outline {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* About Section - Split Layout */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(79, 142, 201, 0.2);
    border: 8px solid var(--white);
    outline: 2px solid var(--accent-green);
    outline-offset: 4px;
}

.about-text h2 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent-green);
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-feature i {
    color: var(--accent-green);
    font-size: 24px;
    margin-top: 3px;
}

.about-feature div h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.about-feature div p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Results / Before & After Section */
.results-section {
    padding: var(--section-padding) 0;
    background: var(--light-bg);
}

.results-section .section-header h2 {
    color: var(--primary-blue);
}

.results-section .section-header p {
    color: var(--dark-text);
}

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

.result-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
}

.result-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.result-card:hover img {
    transform: scale(1.1);
}

.result-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(79, 142, 201, 0.9) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.result-card:hover .result-overlay {
    opacity: 1;
}

.result-overlay h4 {
    color: var(--white);
    font-size: 1.3rem;
}

/* Testimonials Section - Carousel */
.testimonials-section {
    padding: 60px 0;
    background: var(--white);
}

.testimonials-section .section-header h2 {
    color: var(--primary-blue);
}

.testimonials-section .section-header p {
    color: var(--dark-text);
}

.testimonials-carousel-wrapper {
    max-width: 700px;
    margin: 50px auto 0;
    position: relative;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(79, 142, 201, 0.1);
    text-align: center;
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-card.active {
    display: block;
}

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

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--accent-green);
    font-size: 20px;
    margin: 0 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    color: var(--dark-text);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h5 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.testimonial-info p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0;
}

/* Carousel Dots */
.carousel-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 6px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background-color: var(--primary-blue);
}

.dot.active {
    background-color: var(--accent-green);
    width: 30px;
    border-radius: 6px;
}

/* Process / How It Works - Timeline */
.process-section {
    padding: var(--section-padding) 0;
    background: var(--light-bg);
}

.process-section .section-header h2 {
    color: var(--primary-blue);
}

/* About Page Styles */
.about-hero {
    background: url('../images/portfolio/officeolive.jpg') no-repeat center center/cover;
    padding: 150px 0 100px;
    text-align: center;
    color: var(--white);
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-story-section .section-header h2,
.values-section .section-header h2,
.why-choose-section .section-header h2,
.service-areas-section .section-header h2,
.about-gallery-section .section-header h2,
.about-story-section .about-text h2,
.why-choose-section .about-text h2 {
    color: var(--primary-blue);
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.about-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
    color: var(--white);
}

.about-story-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--dark-text);
    margin: 0;
}

.values-section {
    padding: var(--section-padding) 0;
    background: var(--light-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(79, 142, 201, 0.1);
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(79, 142, 201, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--dark-text);
    opacity: 0.85;
}

.why-choose-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.service-areas-section {
    padding: var(--section-padding) 0;
    background: var(--light-bg);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.area-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(79, 142, 201, 0.08);
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(79, 142, 201, 0.15);
}

.area-card i {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-bottom: 15px;
}

.area-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.area-card p {
    font-size: 0.9rem;
    color: var(--dark-text);
    opacity: 0.8;
    margin: 0;
}

.about-gallery-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.gallery-item-framed {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 8px solid var(--white);
    outline: 2px solid var(--accent-green);
    outline-offset: -12px;
    transition: all 0.4s ease;
}

.gallery-item-framed:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(117, 197, 37, 0.3);
    outline-color: var(--primary-blue);
    outline-width: 3px;
}

.gallery-item-framed img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(1.05) contrast(1.1);
}

.gallery-item-framed:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(79, 142, 201, 0.95) 100%);
    padding: 20px;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.gallery-item-framed:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-caption p {
    color: var(--white);
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(117,197,37,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--accent-green);
    border-color: var(--accent-green);
}

.cta-buttons .btn-primary:hover {
    background: #68b320;
    border-color: #68b320;
}

.cta-buttons .btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: var(--light-bg);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(79, 142, 201, 0.3);
    position: relative;
}

.process-number::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--accent-green);
    opacity: 0;
    transform: scale(1.2);
    transition: all 0.3s ease;
}

.process-step:hover .process-number::after {
    opacity: 1;
    transform: scale(1.3);
}

.process-step h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Lead Section - Second Conversion Point */
.lead-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.lead-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.lead-content h2 {
    margin-bottom: 15px;
}

.lead-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.85;
}

.lead-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(79, 142, 201, 0.15);
}

.lead-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.lead-form .btn {
    margin-top: 10px;
}

.lead-disclaimer {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Footer - Premium Dark */
.footer {
    background: #2a2a2c;
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-about h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--white);
    opacity: 0.8;
    line-height: 1.8;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--white);
    opacity: 0.8;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--accent-green);
    padding-left: 5px;
}

.footer-contact h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-contact p {
    color: var(--white);
    opacity: 0.8;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact p i {
    color: var(--accent-green);
}

.footer-contact a {
    color: var(--white);
}

.footer-contact a:hover {
    color: var(--accent-green);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--white);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(79, 142, 201, 0.4);
}

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

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

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.3rem; }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    h1 { font-size: 2.3rem; }
    h2 { font-size: 1.9rem; }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 40px;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }

    /* Mobile dropdown behaves as inline list */
    .has-dropdown .dropdown {
        position: static;
        box-shadow: none;
        display: block;
        padding: 0;
        background: transparent;
    }

    .has-dropdown .dropdown li a {
        padding: 8px 0;
    }
    
    .hero {
        margin-top: 80px;
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .lead-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--primary-blue);
    color: var(--white);
}

/* Focus Styles */
*:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline-offset: 4px;
}
