/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #fff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-small {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #111;
}

.section-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #111;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 42rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.25rem;
    }
    .section-header h3 {
        font-size: 1.875rem;
    }
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: linear-gradient(to right, #8B4513, #CD853F);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(to right, #A0522D, #DAA520);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.btn-secondary {
    width: 100%;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: linear-gradient(to right, #8B4513, #CD853F);
    color: white;
}

.btn-secondary:hover {
    background: linear-gradient(to right, #A0522D, #DAA520);
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #8B4513;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: #f9fafb;
}

.btn-white-pricing {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: white;
    color: #8B4513;
}

.btn-white-pricing:hover {
    background: #f9fafb;
}

/* Header */
.header {
    background-color: #111;
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo-text {
    font-size: 1.75rem;
    font-weight: bold;
    background: linear-gradient(to right, #CD853F, #DAA520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-image{
    width: 10rem;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-desktop a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-desktop a:hover {
    color: white;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 24px;
    padding: 0;
    cursor: pointer;
}

.hamburger {
    width: 100%;
    height: 2px;
    background-color: white;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-menu-btn.active .hamburger {
    background-color: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-btn.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #1a1a1a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-mobile a:hover {
    color: white;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
        align-items: center;
    }

    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(to bottom right, #2a4858, #3d5a6c, #5a7c91);
    color: white;
    padding: 0 1.5rem;
    overflow: hidden;
}

.hero-container {
    max-width: 1152px;
    max-height: 750px;
    margin: 0 auto;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: end;
    min-height: 600px;
    padding: 4rem 0;
}

.hero-content {
    text-align: center;
    align-self: center;
}

.hero-content h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 42rem;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 10;
    height: 100%;
}

.hero-image-wrapper > div {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.hero-image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(205, 133, 63, 0.3), rgba(218, 165, 32, 0.3));
    border-radius: 9999px;
    filter: blur(60px);
    transform: translate(1rem, 1rem);
}

.hero-image {
    position: relative;
    width: 100%;
    height: auto;
    max-width: 20rem;
    object-fit: contain;
    object-position: bottom;
}

.hero-orb {
    position: absolute;
    border-radius: 9999px;
    filter: blur(60px);
}

.hero-orb-1 {
    top: 5rem;
    left: 2.5rem;
    width: 16rem;
    height: 16rem;
    background-color: rgba(205, 133, 63, 0.2);
}

.hero-orb-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 20rem;
    height: 20rem;
    background-color: rgba(218, 165, 32, 0.2);
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
        min-height: 700px;
        padding: 5rem 0;
    }

    .hero-content {
        text-align: left;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.25rem;
    }

    .hero-image-wrapper {
        justify-content: flex-end;
    }

    .hero-image {
        max-width: 24rem;
    }
}

@media (min-width: 1024px) {
    .hero-grid {
        min-height: 800px;
    }

    .hero-content h1 {
        font-size: 3.75rem;
    }

    .hero-image {
        max-width: 28rem;
    }
}

/* Services Section */
.services {
    padding: 5rem 1.5rem;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    padding: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    background-color: rgba(249, 250, 251, 0.5);
    transition: all 0.3s ease;
}

.service-card:hover {
    background-color: #f9fafb;
    border-color: rgba(205, 133, 63, 0.3);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to bottom right, rgba(205, 133, 63, 0.2), rgba(218, 165, 32, 0.2));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.service-icon svg {
    color: #8B4513;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .services {
        padding: 7rem 1.5rem;
    }

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

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Rental Section */
.rental {
    padding: 5rem 1.5rem;
    background-color: white;
}

.rental-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.benefit-card {
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: rgba(205, 133, 63, 0.3);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(to bottom right, rgba(205, 133, 63, 0.2), rgba(218, 165, 32, 0.2));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-icon svg {
    color: #8B4513;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
}

.rental-package {
    background: linear-gradient(to bottom right, #8B4513, #CD853F);
    border-radius: 1rem;
    padding: 3rem 2rem;
    color: white;
    text-align: center;
    margin-bottom: 4rem;
}

.rental-package h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.package-price {
    margin-bottom: 1.5rem;
}

.package-price .price {
    font-size: 3rem;
    font-weight: bold;
}

.package-price .period {
    font-size: 1.5rem;
    margin-left: 0.5rem;
}

.package-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.package-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 48rem;
    margin: 0 auto 2rem;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item svg {
    flex-shrink: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to bottom right, #8B4513, #CD853F);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: #6b7280;
}

@media (min-width: 768px) {
    .rental {
        padding: 7rem 1.5rem;
    }

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

    .rental-package {
        padding: 3rem;
    }

    .rental-package h3 {
        font-size: 1.875rem;
    }

    .package-price .price {
        font-size: 3.75rem;
    }

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

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

@media (min-width: 1024px) {
    .rental-benefits {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Pricing Section */
.pricing {
    padding: 5rem 1.5rem;
    background-color: #f9fafb;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.pricing-card {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.pricing-card.highlighted {
    background: linear-gradient(to bottom right, #8B4513, #CD853F);
    color: white;
    transform: scale(1);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #DAA520;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.pricing-card.highlighted h3 {
    color: white;
}

.plan-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.pricing-card.highlighted .plan-description {
    color: rgba(255, 255, 255, 0.9);
}

.price-info {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
}

.price-custom {
    font-size: 1.25rem;
    font-weight: 600;
}

.currency {
    color: #6b7280;
}

.pricing-card.highlighted .currency {
    color: rgba(255, 255, 255, 0.8);
}

.period {
    color: #6b7280;
    margin-bottom: 2rem;
    display: block;
}

.pricing-card.highlighted .period {
    color: rgba(255, 255, 255, 0.8);
}

.features-list {
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.features-list svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: #8B4513;
}

.pricing-card.highlighted .features-list svg {
    color: white;
}

.features-list span {
    color: #4b5563;
}

.pricing-card.highlighted .features-list span {
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
    .pricing {
        padding: 7rem 1.5rem;
    }

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

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-card.highlighted {
        transform: scale(1.05);
    }
}

/* References Section */
.references {
    padding: 5rem 1.5rem;
    background-color: white;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.reference-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.reference-card:hover {
    border-color: rgba(205, 133, 63, 0.3);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.reference-logo {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to bottom right, rgba(205, 133, 63, 0.2), rgba(218, 165, 32, 0.2));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #8B4513;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.reference-card:hover .reference-logo {
    background: linear-gradient(to bottom right, rgba(205, 133, 63, 0.3), rgba(218, 165, 32, 0.3));
}

.reference-card p {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
}

.reference-note {
    text-align: center;
}

.reference-note > p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.tip {
    display: inline-block;
    padding: 1.5rem;
    background: linear-gradient(to right, rgba(205, 133, 63, 0.1), rgba(218, 165, 32, 0.1));
    border-radius: 0.5rem;
    border: 1px solid rgba(205, 133, 63, 0.2);
}

.tip p {
    font-size: 0.875rem;
    color: #374151;
}

@media (min-width: 768px) {
    .references {
        padding: 7rem 1.5rem;
    }

    .references-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .references-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Contact Section */
.contact {
    padding: 5rem 1.5rem;
    background-color: #f9fafb;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
}

.contact-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(to bottom right, rgba(205, 133, 63, 0.2), rgba(218, 165, 32, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-icon svg {
    color: #8B4513;
}

.contact-item h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #6b7280;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #8B4513;
}

.contact-item p {
    color: #6b7280;
}

.contact-form-wrapper {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: transparent;
    box-shadow: 0 0 0 2px #CD853F;
}

.form-group textarea {
    resize: none;
}

.contact-form button {
    width: 100%;
}

@media (min-width: 768px) {
    .contact {
        padding: 7rem 1.5rem;
    }

    .contact-info {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-form-wrapper {
        padding: 2.5rem;
    }

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

    .contact-form button {
        width: auto;
    }
}

/* Footer */
.footer {
    background-color: #111;
    color: white;
    padding: 2.5rem 1.5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}
