/* assets/css/style.css */
/* Super Minimal Design - Light Blue Accents, Thin Borders, Smaller Buttons */
/* No underlines anywhere - clean and modern */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Light & minimal color palette */
    --primary: #3b82f6;
    /* bright but light blue */
    --primary-light: #93c5fd;
    /* very light blue */
    --primary-bg: #eff6ff;
    /* background light blue */
    --secondary: #10b981;
    /* green for whatsapp/success */
    --secondary-light: #d1fae5;
    --dark: #1e293b;
    /* dark text */
    --gray: #64748b;
    /* medium gray */
    --light-gray: #e2e8f0;
    /* border color */
    --white: #ffffff;
    --danger: #ef4444;
    --warning: #f59e0b;
    --success: #10b981;
    --border-thin: 1px solid var(--light-gray);
    --shadow-subtle: 0 4px 12px rgba(0, 0, 0, 0.03);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    color: var(--gray);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary);
}

/* Remove underlines from all links, even on hover */
a:hover {
    text-decoration: none;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    /* smaller padding */
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1;
    border: 1px solid transparent;
    /* thin border default */
    border-radius: var(--radius-full);
    /* pill shape */
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
    white-space: nowrap;
    text-decoration: none;
    /* ensure no underline */
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.85rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #2563eb;
    border-color: #2563eb;
    color: white;
}

.btn-outline {
    border: 1px solid var(--light-gray);
    color: var(--dark);
    background: white;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-bg);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    border-color: #20ba5a;
    color: white;
}

.btn-light {
    background-color: var(--primary-bg);
    color: var(--primary);
    border: 1px solid var(--primary-light);
}

.btn-light:hover {
    background-color: var(--primary-light);
    color: var(--dark);
}

/* ===== HEADER ===== */
.header {
    background: var(--white);
    border-bottom: var(--border-thin);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.9);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
}

.logo i {
    color: var(--primary);
}

.logo-highlight {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    border-bottom-color: var(--primary-light);
}

.nav-actions {
    display: flex;
    gap: 12px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(145deg, #f0f9ff 0%, #e6f0fa 100%);
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 8px;
    background: white;
    padding: 4px;
    border-radius: var(--radius-full);
    border: var(--border-thin);
    box-shadow: var(--shadow-subtle);
}

.search-box input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: var(--radius-full);
    font-size: 1rem;
    outline: none;
    background: transparent;
}

.search-box input::placeholder {
    color: var(--light-gray);
}

/* ===== SLIDER SECTION ===== */
.slider-section {
    background: var(--white);
    padding: 60px 0;
}

.slider {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-subtle);
    border: var(--border-thin);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
    color: white;
    padding: 40px;
    text-align: left;
}

.slide-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.slide-content p {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 500px;
    color: rgba(255, 255, 255, 0.9);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 16px;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--light-gray);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: white;
    border-color: var(--primary);
    color: var(--primary);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: 0.2s;
    border: none;
    padding: 0;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* ===== CATEGORIES ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.category-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    border: var(--border-thin);
    text-align: center;
    transition: all 0.2s;
    text-decoration: none;
    color: var(--dark);
}

.category-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-subtle);
}

.category-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary);
    font-size: 1.5rem;
}

.category-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.category-card p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 16px;
}

.category-link {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.category-link i {
    transition: transform 0.2s;
}

.category-card:hover .category-link i {
    transform: translateX(4px);
}

/* ===== SERVICES CARDS (with WhatsApp button) ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.service-card {
    background: var(--white);
    border: var(--border-thin);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-subtle);
}

.service-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.default-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.priority-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--secondary);
    color: white;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    color: white;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 2;
}

.service-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title-link {
    text-decoration: none;
    color: inherit;
    margin-bottom: 8px;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.service-desc {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.4;
    flex: 1;
}

.service-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-top: 12px;
    border-top: var(--border-thin);
    font-size: 0.85rem;
    color: var(--gray);
}

.service-meta i {
    color: var(--primary);
    width: 16px;
}

.duration,
.location {
    display: flex;
    align-items: center;
    gap: 4px;
}

.price-section {
    margin-bottom: 16px;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.2;
}

.priority-price {
    font-size: 0.85rem;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.service-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.service-actions .btn {
    flex: 1;
    justify-content: center;
}

/* ===== OFFERS ===== */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.offer-card {
    background: var(--white);
    border: var(--border-thin);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.offer-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--secondary);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 2;
}

.offer-image {
    height: 160px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-content {
    padding: 20px;
}

.offer-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.offer-desc {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 12px;
}

.offer-code {
    background: var(--primary-bg);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: inline-block;
}

.offer-dates {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border: var(--border-thin);
    border-radius: var(--radius-md);
    padding: 24px;
}

.rating {
    color: var(--warning);
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
}

.rating i {
    font-size: 0.9rem;
}

.rating .far {
    color: var(--light-gray);
}

.testimonial-text {
    color: var(--dark);
    font-style: italic;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-info img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-bg);
}

.client-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-bg);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.client-details h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.client-details p {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: var(--border-thin);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* ===== BLOG ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.blog-card {
    border: var(--border-thin);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: white;
}

.blog-image {
    height: 180px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.blog-excerpt {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
}

.contact-info,
.contact-form {
    background: var(--white);
    border: var(--border-thin);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.contact-info h3,
.contact-form h3 {
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.info-item i {
    width: 24px;
    color: var(--primary);
    font-size: 1.2rem;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.info-item p {
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gray);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: var(--border-thin);
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    transition: border-color 0.2s;
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

textarea.form-control {
    border-radius: var(--radius-md);
    resize: vertical;
    min-height: 100px;
}

/* ===== CAPTCHA ===== */
.captcha-box {
    display: flex;
    gap: 8px;
    align-items: center;
}

.captcha-img {
    border: var(--border-thin);
    border-radius: var(--radius-full);
    overflow: hidden;
}

/* ===== LOCATION SEARCH ===== */
.location-search {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.location-search input {
    flex: 1;
    padding: 12px 16px;
    border: var(--border-thin);
    border-radius: var(--radius-full);
}

.location-search button {
    padding: 12px 24px;
    background: var(--primary-bg);
    border: var(--border-thin);
    border-radius: var(--radius-full);
    color: var(--primary);
    cursor: pointer;
    transition: 0.2s;
}

.location-search button:hover {
    background: var(--primary-light);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--white);
    border-top: var(--border-thin);
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-col ul li i {
    width: 20px;
    color: var(--primary);
    margin-right: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: var(--border-thin);
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===== UTILITY CLASSES ===== */
.bg-light {
    background-color: var(--primary-bg);
}

.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark);
    font-weight: 600;
}

.view-all-container {
    text-align: center;
    margin-top: 30px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 20px;
        transition: left 0.3s ease;
        border-top: var(--border-thin);
        z-index: 99;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 15px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .slider {
        height: 300px;
    }

    .slide-content h2 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-image {
        height: 150px;
    }

    .service-content {
        padding: 15px;
    }

    .service-title {
        font-size: 1rem;
    }

    .service-desc {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .service-price {
        font-size: 1.2rem;
    }

    .service-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .search-box {
        flex-direction: column;
        border-radius: var(--radius-md);
        padding: 8px;
    }

    .search-box input {
        border-radius: var(--radius-md);
    }

    .search-box button {
        width: 100%;
    }

    .hero {
        padding: 60px 0;
    }

    .services-grid,
    .categories-grid,
    .offers-grid,
    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }

    .slider {
        height: 250px;
    }

    .slide-content {
        padding: 20px;
    }

    .slide-content h2 {
        font-size: 1.2rem;
    }
}