/* ========================================
   COLOR PALETTE - Based on Logo Gradient
   ======================================== */
:root {
    /* Logo Gradient Colors */
    --color-yellow: #f7ce55;        
    --color-orange: #fdb20f;        
    --color-red-orange: #ff6600;    
    
    /* Gradient Combinations */
    --gradient-primary: linear-gradient(90deg, var(--color-yellow), var(--color-orange), var(--color-red-orange));
    --gradient-primary-45: linear-gradient(45deg, var(--color-yellow), var(--color-orange), var(--color-red-orange));
    --gradient-primary-135: linear-gradient(135deg, var(--color-yellow), var(--color-orange), var(--color-red-orange));
    --gradient-text: linear-gradient(90deg, var(--color-yellow), var(--color-orange), var(--color-red-orange));
    --gradient-simple: linear-gradient(45deg, var(--color-orange), var(--color-yellow));
    
    /* Background Colors */
    --bg-black: #000000;
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --bg-input: #2a2a2a;
    --bg-overlay: rgba(0, 0, 0, 0.95);
    
    /* Text Colors */
    --text-white: #FFFFFF;
    --text-light: #E0E0E0;
    --text-gray: #666666;
    --text-dark: #000000;
    
    /* Border Colors */
    --border-gray: #444444;
    --border-orange-light: rgba(255, 157, 0, 0.2);
    
    /* Shadow Colors */
    --shadow-orange: rgba(255, 157, 0, 0.3);
    --shadow-orange-light: rgba(255, 157, 0, 0.2);
    --shadow-orange-strong: rgba(255, 157, 0, 0.4);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-black);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-overlay);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-orange-light);
}

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

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

.logo-header {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.company-name:hover {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--color-orange);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--bg-black) 0%, var(--bg-card) 100%);
    padding-top: 80px; /* Account for fixed header */
}

.hero-content {
    z-index: 2;
}

.hero-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    object-fit: contain;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    min-height: 80px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero h1:hover {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gradient-primary-45);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--shadow-orange);
    cursor: pointer;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-orange);
    margin: 0;
    text-align: center;
}

.services-section {
    padding: 80px 0;
    background: var(--bg-dark);
    text-align: center;
}

.section-lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 20px;
    margin-bottom: 40px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.service-card {
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 460px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover,
.service-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(255, 157, 0, 0.18);
    border-color: rgba(255, 157, 0, 0.25);
}

.service-card:focus-visible {
    outline: 2px solid rgba(255, 208, 70, 0.9);
    outline-offset: 4px;
}

.service-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

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

.service-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1 1 auto;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    will-change: opacity;
}

.service-body h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
}

.service-body p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.78);
}

.service-card:hover .service-body,
.service-card:focus-within .service-body,
.service-card.is-active .service-body {
    opacity: 0;
    visibility: hidden;
}

.service-hover {
    position: absolute;
    inset: 0;
    background: rgba(14, 14, 14, 0.98);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 180px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
    will-change: opacity;
    z-index: 2;
}

.service-card:hover .service-hover,
.service-card:focus-within .service-hover,
.service-card.is-active .service-hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.service-hover-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 180px;
    overflow: hidden;
}

.service-hover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.service-hover-content {
    flex: 1 1 auto;
    padding: 24px;
}

.service-hover-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
}

.service-link {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 157, 0, 0.14);
    color: rgba(255, 208, 70, 0.95);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.service-link:hover,
.service-link:focus-visible {
    background: rgba(255, 157, 0, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 157, 0, 0.25);
}

.muted-text {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
}

.services-cta {
    margin: 44px auto 12px;
    max-width: 680px;
    text-align: center;
    font-size: 1.05rem;
}

.services-cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 26px;
    border-radius: 999px;
    background: rgba(255, 157, 0, 0.18);
    color: rgba(255, 208, 70, 0.95);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto;
}

.services-cta-link:hover,
.services-cta-link:focus-visible {
    background: rgba(255, 157, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(255, 157, 0, 0.28);
}

.services-note {
    margin-top: 10px;
}

.muted-text a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.35);
}

.muted-text a:hover,
.muted-text a:focus-visible {
    text-decoration-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 980px) {
    .services-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .service-card {
        min-height: 420px;
    }
.contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .contact-info {
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .contact-section .contact-info h2,
    .contact-section .contact-info p {
        text-align: center;
        width: 100%;
    }

    .contact-prefer-email,
    .contact-prefer-email a {
        text-align: center;
    }

    .contact-form {
        padding: 30px 20px;
    }


    .service-hover-content {
        margin-top: auto;
        padding: 24px 24px 28px;
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--bg-black);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto;
    transition: all 0.3s ease;
    object-fit: cover;
    background: none;
    border: none;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-orange);
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.highlight {
    color: var(--color-orange);
    font-weight: 600;
}

.highlight-yellow {
    color: var(--color-orange);
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-section .contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-orange);
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.contact-prefer-email {
    margin-top: 8px;
    text-align: left;
}

.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--border-orange-light);
}

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

.form-group label {
    display: block;
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--bg-input);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 10px var(--shadow-orange-light);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--gradient-primary-45);
    color: var(--text-dark);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-orange-strong);
}

/* Footer */
.footer {
    background: var(--bg-black);
    padding: 60px 0 30px;
    text-align: center;
}

.footer .contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.footer .contact-icon {
    font-size: 1.5rem;
    color: var(--color-orange);
    transition: all 0.3s ease;
}

.footer .contact-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer .contact-link:hover {
    color: var(--color-orange);
}

.footer .contact-item:hover .contact-icon {
    transform: scale(1.2);
    color: var(--color-orange);
}

.footer .contact-item-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.footer .contact-item-disabled:hover .contact-icon {
    transform: none;
    color: var(--color-orange);
}

.footer .contact-item-disabled .contact-link {
    color: var(--text-gray);
    cursor: not-allowed;
}

.footer .contact-item-disabled .contact-link:hover {
    color: var(--text-gray);
}

.footer .contact-item-disabled .contact-link small {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 400;
}

.copyright {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle.active {
    transform: rotate(90deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-overlay);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 999;
        pointer-events: none;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Push content down when menu is open */
    body.menu-open {
        padding-top: 200px;
        transition: padding-top 0.3s ease;
    }
    
    body.menu-open .hero {
        margin-top: 200px;
        transition: margin-top 0.3s ease;
    }
    
    .company-name {
        font-size: 1.2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .profile-image {
        width: 150px;
        height: 150px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-lead {
        font-size: 1rem;
    }

    .services-grid {
        gap: 20px;
    }

    .service-body {
        padding: 22px;
    }

    .services-cta {
        margin-top: 32px;
        font-size: 1rem;
    }

    .services-cta-link {
        width: 100%;
        max-width: 320px;
    }

    .contact-prefer-email {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .header-content {
        padding: 0 20px;
    }
    
    .container {
        padding: 0 15px;
    }
}
