* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #FFFFFF;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Admin Dashboard Specific Styles */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    border-bottom: 4px solid #D4AF37;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-card .number {
    font-size: 36px;
    font-weight: bold;
    color: #008080;
}

.table-container {
    background: white;
    border-radius: 15px;
    padding: 20px;
    overflow-x: auto;
    margin: 20px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.table-container h3 {
    color: #008080;
    margin-bottom: 20px;
    font-size: 1.3em;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

th {
    background: #008080;
    color: white;
    font-weight: 600;
}

tr:hover {
    background: #f5f5f5;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-pending {
    background: #f39c12;
    color: white;
}

.status-in_progress {
    background: #3498db;
    color: white;
}

.status-completed {
    background: #27ae60;
    color: white;
}

.status-cancelled {
    background: #e74c3c;
    color: white;
}

.btn-small {
    background: #D4AF37;
    color: #008080;
    padding: 5px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-small:hover {
    background: #008080;
    color: #D4AF37;
}

/* Invoice Status Colors */
.invoice-confirmed {
    background: #27ae60;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
}

.invoice-pending {
    background: #f39c12;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
}

.invoice-cancelled {
    background: #e74c3c;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
}

.invoice-none {
    color: #999;
    font-size: 11px;
}

/* Full Width Hero Section with Your Image */
.hero-full {
    position: relative;
    width: 100%;
    min-height: 550px;
    background-image: url('../hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #008080; /* Fallback color */
    display: flex;
    align-items: center;
}

.hero-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
}

.hero-content-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text-side {
    max-width: 550px;
    background: rgba(255,255,255,0.95);
    padding: 45px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-left: 5px solid #D4AF37;
}

.hero-badge {
    display: inline-block;
    background: #D4AF37;
    color: #008080;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-text-side h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #008080;
    line-height: 1.2;
}

.hero-text-side h1 span {
    color: #D4AF37;
}

.hero-text-side p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #008080;
    color: white;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: #D4AF37;
    color: #008080;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #008080;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid #008080;
}

.btn-secondary:hover {
    background: #008080;
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-full {
        min-height: 500px;
    }
    
    .hero-text-side {
        max-width: 480px;
        padding: 35px 30px;
    }
    
    .hero-text-side h1 {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .hero-full {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero-text-side {
        max-width: 100%;
        padding: 30px 25px;
        background: rgba(255,255,255,0.95);
    }
    
    .hero-text-side h1 {
        font-size: 1.8em;
    }
    
    .hero-text-side p {
        font-size: 1em;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        text-align: center;
    }
}

/* Split Hero Section */
.split-hero {
    display: flex;
    min-height: 550px;
    background: #FFFFFF;
}

.split-hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #FFFFFF 100%);
}

.split-hero-content {
    max-width: 500px;
}

.split-hero-content .hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #D4AF37;
    font-weight: 600;
}

.split-hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #008080;
    line-height: 1.2;
}

.split-hero-content h1 span {
    color: #D4AF37;
}

.split-hero-content p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #008080;
    color: white;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: #D4AF37;
    color: #008080;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #008080;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid #008080;
}

.btn-secondary:hover {
    background: #008080;
    color: white;
    transform: translateY(-2px);
}

