:root {
    --primary-dark: #1a365d;
    --primary: #2c5282;
    --primary-light: #4a7ab0;
    --accent: #ed8936;
    --accent-hover: #dd6b20;
    --text-dark: #1a202c;
    --text-muted: #4a5568;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-light);
}

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

/* Top Bar */
.top-bar {
    background: var(--primary-dark);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

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

.top-bar a {
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

.contact-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Header */
header {
    background: #f8fbff;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(12, 38, 87, 0.08);
    border-bottom: 1px solid rgba(12, 38, 87, 0.06);
}

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

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

.logo img {
    height: 52px;
    width: auto;
    display: block;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 2px;
}

.main-nav {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.main-nav a {
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(44, 82, 130, 0.08);
    color: var(--primary-dark);
}

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

.menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: all 0.2s ease;
}

.menu-toggle:hover span {
    background: var(--accent);
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 999;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: #f8fbff;
    padding: 70px 24px 24px;
    box-shadow: -6px 0 24px rgba(12, 38, 87, 0.12);
    transition: right 0.2s ease;
    z-index: 1000;
}

.sidebar-menu.active {
    right: 0;
}

.sidebar-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: var(--primary-dark);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.sidebar-menu a {
    display: block;
    color: var(--primary-dark);
    padding: 12px 0;
    font-weight: 600;
    border-bottom: 1px solid rgba(12, 38, 87, 0.08);
}

.sidebar-menu a.active,
.sidebar-menu a:hover {
    color: var(--accent);
}

/* Hero Section */
.hero {
    background: linear-gradient(100deg, #f8fbff 0%, #eef4ff 55%, #e5efff 100%);
    color: var(--text-dark);
    padding: 72px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px 380px at 80% 30%, rgba(44, 82, 130, 0.22), rgba(44, 82, 130, 0) 70%),
        radial-gradient(480px 320px at 85% 75%, rgba(237, 137, 54, 0.16), rgba(237, 137, 54, 0) 70%),
        conic-gradient(from 210deg at 70% 40%, rgba(44, 82, 130, 0.12), rgba(44, 82, 130, 0) 40%, rgba(237, 137, 54, 0.14), rgba(237, 137, 54, 0) 75%);
    opacity: 0.9;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(248,251,255,0) 0%, rgba(248,251,255,0.85) 55%, rgba(248,251,255,1) 100%);
    z-index: 0;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 800;
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-highlight {
    background: var(--accent);
    color: white;
    padding: 14px 24px;
    border-radius: 10px;
    display: inline-block;
    font-weight: 600;
    margin: 24px 0;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(237, 137, 54, 0.3);
}

.hero-cta {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
}

.hero-note {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: -28px;
}

.hero-note a {
    font-weight: 600;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 24px rgba(12, 38, 87, 0.18));
    position: relative;
    z-index: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--accent-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(237, 137, 54, 0.4);
}

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

.btn-secondary:hover {
    background: var(--bg-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-text {
    background: transparent;
    color: var(--primary);
    padding: 14px 28px;
}

.btn-text:hover {
    background: transparent;
    color: var(--primary-dark);
    transform: none;
    text-decoration: underline;
}

/* Quick Contact Box */
.contact-section {
    background: #f6fafd;
    padding-top: 40px;
    padding-bottom: 40px;
}

.quick-contact {
    background: #f6fafd;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    margin-top: -90px;
    position: relative;
    z-index: 2;
}

.quick-contact h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-details a {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-note {
    margin-top: 6px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f6fafd;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.service-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 25px;
}

.service-header h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.service-body {
    padding: 25px;
}

.service-body ul {
    list-style: none;
}

.service-body li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-body li:last-child {
    border-bottom: none;
}

.service-body li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

.service-link {
    display: inline-flex;
    margin-top: 16px;
    font-weight: 600;
    color: var(--primary);
}

.service-link:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.bullet-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bullet-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.bullet-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

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

.placeholder-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.placeholder-card img {
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
    display: block;
    margin: 0 auto 16px;
}

.image-placeholder {
    background: #f6fafd;
    border: 2px dashed #cbd5e0;
    border-radius: 12px;
    color: var(--text-muted);
    font-weight: 600;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-bottom: 16px;
}

.container-size-image {
    margin-top: 30px;
    text-align: center;
}

.container-size-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: inline-block;
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 30px;
}

.info-column {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-column h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.info-column p {
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.6;
}

.info-note {
    color: var(--primary-dark);
    font-weight: 600;
}
.image-placeholder--hero {
    min-height: 260px;
}

.image-placeholder--tall {
    min-height: 260px;
}

.section-cta {
    margin-top: 30px;
    text-align: center;
}

/* Pricing Table */
.pricing {
    padding: 80px 0;
    background: var(--bg-light);
}

.pricing-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.pricing-table-content {
    padding: 30px;
}

.pricing-note {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 20px;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th {
    background: var(--primary-dark);
    color: white;
    padding: 18px 20px;
    text-align: left;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
}

.pricing-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:hover td {
    background: var(--bg-light);
}

.price {
    font-weight: 600;
    color: var(--primary);
}

/* Opening Hours */
.hours {
    padding: 80px 0;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: start;
}

.hours-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.hours-card h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.hours-list li:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
}

.time {
    color: var(--primary);
    font-weight: 600;
}

.closed {
    color: var(--accent);
}

.warning-box {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    text-align: center;
    font-weight: 600;
}

/* Tips Section */
.tips-list {
    list-style: none;
}

.tips-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
}

.tips-list li:last-child {
    border-bottom: none;
}

.tips-list li::before {
    content: '💡';
    position: absolute;
    left: 0;
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
}

.footer-section p, .footer-section li {
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
}

.footer-links a:hover {
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .top-bar .container {
        justify-content: center;
        text-align: center;
    }
    
    .main-nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .quick-contact {
        margin-top: -40px;
        padding: 20px;
    }
    
    .features, .services, .pricing, .hours {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .pricing-table {
        overflow-x: auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Print styles */
@media print {
    .top-bar, nav, .hero-cta {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
}
