/* ==========================================================
   PureTouch Cleaning Services - Main Stylesheet
   Color Palette: Navy Blue + Gold + White
   Fonts: Playfair Display (headings) + Inter (body)
   ========================================================== */

/* ===========================
   CSS Variables
   =========================== */
:root {
    --primary: #0a1f44;
    --primary-dark: #061530;
    --primary-light: #132d5e;
    --secondary: #c8a951;
    --secondary-dark: #b0933d;
    --secondary-light: #dcc474;
    --accent: #f4f5f7;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --success: #059669;
    --danger: #dc2626;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ===========================
   Utility Classes
   =========================== */
.section-padding {
    padding: 80px 0;
}

.section-padding-lg {
    padding: 100px 0;
}

.bg-navy {
    background-color: var(--primary);
}

.bg-gold {
    background-color: var(--secondary);
}

.bg-light-gray {
    background-color: var(--accent);
}

.text-navy {
    color: var(--primary) !important;
}

.text-gold {
    color: var(--secondary) !important;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.section-header .section-line {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin: 0 auto 16px;
}

.section-header p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--gray-500);
    font-size: 1.05rem;
}

/* ===========================
   Buttons
   =========================== */
.btn-brand {
    background-color: var(--secondary);
    color: var(--primary);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border: 2px solid var(--secondary);
    border-radius: 4px;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-brand:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-gold {
    background-color: var(--secondary);
    color: var(--primary);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border: 2px solid var(--secondary);
    border-radius: 4px;
    transition: var(--transition);
}

.btn-gold:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-navy {
    background-color: var(--primary);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border: 2px solid var(--primary);
    border-radius: 4px;
    transition: var(--transition);
}

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

.btn-outline-brand {
    background: transparent;
    color: var(--secondary);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border: 2px solid var(--secondary);
    border-radius: 4px;
    transition: var(--transition);
}

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

.btn-whatsapp {
    background-color: #25d366;
    color: var(--white);
    font-weight: 600;
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background-color: #1da851;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===========================
   Top Bar
   =========================== */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--gray-300);
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar a {
    color: var(--gray-300);
}

.top-bar a:hover {
    color: var(--secondary);
}

.top-bar-item {
    margin-right: 20px;
}

.top-bar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--gray-300);
    font-size: 12px;
    margin-left: 6px;
    transition: var(--transition);
}

.top-bar-social a:hover {
    background: var(--secondary);
    color: var(--primary);
}

/* ===========================
   Navbar
   =========================== */
#mainNavbar {
    background-color: var(--white);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    z-index: 1050;
}

#mainNavbar.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
}

.brand-logo {
    max-height: 55px;
    width: auto;
    object-fit: contain;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--gray-500);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gray-700) !important;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: 2px solid var(--primary);
    padding: 6px 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(10, 31, 68, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #020d1f 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(200,169,81,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(200,169,81,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(200,169,81,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(200,169,81,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(200,169,81,0);stop-opacity:1" /></linearGradient></defs><circle cx="400" cy="300" r="250" fill="url(%23grad)" opacity="0.3"/></svg>') no-repeat center;
    background-size: cover;
    pointer-events: none;
}

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

.hero-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid rgba(200,169,81,0.3);
    border-radius: 2px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--secondary);
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    max-width: 540px;
    margin-bottom: 36px;
    line-height: 1.8;
}

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

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

.hero-stat-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 24px 20px;
    text-align: center;
    margin-bottom: 16px;
    transition: var(--transition);
}

.hero-stat-card:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--secondary);
    transform: translateY(-4px);
}

.hero-stat-card .stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat-card .stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ===========================
   Why Choose Us
   =========================== */
.why-choose-us-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.why-choose-us-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.why-choose-us-card .card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--secondary);
    border-radius: 50%;
    font-size: 24px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.why-choose-us-card:hover .card-icon {
    background: var(--secondary);
    color: var(--primary);
    transform: rotateY(180deg);
}

.why-choose-us-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.why-choose-us-card p {
    font-size: 0.92rem;
    color: var(--gray-500);
    margin: 0;
}

/* ===========================
   Services Section
   =========================== */
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    font-size: 28px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--secondary);
}

.service-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-card .service-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.service-card .service-card-link {
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary);
    transition: var(--transition);
}

.service-card .service-card-link:hover {
    color: var(--primary);
}

.service-card .service-card-link i {
    transition: var(--transition);
}

.service-card:hover .service-card-link i {
    transform: translateX(4px);
    display: inline-block;
}

/* ===========================
   How We Work
   =========================== */
