/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #64748b; /* Slate Grey */
    --secondary: #000000; /* Black */
    --accent: #ffffff; /* White */
    --dark-grey: #000000; /* Dark Grey for depth */
    --light-grey: #f8fafc; /* Light grey for alternating sections */
    --border-color: #e2e8f0;
    
    /* New Enhanced Color Palette */
    --ocean-blue: #0ea5e9; /* Ocean blue for Hawaii theme */
    --sunset-orange: #f97316; /* Sunset orange accent */
    --palm-green: #22c55e; /* Palm tree green */
    --golden-yellow: #eab308; /* Golden Hawaii sun */
    --coral-pink: #ec4899; /* Coral accent */
    --deep-ocean: #0369a1; /* Deep ocean blue */
    --sand-beige: #fef3c7; /* Sand color */
    --volcanic-black: #000000; /* Volcanic rock black */
    
    /* Chat widget sizing */
    --chat-height: 420px; /* fixed desktop chat height */
    
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Geist', 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-grey);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--dark-grey);
}

.section-title {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.section-subtitle {
    text-align: center;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Header Styles */
.top-bar {
    background: var(--secondary);
    color: var(--accent);
    padding: 8px 0;
    font-size: 14px;
    text-align: center;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.social-link {
    color: var(--accent);
    font-size: 18px;
    text-decoration: none;
}

/* Navigation */
.navbar {
    background: #000000;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    position: relative;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.logo-image {
    height: 36px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    animation: none !important;
    transition: none !important;
}

/* .logo-subtitle removed per request */

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: #e5e7eb;
}

.nav-links a.active {
    color: #ffffff;
}

.nav-links a.active::after { display: none; }

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: var(--accent);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    z-index: 1;
    border-radius: 8px;
    top: 100%;
    left: 0;
    margin-top: 0px;
}

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

.dropdown-content a {
    color: var(--dark-grey);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background: var(--light-grey);
    color: var(--primary);
}

.cta-button {
    background: linear-gradient(135deg, var(--ocean-blue), var(--deep-ocean));
    color: var(--accent);
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow);
}

/* Make navbar CTA look like outlined button on dark background and pin to right */
.navbar .cta-button {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: none;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -25px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.navbar .cta-button:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--deep-ocean), var(--volcanic-black));
    transform: translateY(0px);
    box-shadow: var(--shadow-xl);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: clamp(13px, 4vw, 61px);
    overflow-x: hidden;
}

.hero::before {
    content: none;
}

.hero-content {
    max-width: 1200px;
    padding: 0 32px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    text-align: left;
}

/* Two-column hero layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 32px;
}

.hero-text { min-width: 0; }

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: auto;
    max-width: 390px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.6));
    transform: translateY(-30px);
    position: relative;
    z-index: 1;
}

/* Shine animation over the hero car image - DISABLED */
.hero-visual::after {
    display: none;
}

/* Hover shine animation disabled */
.hero-visual:hover::after {
    display: none;
}

@keyframes heroShine {
    0% { transform: translateX(-150%) skewX(-20deg); }
    100% { transform: translateX(150%) skewX(-20deg); }
}

/* Cycle with built-in idle time for periodic auto-shine */
@keyframes heroShineCycle {
    0%, 5% { transform: translateX(-150%) skewX(-20deg); }
    25% { transform: translateX(150%) skewX(-20deg); }
    100% { transform: translateX(150%) skewX(-20deg); }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-visual { display: none; }
}

.hero h1 {
    font-size: clamp(36px, 6.75vw, 72px);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 0;
    line-height: 0.92;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: none;
}

.hero p {
    font-size: 1rem;
    margin-top: 8px;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 0.2px;
    color: #cbd5e1;
    max-width: 720px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-btn.primary {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: none;
    text-shadow: none;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.hero-btn.primary:hover {
    background: linear-gradient(135deg, var(--coral-pink), var(--sunset-orange));
}

.hero-btn.secondary:hover {
    background: var(--accent);
    color: var(--volcanic-black);
    border-color: var(--accent);
}

.hero-rating {
    margin-top: 20px;
    margin-bottom: 47px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.stars {
    color: var(--golden-yellow);
    font-size: 20px;
}

.rating-text {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Service Categories */
.service-categories {
    background: #f6f7f9;
    padding: 48px 0;
}

.service-categories-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 12px; /* reduced from 40px to bring cards closer to top */
}

.service-category-btn {
    background: #ffffff;
    color: #0f172a;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    box-shadow: none;
}

.service-category-btn:hover {
    background: #f9fafb;
    transform: translateY(-2px);
}

/* About Section */
.about {
    background: #000000;
    padding: 100px 0;
    position: relative;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    color: #ffffff;
}

.about-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 32px;
    color: #0ea5e9;
    line-height: 1.3;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e5e7eb;
    margin-bottom: 24px;
    max-width: 540px;
}

.about-content p:last-of-type {
    margin-bottom: 40px;
}

.about-content .cta-button {
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.about-content .cta-button:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Process Steps */
.process {
    background: #f6f7f9;
    padding: 80px 0;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.process h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process h2 span {
    color: #0ea5e9;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.process-step {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: none;
    transition: var(--transition);
    position: relative;
    text-align: center;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: #000000;
}

.process-step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #000000;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    border: 3px solid #ffffff;
}

.process-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, #0ea5e9, #0369a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
}

.process-step p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
}

/* Services Section */
.services {
    background: #f6f7f9;
    padding: 80px 0;
    position: relative;
}

.services-header {
    background: #f6f7f9;
    color: #0f172a;
    padding: 16px 0 0;
    text-align: center;
    box-shadow: none;
}

.services-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.services-header h2 {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 8px;
}

.services-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    color: #6b7280;
    margin: 0;
}