.split-hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.split-hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Split Hero */
@media (max-width: 992px) {
    .split-hero {
        flex-direction: column;
        min-height: auto;
    }
    
    .split-hero-left {
        padding: 50px 30px;
        text-align: center;
    }
    
    .split-hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .split-hero-right {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .split-hero-content h1 {
        font-size: 2em;
    }
    
    .split-hero-content p {
        font-size: 1em;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 14px;
    }
}
/* Header Styles */
.header {
    background: #FFFFFF;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.logo-img {
    width: 60px;
    height: auto;
}

.logo-text h1 {
    color: #008080;
    font-size: 28px;
    margin: 0;
}

.logo-text h1 span {
    color: #D4AF37;
}

.logo-text p {
    color: #666;
    font-size: 12px;
    margin: 0;
}

.logo-text .tagline {
    color: #D4AF37;
    font-size: 10px;
    letter-spacing: 2px;
    margin-top: 3px;
}

@media (max-width: 600px) {
    .logo-container {
        flex-direction: column;
        text-align: center;
    }
    .logo-text {
        text-align: center;
    }
}

/* Navigation - Teal Background */
.nav {
    background: #008080;
    padding: 1px 0;
    position: sticky;
    top: 50px;
    z-index: 999;
}

.nav a {
    color: white;
    text-decoration: none;
    padding: 6px 15px;
    margin: 0 3px;
    border-radius: 20px;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 13px;
    display: inline-block;
}

.nav a:hover {
    background: #D4AF37;
    color: #008080;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .nav {
        padding: 10px 0;
        position: static;
    }
    .nav a {
        padding: 5px 10px;
        font-size: 11px;
        margin: 0 2px;
    }
}


/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: #008080;
    font-size: 2.2em;
    margin-bottom: 15px;
}

.gold-line {
    width: 80px;
    height: 3px;
    background: #D4AF37;
    margin: 0 auto;
}

/* Services Grid */
.services-section {
    padding: 60px 0;
    background: #FFFFFF;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e0e0e0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #D4AF37;
    color: #008080;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    color: #008080;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.service-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 14px;
}

.service-features {
    list-style: none;
    margin: 10px 0;
}

.service-features li {
    padding: 4px 0;
    color: #555;
    font-size: 13px;
}

.service-features li:before {
    content: "✓";
    color: #D4AF37;
    font-weight: bold;
    margin-right: 8px;
}

.service-price {
    font-size: 1.3em;
    color: #008080;
    font-weight: bold;
    margin: 15px 0;
}

.service-price span {
    font-size: 0.7em;
    color: #999;
}

.btn-book {
    background: #008080;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    width: 100%;
}

.btn-book:hover {
    background: #D4AF37;
    color: #008080;
}

/* Why Choose Us Section - Brand Name Colors */
.why-choose-section .section-title h2 {
    color: #008080; /* Teal for Domesti */
}

.why-choose-section .section-title h2 span {
    color: #D4AF37; /* Gold for CARE+ */
}

/* Why Choose Us Section */
.why-choose-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    transition: transform 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h4 {
    color: #008080;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.feature-card p {
    color: #666;
    line-height: 1.5;
    font-size: 14px;
}

/* About Section */
.about-section {
    background: white;
    padding: 60px 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-header h2 {
    color: #008080;
    font-size: 2.2em;
    margin-bottom: 15px;
}

/* Why Choose Us Section - Brand Name Colors */
.why-choose-section .section-title h2 {
    color: #008080; /* Teal for Domesti */
}

.why-choose-section .section-title h2 span {
    color: #D4AF37; /* Gold for CARE+ */
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h3 {
    color: #008080;
    font-size: 1.6em;
    margin-bottom: 20px;
}

.about-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    list-style: none;
    margin-top: 25px;
}

.about-features li {
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-features li:before {
    content: "✓";
    color: #D4AF37;
    font-weight: bold;
    font-size: 18px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Stats Section */
.stats-section {
    background: #008080;
    color: white;
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #D4AF37;
}

/* Form Styles */
.form-container {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 40px auto;
    border-top: 4px solid #D4AF37;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #008080;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
}

.btn {
    background: #D4AF37;
    color: #008080;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
    width: 100%;
}

.btn:hover {
    background: #008080;
    color: #D4AF37;
}

/* Footer - Teal Background */
.footer {
    background: #008080;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer h4 {
    color: #D4AF37;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.footer p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    font-size: 13px;
}

.footer a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
    font-size: 13px;
}

.footer a:hover {
    color: #D4AF37;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
    color: white;
}

.social-icons a:hover {
    background: #D4AF37;
    transform: translateY(-3px);
    color: #008080;
}

.social-icons i {
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

/* Scroll offset */
html {
    scroll-padding-top: 140px;
    scroll-behavior: smooth;
}

#booking {
    scroll-margin-top: 140px;
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 20px;
        margin: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}