.process-step {
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.process-step .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.process-step h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.92rem;
    color: var(--gray-500);
    max-width: 240px;
    margin: 0 auto;
}

/* ===========================
   Testimonials
   =========================== */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 32px;
    position: relative;
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
}

.testimonial-card .quote-icon {
    font-size: 2rem;
    color: var(--secondary);
    opacity: 0.3;
    margin-bottom: 12px;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-card .author-info h5 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.testimonial-card .author-info span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.testimonial-card .stars {
    color: var(--secondary);
    font-size: 0.85rem;
}

/* ===========================
   Products
   =========================== */
.product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

.product-card .product-image {
    background: var(--accent);
    padding: 30px;
    text-align: center;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-card .product-image img {
    max-height: 160px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.product-card .product-image .product-icon-placeholder {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
}

.product-card .product-image .product-img {
    max-height: 160px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.product-card .product-image .product-size {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.product-card .product-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card .product-body h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.product-card .product-body p {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin-bottom: 16px;
    flex: 1;
}

.product-card .product-price {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
}

.product-card .product-price span {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gray-500);
}

.product-card .quantity-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.product-card .quantity-selector label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    margin: 0;
}

.product-card .quantity-selector .qty-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    overflow: hidden;
}

.product-card .quantity-selector .qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--accent);
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.product-card .quantity-selector .qty-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.product-card .quantity-selector .qty-input {
    width: 48px;
    height: 32px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--gray-300);
    border-right: 1px solid var(--gray-300);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===========================
   Gallery
   =========================== */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.gallery-filters .filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--gray-300);
    border-radius: 24px;
    background: var(--white);
    color: var(--gray-600);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-filters .filter-btn:hover,
.gallery-filters .filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 24px;
}

.gallery-item img,
.gallery-item .gallery-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

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

.gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 31, 68, 0.85) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item .gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.gallery-item .gallery-overlay .gallery-category {
    color: var(--secondary);
    font-size: 0.8rem;
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--gray-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    font-size: 3rem;
}

/* ===========================
   Partners
   =========================== */
.partner-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 40px 30px;
    transition: var(--transition);
    height: 100%;
}

.partner-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.partner-card .partner-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.partner-card .partner-logo .partner-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    overflow: hidden;
}

.partner-card .partner-logo .partner-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partner-card .partner-logo h3 {
    font-size: 1.3rem;
    margin-bottom: 0;
}

.partner-card .partner-slogan {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 16px;
}

.partner-card .partner-desc {
    font-size: 0.92rem;
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.7;
}

.partner-card .partner-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.partner-card .partner-services .service-tag {
    background: var(--accent);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    transition: var(--transition);
}

.partner-card .partner-services .service-tag:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===========================
   Booking Form
   =========================== */
.booking-form-wrapper {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.booking-form-wrapper .form-control,
.booking-form-wrapper .form-select {
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.booking-form-wrapper .form-control:focus,
.booking-form-wrapper .form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(200,169,81,0.15);
}

.booking-form-wrapper .form-label {
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 6px;
    font-size: 0.9rem;
}

/* ===========================
   Contact
   =========================== */
.contact-info-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 28px;
    text-align: center;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* Equal height only for top row cards (4-column layout) */
.row.g-4 .col-lg-3 .contact-info-card,
.row.g-4 .col-md-6 .contact-info-card {
    height: 100%;
}

/* Fix social icons in contact-info-card (footer-social has dark-theme styles) */
.contact-info-card .footer-social a {
    background: var(--primary);
    color: var(--white);
}

.contact-info-card .footer-social a:hover {
    background: var(--secondary);
    color: var(--primary);
}

.contact-info-card .contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    font-size: 22px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.contact-info-card:hover .contact-icon {
    background: var(--primary);
    color: var(--secondary);
}

.contact-info-card h5 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
}

.contact-info-card a {
    color: var(--primary);
    font-weight: 500;
}

.contact-info-card a:hover {
    color: var(--secondary);
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* ===========================
   Page Banner
   =========================== */
.page-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(200,169,81,0.05);
    pointer-events: none;
}

.page-banner h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.page-banner .breadcrumb {
    justify-content: center;
}

.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.page-banner .breadcrumb-item.active {
    color: var(--secondary);
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
}

/* ===========================
   About Page
   =========================== */
.about-text h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

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

.about-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.about-image-wrapper img,
.about-image-wrapper .about-img-placeholder {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.about-image-wrapper .about-img-placeholder {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 5rem;
}

.about-image-wrapper .experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--secondary);
    color: var(--primary);
    padding: 16px 24px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper .experience-badge .badge-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.about-image-wrapper .experience-badge .badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===========================
   Mission / Vision / Values
   =========================== */
