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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000000;
    z-index: 1000;
    border-bottom: 1px solid #333333;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-text h1 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    letter-spacing: 1px;
}

.brand-lines {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.brand-lines .line {
    width: 25px;
    height: 2px;
    background: #f97316;
}

.brand-subtitle {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ffffff;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #f97316;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f97316;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-link {
    color: #ffffff;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.social-link:hover {
    color: #f97316;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #000000;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 8s ease-in-out;
}

.hero-bg-layer.active {
    opacity: 0.7;
    transform: scale(1.05);
}

.hero-bg-layer-1 {
    z-index: 1;
}

.hero-bg-layer-2 {
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
}

.hero-content {
    text-align: center;
    color: #ffffff;
}

.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    margin-top: 4rem;
}

.hero-logo-img {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: contain;
    margin-bottom: 1rem;
    padding: 20px;
}

.hero-title {
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    letter-spacing: 2px;
}

.hero-lines {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.hero-lines .line {
    width: 60px;
    height: 3px;
    background: #f97316;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #ffffff;
}

.hero-heading {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #cccccc;
    margin-bottom: 3rem;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #f97316;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #111111;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.section-header p {
    color: #cccccc;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: #000000;
    border: 1px solid #333333;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #f97316;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-card.featured {
    border-color: #f97316;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #f97316;
    color: #ffffff;
    padding: 0.25rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.service-icon {
    color: #f97316;
    margin-bottom: 1.5rem;
    overflow: visible;
}

.service-icon svg {
    overflow: visible;
}

.service-card h3 {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.service-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 900;
    color: #f97316;
    letter-spacing: 1px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #000000;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 3rem;
    font-weight: 900;
    letter-spacing: 2px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #111111;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #f97316;
    transform: translateY(-2px);
}

.contact-icon {
    color: #f97316;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #cccccc;
}

.contact-item p, .contact-item p * {
    color: #cccccc !important;
    text-decoration: none !important;
}

.contact-item small {
    color: #888888;
    font-size: 0.9rem;
}

.contact-cta {
    display: block;
    margin: 0 auto;
    max-width: 400px;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 0;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid #333;
    overflow-x: hidden;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #333;
}

.modal-header h3 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #cccccc;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #f97316;
}

.modal-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 15px;
    background: transparent;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.checkbox-item:hover {
    background: #2a2a2a;
    border-color: #f97316;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid #666;
    border-radius: 6px;
    margin-right: 15px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: #2a2a2a;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: #f97316;
    border-color: #f97316;
}


.service-name {
    color: #ffffff;
    font-weight: 500;
}

.checkbox-item input[type="checkbox"]:checked ~ .service-name {
    color: #f97316;
}

input[type="date"] {
    width: 100%;
    padding: 12px 15px;
    background: #2a2a2a;
    border: 2px solid #444;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

input[type="date"]:focus {
    outline: none;
    border-color: #f97316;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

/* Custom date picker colors */
input[type="date"]::-webkit-datetime-edit {
    color: #ffffff;
}

input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    background: #2a2a2a;
}

input[type="date"]::-webkit-datetime-edit-text {
    color: #cccccc;
}

input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field {
    color: #ffffff;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(15deg);
    cursor: pointer;
    opacity: 0.8;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Dark theme for date picker popup with orange accents */
input[type="date"] {
    color-scheme: dark;
    accent-color: #f97316;
}

/* Attempt to override calendar styles - limited browser support */
input[type="date"]::-webkit-calendar-picker-indicator {
    accent-color: #f97316;
}

/* Try to target calendar popup elements */
::-webkit-calendar-picker-indicator {
    accent-color: #f97316 !important;
}

/* Global accent color override for date elements */
* {
    accent-color: #f97316;
}

/* Alternative approach for calendar styling */
input[type="date"]:focus::-webkit-calendar-picker-indicator {
    filter: hue-rotate(180deg) saturate(2);
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.modal-actions button {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        align-items: stretch;
    }
    
    .modal-actions button {
        width: 100%;
        padding: 15px;
        font-size: 16px;
    }
    
    .checkbox-item {
        padding: 12px;
    }
    
    .checkmark {
        width: 20px;
        height: 20px;
    }
    
    input[type="date"] {
        font-size: 16px;
        padding: 15px;
    }
    
    input[type="date"]::-webkit-calendar-picker-indicator {
        width: 20px;
        height: 20px;
    }
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: #111111;
    border-top: 1px solid #333333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-brand h4 {
    color: #ffffff;
    font-weight: 700;
    margin: 0;
}

.footer-brand p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

.footer-credits p {
    color: #888888;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #000000;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        border-top: 1px solid #333333;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-link {
        padding: 1rem;
        font-size: 1.2rem;
    }

    .nav-social {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero-logo-img {
        width: 200px;
        height: 200px;
    }

    .hero-lines .line {
        width: 40px;
        height: 2px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.service-card {
    animation: fadeInUp 0.8s ease-out;
}

.contact-item {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth transitions for all interactive elements */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}