.services-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.services-link:hover {
    opacity: 0.8;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow-x: hidden;
}

.services-grid { overflow: visible; }

.services-row-1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.services-row-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    height: auto;
    min-height: 280px;
    transition: all 0.3s ease;
    overflow: visible; /* allow shadow/lift to render outside card */
    position: relative;
    will-change: transform, box-shadow;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #000000;
}

.service-card-bg { display: none; }

.service-card-overlay {
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-number { display: none; }

.service-icon {
    width: 48px;
    height: 48px;
    background: #000000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #0ea5e9;
    transform: scale(1.1);
}

.service-icon i {
    color: #ffffff;
    font-size: 20px;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000000;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
    max-width: 280px;
}

.service-price {
    background: #ffffff;
    color: #000000;
    border: 1px solid #000000;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 3px;
    width: 100%;
    max-width: 180px;
}

.service-price:hover {
    background: #000000;
    color: #ffffff;
}

.service-note {
    background: #f3f4f6;
    color: #6b7280;
    border: 1px solid #d1d5db;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 500;
    text-align: center;
    margin-top: 3px;
    width: 100%;
    max-width: 180px;
    font-style: italic;
}

/* Service Area Section */
.service-area {
    background: #000000;
    padding: 80px 0;
}

.service-area-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.service-area h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-area-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.area-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: none;
    transition: var(--transition);
    position: relative;
}

.area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: #000000;
}

.area-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.area-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
}

.area-content {
    padding: 32px 24px;
    text-align: center;
}

.area-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 1.4;
}