.mission-card,
.vision-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 40px 30px;
    height: 100%;
    transition: var(--transition);
}

.mission-card:hover,
.vision-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.mission-card .card-icon,
.vision-card .card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    font-size: 24px;
    margin-bottom: 20px;
}

.value-item {
    text-align: center;
    padding: 20px;
}

.value-item .value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    font-size: 20px;
    margin-bottom: 12px;
    transition: var(--transition);
}

.value-item:hover .value-icon {
    background: var(--primary);
    color: var(--secondary);
}

.value-item h5 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.value-item p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(200,169,81,0.05);
    pointer-events: none;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    max-width: 550px;
}

/* ===========================
   Footer
   =========================== */
.footer-cta {
    background: var(--primary);
    padding: 50px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-cta-title {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.footer-cta-text {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin: 0;
}

.footer-main {
    background: var(--gray-900);
    padding: 60px 0 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-brand .brand-logo {
    max-height: 70px;
    width: auto;
    object-fit: contain;
}

.footer-brand .brand-name {
    color: var(--white);
}

.footer-brand .brand-tagline {
    color: var(--gray-500);
}

.footer-desc {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--gray-400);
    font-size: 14px;
    margin-right: 8px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--primary);
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

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

.footer-links a {
    color: var(--gray-500);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--secondary);
    width: 18px;
    text-align: center;
    margin-top: 4px;
}

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

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

.footer-bottom {
    background: var(--gray-900);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.footer-bottom-link {
    color: var(--gray-500);
}

.footer-bottom-link:hover {
    color: var(--secondary);
}

/* ===========================
   Scroll to Top
   =========================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--secondary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-4px);
}

/* ===========================
   WhatsApp Float
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(37,211,102,0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,0.5);
    color: var(--white);
}

/* ===========================
   Loading Spinner
   =========================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--secondary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ===========================
   Homepage Premium Hero
   =========================== */
.hp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--primary-dark);
    overflow: hidden;
}

.hp-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hp-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hp-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(6,21,48,0.92) 0%, rgba(10,31,68,0.80) 50%, rgba(6,21,48,0.70) 100%);
    z-index: 1;
}

.hp-hero-content {
    position: relative;
    z-index: 3;
}

.hp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(200,169,81,0.12);
    border: 1px solid rgba(200,169,81,0.25);
    color: var(--secondary);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.hp-hero-badge i {
    font-size: 0.9rem;
}

.hp-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 24px;
}

.hp-hero h1 span {
    color: var(--secondary);
}

.hp-hero-subtitle {
    font-size: 1.12rem;
    color: rgba(255,255,255,0.72);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.hp-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.hp-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    font-weight: 500;
}

.hp-hero-trust-item i {
    color: var(--secondary);
    font-size: 0.8rem;
}

.hp-hero-side {
    position: relative;
    z-index: 3;
}

.hp-hero-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hp-hero-stat-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.hp-hero-stat-card:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(200,169,81,0.3);
    transform: translateY(-4px);
}

.hp-hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 6px;
}

.hp-hero-stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Hero Hygiene Image */
.hp-hero-image-wrapper {
    margin-bottom: 24px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 2px solid rgba(200,169,81,0.2);
}

.hp-hero-hygiene-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hp-hero-image-wrapper:hover .hp-hero-hygiene-img {
    transform: scale(1.05);
}

.hp-hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    text-align: center;
}

.hp-hero-scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

.hp-hero-scroll-indicator a:hover {
    color: var(--secondary);
}

.hp-hero-scroll-indicator i {
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ===========================
   Stats Bar
   =========================== */
.hp-stats-bar {
    background: var(--white);
    padding: 50px 0;
    border-bottom: 1px solid var(--gray-200);
}

.hp-stats-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}

.hp-stats-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--secondary);
    border-radius: 10px;
    font-size: 22px;
    flex-shrink: 0;
}

.hp-stats-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 2px;
}

.hp-stats-label {
    font-size: 0.88rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* ===========================
   About Preview
   =========================== */
.hp-about-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hp-about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.hp-about-experience-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--secondary);
    color: var(--primary);
    padding: 20px 28px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.hp-about-badge-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
}

.hp-about-badge-text {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.hp-about-content h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    margin-top: 16px;
}

.hp-about-lead {
    font-size: 1.08rem;
    color: var(--gray-700);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 16px;
}

.hp-about-content p {
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 16px;
}

.hp-about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.hp-about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--gray-700);
}

