/* ===== Variables ===== */
:root {
    --primary: #000000;
    --primary-dark: #000000;
    --primary-light: #404040;
    --secondary: #404040;
    --accent: #737373;
    --dark: #0a0a0a;
    --gray-600: #525252;
    --gray-500: #737373;
    --gray-400: #a3a3a3;
    --gray-300: #d4d4d4;
    --gray-200: #e5e5e5;
    --gray-100: #f5f5f5;
    --gray-50: #fafafa;
    --white: #ffffff;
    --success: #22c55e;
    --error: #ef4444;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --radius: 12px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.logo-img {
    height: 32px;
    width: auto;
    display: block;
}
/* HEADER WRAPPER */
.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
}
/* TOP BAR */
.top-bar {
    background: #111;
    color: var(--white);
    padding: 6px 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

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

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

.top-bar a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.top-bar a:hover {
    opacity: 0.8;
    text-decoration: underline;
}
.top-bar a:hover {
    text-decoration: none;
    opacity: 0.8;
}
/* Google Reviews link specific styling */
.google-reviews-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.google-reviews-link:hover {
    text-decoration: none !important;
}

.google-reviews-link span {
    font-size: 1.1rem;
}

/* Responsive adjustments for top bar */
@media (max-width: 640px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .top-left, .top-right {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .top-bar {
        font-size: 0.85rem;
        padding: 6px 0;
    }
}
/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-full {
    width: 100%;
}


/* NAVBAR */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);

    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    color: var(--gray-600);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: calc(100svh - 110px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url("../images/hero1.webp") center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.55) 45%,
        rgba(0, 0, 0, 0.35) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-left {
    max-width: 650px;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 580px;
    margin: 0 0 18px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero .btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.hero-right {
    display: flex;
    justify-content: flex-end;
}

.promo-card {
    width: 100%;
    max-width: 420px;
    min-height: 280px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 28px;
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    color: var(--white);
}


/* ===== Promo Slider Alternative ===== */
.promo-slider {
    position: relative;
    min-height: 180px;
}

.promo-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.promo-slide.active {
    display: block;
}

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

.promo-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.promo-slide h3 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 12px;
    color: white;
}

.promo-slide p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.promo-dots {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.promo-dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.4);
    padding: 0;
    transition: background 0.3s ease;
}

.promo-dot.active {
    background: var(--white);
}

.promo-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-right {
        justify-content: center;
    }

    .promo-card {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-content {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .promo-card {
        padding: 22px;
    }

    .promo-slide h3 {
        font-size: 1.5rem;
    }
}

/* ===== Section Styles ===== */
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: var(--dark);
}

.section-subtitle {
    text-align: center;
    color: var(--gray-500);
    font-size: 1.1rem;
    margin-bottom: 48px;
}

/* ===== Success Stories Slider ===== */
.success-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.slider-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    min-height: 500px;
}

.slide {
    min-width: 100%;
    position: relative;
    background: var(--gray-200);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: contain; /* Show entire image without cropping */
    object-position: center center;
    background: var(--gray-100);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
}

.slide-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.slide-content .passed-badge {
    display: inline-block;
    background: var(--success);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.slide-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100%;
    height: 500px;
    background: var(--gray-200);
    color: var(--gray-500);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    z-index: 10;
}

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

.slider-prev {
    left: 16px;
}

.slider-next {
    right: 16px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.no-slides {
    text-align: center;
    padding: 80px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    color: var(--gray-500);
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.no-slides p {
    margin-bottom: 16px;
}

/* ===== Services Section ===== */
.services-section {
    padding: 100px 0;
}

.services-table-container {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.services-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.services-table thead {
    background: var(--primary);
    color: var(--white);
}

.services-table th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-table th:last-child {
    text-align: center;
    width: 120px;
}

.services-table tbody tr {
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.services-table tbody tr:hover {
    background: var(--gray-50);
}

.services-table tbody tr:last-child {
    border-bottom: none;
}

.services-table td {
    padding: 20px;
    vertical-align: middle;
}

.services-table td:first-child {
    font-weight: 600;
    color: var(--dark);
}

.services-table td:nth-child(2) {
    color: var(--gray-600);
    max-width: 300px;
}

.services-table td:nth-child(3) {
    color: var(--gray-500);
    white-space: nowrap;
}

.services-table td:nth-child(4) {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark);
    white-space: nowrap;
}

.services-table td:last-child {
    text-align: center;
}

.services-table .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.loading-row {
    text-align: center;
    color: var(--gray-500);
    padding: 40px !important;
}

/* Mobile Table Styles */
@media (max-width: 768px) {
    .services-table th,
    .services-table td {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    
    /* Hide Description, Duration, and Book columns on mobile */
    .services-table th:nth-child(2),
    .services-table td:nth-child(2),
    .services-table th:nth-child(3),
    .services-table td:nth-child(3),
    .services-table th:nth-child(5),
    .services-table td:nth-child(5) {
        display: none;
    }
    
    /* Make service name and price columns take full width */
    .services-table th:first-child,
    .services-table td:first-child {
        width: 60%;
    }
    
    .services-table th:nth-child(4),
    .services-table td:nth-child(4) {
        width: 40%;
        text-align: right;
    }
}

/* ===== Features Section ===== */
.features-section {
    padding: 100px 0;
    background: var(--gray-50);
}

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

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===== Areas Served Section ===== */
.areas-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.areas-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.area-card {
    text-align: center;
    padding: 30px 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.area-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.area-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.area-card h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin: 0;
}

/* ===== Reviews Section ===== */
.reviews-section {
    padding: 100px 0;
    background: var(--gray-50);
}

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

.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-text {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
}

.review-name {
    font-weight: 600;
    color: var(--dark);
}

.review-source {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.reviews-footer {
    text-align: center;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 100px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    background: var(--primary);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
}

.contact-item p {
    opacity: 0.9;
}

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

.contact-item a:hover {
    text-decoration: underline;
}

/* ===== Contact Form ===== */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-message {
    margin-top: 16px;
    padding: 16px;
    border-radius: var(--radius);
    display: none;
}

.form-message.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
}

.form-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 32px 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.footer p {
    opacity: 0.8;
}

.admin-link {
    font-size: 0.875rem;
    opacity: 0.6;
    transition: var(--transition);
}

.admin-link:hover {
    opacity: 1;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: 2;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow-md);
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        padding: 12px 0;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== Animations ===== */


.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* ===== Anti-Spam Honeypot ===== */
.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    z-index: -1;
}