/* Gallery Section */
.gallery {
    background: #ffffff;
    padding: 80px 0;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.gallery h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 250px;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials Section */
.testimonials {
    background: #f6f7f9;
    padding: 80px 0;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 60px;
    line-height: 1.5;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: #000000;
}

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

.testimonial-stars i {
    color: #000000;
    font-size: 1.2rem;
    margin: 0 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

/* Contact Section */
.contact {
    background: #000000;
    padding: 100px 0;
    color: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e5e7eb;
    margin-bottom: 40px;
    max-width: 500px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-item i {
    font-size: 1.2rem;
    margin-right: 16px;
    color: #0ea5e9;
    width: 20px;
}

.contact-item span {
    color: #ffffff;
}

.business-hours h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.business-hours p {
    font-size: 1rem;
    color: #e5e7eb;
    margin-bottom: 8px;
}

.contact-form-container {
    display: flex;
    justify-content: center;
}

.contact-form-card {
    background: #ffffff;
    padding: 48px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

.contact-form-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
    text-align: center;
}

.form-intro {
    font-size: 1rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Geist', 'Inter', sans-serif;
    background: #f9fafb;
    color: #374151;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000000;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.submit-btn {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
}



/* Footer */
.footer {
    background: #0b0b0b;
    color: var(--accent);
    padding: 40px 0 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer p {
    margin-bottom: 20px;
    opacity: 1;
    color: var(--accent);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 6px;
    color: var(--accent);
    font-weight: 500;
    z-index: 10000;
    transform: translateX(400px);
    transition: var(--transition);
    max-width: 300px;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: #10b981;
}

.notification.error {
    background: #ef4444;
}

.notification.info {
    background: var(--primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-container {
        height: 70px;
    }
    
    .logo-text {
        font-size: 1.2rem;
        animation: none !important;
        transition: none !important;
    }
    
    .logo-image {
        height: 60px;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--accent);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 40px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }
    /* Mobile nav text color overrides */
    .nav-links a { 
        color: #000000; 
    }
    .nav-links a:hover, .nav-links a.active { 
        color: #111111; 
    }
    .nav-links a.active::after { display: none; }
    .nav-links.active {
        left: 0;
    }
    .hamburger {
        display: flex;
    }
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    /* Make navbar CTA a full-width primary button inside the mobile menu */
    .navbar .cta-button {
        position: static;
        display: block;
        width: calc(100% - 40px);
        margin: 20px auto 0;
        background: #000000;
        color: #ffffff;
        border-color: #000000;
        text-align: center;
    }
    .navbar .cta-button:hover { 
        background: #111111; 
        color: #ffffff; 
        border-color: #111111; 
    }
    .hero {
        min-height: auto;
        align-items: flex-start;
        padding-top: 72px;
        padding-bottom: 32px;
    }
    .hero-content { 
        max-width: 100%; 
        padding: 0 16px; 
    }
    .hero h1 {
        font-size: clamp(28px, 8vw, 36px);
        line-height: 1.05;
        margin-bottom: 10px;
        letter-spacing: 0;
    }
    .hero p {
        font-size: 0.95rem;
        margin-top: 6px;
        margin-bottom: 16px;
        max-width: 100%;
    }
    .hero-rating { 
        margin-top: 12px; 
        margin-bottom: 24px; 
    }
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .services-header-content {
        flex-direction: column;
        gap: 20px;
    }
    .process-steps {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-area-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    /* Hero refinements */
    .hero-buttons { width: 100%; gap: 10px; }
    .hero-buttons .hero-btn { width: 100%; text-align: center; padding: 12px 16px; }

    /* Services section */
    .services { padding: 48px 0; }
    .services-header { padding: 8px 0 0; }
    .services-header h2 { font-size: 1.4rem; margin: 0 16px 6px; }
    .services-subtitle { font-size: 0.85rem; margin: 0 16px 20px; }
    .services-row-1 { grid-template-columns: 1fr; max-width: 640px; gap: 16px; }
    .service-card { min-height: 240px; }
    .service-card-overlay { padding: 24px 16px; }
    .service-card h3 { font-size: 1rem; margin-bottom: 10px; }
    .service-card p { font-size: 0.9rem; max-width: 100%; }

    /* General container safety to avoid horizontal scroll */
    .container, .about-container, .service-area-container, .gallery-container, .testimonials-container { padding: 0 16px; }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 64px;
        padding-bottom: 28px;
    }
    .hero h1 { 
        font-size: clamp(24px, 9vw, 32px); 
        line-height: 1.08; 
    }
    .hero p { font-size: 0.9rem; }
}

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

/* Chatbot */
.chat-launcher {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ocean-blue), var(--deep-ocean));
    color: var(--accent);
    border: none;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1100;
}

.chat-launcher i { font-size: 22px; }

.chat-widget {
    position: fixed;
    right: 20px;
    bottom: 88px;
    width: 340px;
    height: var(--chat-height);
    background: var(--accent);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1100;
}

/* Ensure chat panel is hidden by default until launcher is clicked */
.chat-widget[hidden] { display: none !important; }

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: var(--ocean-blue);
    color: var(--accent);
}

.chat-title { font-weight: 600; }
.chat-close { background: transparent; border: none; color: var(--accent); cursor: pointer; }

.chat-messages {
    padding: 12px;
    overflow-y: auto; /* allow scrolling when content exceeds fixed height */
    flex: 1;
    background: #f7f9fb;
}

.chat-message { margin-bottom: 10px; display: flex; }
.chat-message.user { justify-content: flex-end; }
.chat-bubble {
    padding: 10px 12px;
    border-radius: 12px;
    max-width: 80%;
    box-shadow: var(--shadow);
    font-size: 14px;
    white-space: pre-wrap; /* preserve \n and sequences */
    word-wrap: break-word;
    overflow-wrap: anywhere;
}
.chat-message.user .chat-bubble { background: #e6f2ff; color: #0a2540; }
.chat-message.bot .chat-bubble { background: #ffffff; color: #1f2937; }

.chat-input-row { display: flex; gap: 8px; padding: 10px; border-top: 1px solid #e5e7eb; background: var(--accent); }
.chat-input { flex: 1; padding: 10px 12px; border-radius: 8px; border: 1px solid #d1d5db; font-size: 14px; }
.chat-send { background: var(--ocean-blue); color: var(--accent); border: none; padding: 0 12px; border-radius: 8px; cursor: pointer; }

@media (max-width: 480px) {
    .chat-widget { width: calc(100vw - 32px); right: 16px; bottom: 80px; height: 60vh; }
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: var(--transition);
}

.service-card-link:hover {
    transform: translateY(-2px);
}

.service-card-link:hover .service-card {
    border: 2px solid #000000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-form .submit-btn:hover {
    background: #000000 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

html, body { overflow-x: hidden; }
img, video { max-width: 100%; height: auto; display: block; }
.navbar, .nav-container, .nav-links { max-width: 100%; }
.hero { overflow-x: hidden; }
.services, .services-grid, .services-row-1 { overflow-x: hidden; }
.services-header { position: relative; z-index: 0; }
.services-grid { overflow: visible; position: relative; z-index: 1; }
.services-row-1 { overflow: visible; }
.service-card-link { display: block; position: relative; overflow: visible; }
.service-card { position: relative; z-index: 1; }
.service-card:hover { z-index: 10; }

/** Mobile-specific navbar fixed position **/
@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1000;
    }
    body { padding-top: 70px; }
}