.hp-about-feature i {
    color: var(--secondary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ===========================
   Why Choose Us (Dark)
   =========================== */
.hp-why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 36px 28px;
    transition: all 0.4s ease;
    height: 100%;
}

.hp-why-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(200,169,81,0.3);
    transform: translateY(-6px);
}

.hp-why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(200,169,81,0.12);
    color: var(--secondary);
    border-radius: 10px;
    font-size: 24px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.hp-why-card:hover .hp-why-icon {
    background: var(--secondary);
    color: var(--primary);
    transform: scale(1.05);
}

.hp-why-card h4 {
    color: var(--white);
    font-size: 1.12rem;
    margin-bottom: 10px;
}

.hp-why-card p {
    color: rgba(255,255,255,0.55);
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.7;
}

/* ===========================
   Services (Premium Cards)
   =========================== */
.hp-service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.hp-service-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
    border-color: transparent;
}

.hp-service-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: var(--secondary);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hp-service-image {
    height: 200px;
    overflow: hidden;
    background: var(--accent);
}

.hp-service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hp-service-card:hover .hp-service-img {
    transform: scale(1.08);
}

.hp-service-body {
    padding: 28px 24px;
}

.hp-service-icon-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 10px;
    font-size: 20px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.hp-service-card:hover .hp-service-icon-inline {
    background: var(--primary);
    color: var(--secondary);
}

.hp-service-body h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.hp-service-body p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.7;
}

.hp-service-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary);
    transition: var(--transition);
}

.hp-service-link:hover {
    color: var(--primary);
}

.hp-service-link i {
    transition: var(--transition);
}

.hp-service-link:hover i {
    transform: translateX(4px);
}

/* ===========================
   Industries We Serve
   =========================== */
.hp-industry-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.hp-industry-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.hp-industry-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    font-size: 26px;
    margin-bottom: 18px;
    transition: var(--transition);
}

.hp-industry-card:hover .hp-industry-icon {
    background: var(--primary);
    color: var(--secondary);
    transform: scale(1.08);
}

.hp-industry-card h5 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.hp-industry-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.6;
}

/* ===========================
   How We Work (Premium)
   =========================== */
.hp-process-step {
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.hp-process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--secondary);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(10,31,68,0.2);
}

.hp-process-connector {
    position: absolute;
    top: 32px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 2px;
    background: var(--gray-300);
    z-index: 1;
}

.hp-process-step h4 {
    font-size: 1.12rem;
    margin-bottom: 10px;
}

.hp-process-step p {
    font-size: 0.92rem;
    color: var(--gray-500);
    max-width: 260px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===========================
   Featured Products (Dark)
   =========================== */
.hp-product-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hp-product-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(200,169,81,0.3);
    transform: translateY(-6px);
}

.hp-product-image {
    position: relative;
    background: rgba(255,255,255,0.04);
    padding: 24px;
    text-align: center;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-product-img {
    max-height: 140px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.hp-product-size {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--secondary);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.hp-product-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hp-product-body h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.hp-product-body p {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.hp-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.hp-product-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
}

/* ===========================
   Reviews / Testimonials
   =========================== */
.hp-review-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 32px;
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
}

.hp-review-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.hp-review-quote {
    font-size: 2rem;
    color: var(--secondary);
    opacity: 0.25;
    margin-bottom: 12px;
}

.hp-review-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.8;
}

.hp-review-stars {
    color: var(--secondary);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.hp-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hp-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hp-review-info h5 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.hp-review-info span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.hp-google-rating-inline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.hp-google-stars {
    color: var(--secondary);
    font-size: 1.2rem;
}

.hp-google-rating-inline span {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 1rem;
}

/* ===========================
   Partners (Premium)
   =========================== */
.hp-partner-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 36px 30px;
    transition: all 0.4s ease;
    height: 100%;
}

.hp-partner-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.hp-partner-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.hp-partner-logo {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hp-partner-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hp-partner-header h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.hp-partner-slogan {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
}

.hp-partner-card > p {
    font-size: 0.92rem;
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.7;
}

.hp-partner-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hp-partner-tags span {
    background: var(--accent);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    transition: var(--transition);
}

.hp-partner-tags span:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===========================
   CTA Section (Premium)
   =========================== */
.hp-cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hp-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="150" cy="50" r="80" fill="rgba(200,169,81,0.04)"/><circle cx="30" cy="180" r="120" fill="rgba(200,169,81,0.03)"/></svg>') no-repeat center;
    background-size: cover;
    pointer-events: none;
}

