* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.header {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%), url("img/hero-photo.jpg");
    color: white;
    padding: 20px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: sticky;
    top: 0;
    z-index: 99;
}
.header.collapsed {
    padding: 15px 20px;
}
.header h1 {
    font-size: 3em;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}
.header.collapsed h1 {
    font-size: 1.5em;
    margin-bottom: 0;
}
.header p {
    font-size: 1.3em;
    opacity: 0.95;
    transition: all 0.4s ease;
    max-height: 100px;
    overflow: hidden;
}
.header.collapsed p {
    max-height: 0;
    opacity: 0;
    margin: 0;
}
.nav {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
    transition: all 0.3s ease;
}
.nav.shrink {
    padding: 5px 0;
}
.nav.shrink .nav-container {
    gap: 2px;
}
.nav.shrink a {
    padding: 5px 15px;
    font-size: 0.9em;
}
.nav-container {
    max-width: 1200;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0 20px;
    transition: all 0.3s ease;
}
.nav a {
    color: #ff6600;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s;
}
.nav a:hover, .nav a:focus {
    background: #ff6600;
    color: white;
    outline: 2px solid #ff6600;
    outline-offset: 2px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}
.section {
    margin-bottom: 80px;
}
.section h2 {
    font-size: 2.5em;
    color: #ff6600;
    margin-bottom: 30px;
    text-align: center;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    aspect-ratio: 4/3;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    color: #999;
    transition: all 0.3s;
}
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.portfolio-item:hover, .portfolio-item:focus-within {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}
.benefit-card:hover, .benefit-card:focus-within {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255,102,0,0.2);
}
.benefit-card h3 {
    color: #ff6600;
    font-size: 1.5em;
    margin-bottom: 15px;
}
.benefit-card .icon {
    font-size: 3em;
    margin-bottom: 20px;
    display: block;
}
.stats {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.stat-item h3 {
    font-size: 3em;
    margin-bottom: 10px;
}
.testimonials-section {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-style: italic;
}
.testimonial-card p {
    margin-bottom: 15px;
}
.testimonial-card cite {
    font-style: normal;
    font-weight: bold;
    color: #ff6600;
}
.booking-section {
    background: #fdf0d5;
    padding: 60px 20px;
    text-align: center;
}
.booking-info {
    max-width: 800px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}
.price-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #ff6600;
    transition: all 0.3s;
}
.price-card:hover, .price-card:focus-within {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255,102,0,0.2);
}
.price-card h3 {
    font-size: 1.8em;
    color: #ff6600;
    margin-bottom: 10px;
}
.price-card .price {
    font-size: 2.5em;
    font-weight: bold;
    color: #333;
    margin: 20px 0;
}
.price-card ul {
    list-style: none;
    text-align: left;
    margin: 20px 0;
}
.price-card li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.price-card li:before {
    content: "✓ ";
    color: #ff6600;
    font-weight: bold;
}
.payment-details {
    background: #fdf0d5;
    border: 2px solid #ff6600;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}
.payment-details h3 {
    color: #ff6600;
    margin-bottom: 20px;
}
.bank-info {
    text-align: left;
    display: inline-block;
    margin: 20px 0;
}
.bank-info p {
    padding: 10px 0;
    font-size: 1.1em;
}
.bank-info strong {
    display: inline-block;
    width: 150px;
    color: #ff6600;
}
/* Simple contact form - replace with full integration like Formspree or Google Forms */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}
.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.contact-form button {
    background: #ff6600;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
}
.contact-form button:hover {
    background: #ff8533;
}
.cta-button {
    background: #ff6600;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}
.cta-button:hover, .cta-button:focus {
    background: #ff8533;
    transform: scale(1.05);
    outline: 2px solid #ff6600;
    outline-offset: 2px;
}
.contact-section {
    text-align: center;
    padding: 40px 20px;
}
.contact-info {
    margin-top: 30px;
    font-size: 1.2em;
}
.contact-info a {
    color: #ff6600;
    text-decoration: none;
    font-weight: bold;
}
.contact-info a:hover, .contact-info a:focus {
    text-decoration: underline;
    outline: 2px solid #ff6600;
    outline-offset: 2px;
}
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 30px 20px;
}
.social-links {
    margin-top: 10px;
}
.social-links a {
    color: white;
    margin: 0 10px;
    font-size: 1.5em;
    text-decoration: none;
}
.social-links a:hover {
    color: #ff6600;
}
@media (max-width: 768px) {
    .header h1 {
        font-size: 1.8em;
    }
    .section h2 {
        font-size: 1.8em;
    }
    .nav-container {
        flex-direction: row;
        gap: 10px;
    }
}
/* ...existing code... */
:root {
    /* adjust this value to the total height of your sticky header + nav (px) */
    --header-offset: 140px;
}

/* smaller offset for narrow screens if header is shorter */
@media (max-width: 768px) {
    :root {
        --header-offset: 110px;
    }
}

/* prevent sticky header from covering anchor targets */
.section,
.booking-section,
.testimonials-section,
.contact-section,
.stats,
.section h2,
[id] {
    scroll-margin-top: var(--header-offset);
}

/* optional: smooth scrolling for nicer UX */
html {
    scroll-behavior: smooth;
}