/* Reset and Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange-primary: #f97316;
    --orange-dark: #ea580c;
    --orange-light: #fb923c;
    --orange-pale: #fed7aa;
    --orange-bg: #fff7ed;
    --warm-cream: #fffbf5;
    --warm-beige: #fef3e2;
    --charcoal: #292524;
    --gray-dark: #44403c;
    --gray-medium: #78716c;
    --gray-light: #d6d3d1;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background: white;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 32px;
}

.logo-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--charcoal);
}

.main-nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--orange-primary);
}

.nav-link-cta {
    background: var(--orange-primary);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
}

.nav-link-cta:hover {
    background: var(--orange-dark);
    color: white;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    margin-top: 80px;
    min-height: 90vh;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--orange-bg) 100%);
    position: relative;
    overflow: hidden;
}

.geometric-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.geo-shape {
    position: absolute;
    opacity: 0.15;
}

.geo-circle-1 {
    width: 400px;
    height: 400px;
    background: var(--orange-primary);
    border-radius: 50%;
    top: -150px;
    right: 10%;
    filter: blur(60px);
}

.geo-circle-2 {
    width: 300px;
    height: 300px;
    background: var(--orange-light);
    border-radius: 50%;
    bottom: 10%;
    left: 5%;
    filter: blur(50px);
}

.geo-triangle {
    width: 0;
    height: 0;
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-bottom: 350px solid var(--orange-pale);
    position: absolute;
    top: 20%;
    right: -100px;
    transform: rotate(30deg);
    opacity: 0.1;
}

.hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    background: white;
    color: var(--orange-primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
}

.hero-heading {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.highlight {
    color: var(--orange-primary);
    position: relative;
}

.hero-text {
    font-size: 18px;
    color: var(--gray-dark);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--orange-primary);
    color: white;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--charcoal);
    border: 2px solid var(--gray-light);
}

.btn-secondary:hover {
    border-color: var(--orange-primary);
    color: var(--orange-primary);
}

.hero-image-area {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-frame img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--orange-primary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
}

/* Stats Section */
.stats-section {
    background: var(--charcoal);
    padding: 60px 0;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--orange-primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--gray-light);
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 120px 40px;
    background: white;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    background: var(--orange-bg);
    color: var(--orange-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1.2;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-box {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.service-box:nth-child(even) {
    direction: rtl;
}

.service-box:nth-child(even) > * {
    direction: ltr;
}

.service-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.service-image-wrapper::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: var(--orange-primary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.2;
}

.service-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.8), rgba(234, 88, 12, 0.8));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-box:hover .service-overlay {
    opacity: 1;
}

.service-number {
    font-size: 120px;
    font-weight: 800;
    color: white;
    opacity: 0.5;
}

.service-info {
    padding: 20px 0;
}

.service-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.service-description {
    font-size: 17px;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    padding-left: 32px;
    position: relative;
    color: var(--gray-medium);
    font-size: 15px;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--orange-primary);
    font-weight: 700;
}

/* About Section */
.about-section {
    padding: 120px 40px;
    background: var(--warm-beige);
}

.about-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-container {
    position: relative;
}

.about-image-container img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-shape {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--orange-primary);
    border-radius: 20px;
    z-index: -1;
    transform: rotate(15deg);
}

.about-content-side .section-tag {
    display: block;
    text-align: left;
    margin-bottom: 16px;
}

.about-content-side .section-title {
    margin-bottom: 24px;
}

.about-intro {
    font-size: 18px;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 40px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.benefit-item {
    display: flex;
    gap: 20px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--orange-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.benefit-content p {
    font-size: 15px;
    color: var(--gray-medium);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-bg-image {
    position: absolute;
    inset: 0;
}

.cta-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(41, 37, 36, 0.95), rgba(68, 64, 60, 0.92));
}

.cta-content-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 40px;
}

.geo-accent-left,
.geo-accent-right {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 3px solid var(--orange-primary);
    opacity: 0.3;
}

.geo-accent-left {
    top: -50px;
    left: -50px;
    border-radius: 50%;
}

.geo-accent-right {
    bottom: -50px;
    right: -50px;
    transform: rotate(45deg);
}

.cta-heading {
    font-size: 52px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtext {
    font-size: 20px;
    color: var(--gray-light);
    margin-bottom: 40px;
}

.btn-cta-large {
    background: var(--orange-primary);
    color: white;
    padding: 20px 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

.btn-cta-large:hover {
    background: var(--orange-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.5);
}

/* Contact Section */
.contact-section {
    padding: 120px 40px;
    background: white;
}

.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-heading {
    font-size: 48px;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.contact-intro {
    font-size: 17px;
    color: var(--gray-dark);
    margin-bottom: 48px;
    line-height: 1.7;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-block {
    display: flex;
    gap: 20px;
}

.info-icon {
    width: 56px;
    height: 56px;
    background: var(--orange-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.info-text p {
    font-size: 15px;
    color: var(--gray-medium);
    line-height: 1.6;
}

.contact-form-side {
    background: var(--warm-cream);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.form-heading {
    font-size: 32px;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 32px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.btn-form-submit {
    background: var(--orange-primary);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-form-submit:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
}

/* Footer */
.footer {
    background: var(--charcoal);
    padding: 60px 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-logo .logo-icon {
    font-size: 32px;
}

.footer-logo span:last-child {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.footer-tagline {
    color: var(--gray-light);
    font-size: 14px;
}

.footer-right {
    text-align: right;
}

.footer-right p {
    color: var(--gray-light);
    font-size: 14px;
    margin-bottom: 4px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }

    .menu-btn {
        display: flex;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-heading {
        font-size: 48px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-box {
        grid-template-columns: 1fr;
    }

    .service-box:nth-child(even) {
        direction: ltr;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

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

@media (max-width: 640px) {
    .hero-heading {
        font-size: 36px;
    }

    .section-title {
        font-size: 36px;
    }

    .cta-heading {
        font-size: 32px;
    }

    .contact-form-side {
        padding: 32px;
    }
}