.hp-cta-section h2 {
    color: var(--white);
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.hp-cta-section p {
    color: rgba(255,255,255,0.7);
    font-size: 1.08rem;
    max-width: 580px;
    line-height: 1.8;
}

.hp-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

/* ===========================
   Premium Footer Section
   =========================== */
.hp-premium-footer {
    background: var(--gray-900);
    padding: 60px 0 40px;
    border-top: 3px solid var(--secondary);
}

.hp-pf-brand {
    margin-bottom: 8px;
}

.hp-pf-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.hp-pf-logo-img {
    max-height: 48px;
    width: auto;
    object-fit: contain;
}

.hp-pf-brand h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.hp-pf-brand p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.hp-pf-social {
    display: flex;
    gap: 10px;
}

.hp-pf-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: var(--gray-400);
    font-size: 14px;
    transition: var(--transition);
}

.hp-pf-social a:hover {
    background: var(--secondary);
    color: var(--primary);
}

.hp-pf-title {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.hp-pf-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

.hp-pf-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hp-pf-links li {
    margin-bottom: 10px;
}

.hp-pf-links a {
    color: var(--gray-500);
    font-size: 0.9rem;
    transition: var(--transition);
}

.hp-pf-links a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.hp-pf-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hp-pf-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.hp-pf-contact li i {
    color: var(--secondary);
    width: 18px;
    text-align: center;
    margin-top: 4px;
    flex-shrink: 0;
}

.hp-pf-contact a {
    color: var(--gray-500);
}

.hp-pf-contact a:hover {
    color: var(--secondary);
}

/* ===========================
   Responsive Design
   =========================== */

/* Large devices (laptops) */
@media (max-width: 991.98px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-stats {
        margin-top: 40px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hp-hero h1 {
        font-size: 2.8rem;
    }

    .hp-hero-content {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .hp-about-content h2 {
        font-size: 2rem;
    }

    .hp-cta-section h2 {
        font-size: 2rem;
    }
}

/* Medium devices (tablets) */
@media (max-width: 767.98px) {
    .hero {
        min-height: auto;
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-overlay {
        display: none;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .brand-logo {
        max-height: 50px;
    }

    .footer-brand .brand-logo {
        max-height: 60px;
    }

    .top-bar-item {
        display: block !important;
        margin-bottom: 4px;
    }

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

    .footer-cta .text-lg-end {
        text-align: center !important;
        margin-top: 16px;
    }

    .hp-hero h1 {
        font-size: 2.2rem;
    }

    .hp-hero-scroll-indicator {
        display: none;
    }

    .hp-stats-item {
        justify-content: center;
    }

    .hp-about-features {
        grid-template-columns: 1fr;
    }

    .hp-about-experience-badge {
        bottom: 16px;
        right: 16px;
        padding: 14px 20px;
    }

    .hp-about-badge-number {
        font-size: 1.8rem;
    }

    .hp-process-connector {
        display: none !important;
    }

    .hp-cta-section {
        padding: 60px 0;
        text-align: center;
    }

    .hp-cta-section p {
        margin: 0 auto 24px;
    }

    .hp-cta-buttons {
        justify-content: center;
    }

    .hp-premium-footer {
        padding: 40px 0 30px;
    }

    .hp-pf-logo {
        justify-content: center;
    }

    .hp-pf-brand {
        text-align: center;
    }

    .hp-pf-social {
        justify-content: center;
    }
}

/* Small devices (phones) */
@media (max-width: 575.98px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .brand-logo {
        max-height: 42px;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    .brand-tagline {
        font-size: 0.6rem;
    }

    .booking-form-wrapper {
        padding: 24px 16px;
    }

    .page-banner {
        padding: 60px 0 40px;
    }

    .page-banner h1 {
        font-size: 1.8rem;
    }

    .hp-hero h1 {
        font-size: 1.8rem;
    }

    .hp-hero-badge {
        font-size: 0.72rem;
        padding: 6px 14px;
    }

    .hp-hero-actions {
        flex-direction: column;
    }

    .hp-hero-actions .btn {
        width: 100%;
    }

    .hp-hero-trust {
        flex-direction: column;
        gap: 12px;
    }

    .hp-about-img {
        height: 300px;
    }

    .hp-cta-section h2 {
        font-size: 1.6rem;
    }

    .hp-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hp-cta-buttons .btn {
        width: 100%;
    }

    .hp-premium-footer .col-lg-4,
    .hp-premium-footer .col-lg-2,
    .hp-premium-footer .col-lg-3 {
        text-align: center;
    }

    .hp-pf-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hp-pf-links,
    .hp-pf-contact {
        text-align: center;
    }

    .hp-pf-contact li {
        justify-content: center;
    }

    .hp-pf-social {
        justify-content: center;
    }
}
