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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

.text-gold { color: #EAB308; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: #EAB308;
    color: #000000;
}

.btn-primary:hover {
    background-color: #D97706;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #EAB308;
    border: 2px solid #EAB308;
}

.btn-outline:hover {
    background-color: #EAB308;
    color: #000000;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #D97706, #EAB308);
    color: #000000;
    padding: 8px 0;
    font-size: 0.9rem;
}

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

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Main Header */
.main-header {
    background-color: #000000;
    border-bottom: 1px solid rgba(234, 179, 8, 0.2);
    padding: 16px 0;
}

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

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #EAB308;
    text-decoration: none;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.desktop-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: #EAB308;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    padding: 20px 0;
    border-top: 1px solid rgba(234, 179, 8, 0.2);
}

.mobile-nav ul {
    list-style: none;
    margin-bottom: 20px;
}

.mobile-nav li {
    margin: 10px 0;
}

.mobile-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 80px 0 120px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(0,0,0,0.7));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    background-color: #EAB308;
    padding: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-content h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.feature-content p {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Services Section */
.services-preview {
    padding: 80px 0;
    background-color: #1f2937;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    color: #ffffff;
    margin-bottom: 16px;
}

.section-header p {
    color: #d1d5db;
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.service-card {
    background-color: #000000;
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    border-color: rgba(234, 179, 8, 0.5);
    transform: translateY(-4px);
}

.service-icon {
    background-color: #EAB308;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    color: #ffffff;
    margin-bottom: 16px;
}

.service-card p {
    color: #d1d5db;
    margin-bottom: 24px;
}

/* Page Header */
.page-header {
    padding: 60px 0;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    text-align: center;
    border-bottom: 1px solid rgba(234, 179, 8, 0.2);
}

.page-header h1 {
    color: #EAB308;
    margin-bottom: 16px;
}

.page-header p {
    color: #d1d5db;
    font-size: 1.1rem;
}

/* Services Detail */
.services-detail {
    padding: 80px 0;
    background-color: #1f2937;
}

.services-grid-full {
    display: grid;
    gap: 32px;
}

.service-card-full {
    background-color: #000000;
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: 12px;
    padding: 32px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    transition: all 0.3s ease;
}

.service-card-full:hover {
    border-color: rgba(234, 179, 8, 0.5);
}

.service-icon-large {
    background-color: #EAB308;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-content h3 {
    color: #ffffff;
    margin-bottom: 12px;
}

.service-content p {
    color: #d1d5db;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    margin-bottom: 16px;
}

.service-features li {
    color: #9ca3af;
    padding: 4px 0;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background-color: #EAB308;
    border-radius: 50%;
}

/* About Section */
.about-content {
    padding: 80px 0;
    background-color: #000000;
}

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

.about-text h2 {
    color: #ffffff;
    margin-bottom: 24px;
}

.about-text p {
    color: #d1d5db;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    background-color: #1f2937;
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.stat-icon {
    background-color: #EAB308;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #EAB308;
    margin-bottom: 8px;
}

.stat-label {
    color: #ffffff;
    font-weight: 600;
}

/* Contact Section */
.contact-content {
    padding: 80px 0;
    background-color: #1f2937;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.form-card {
    background-color: #000000;
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: 12px;
    padding: 32px;
}

.form-card h2 {
    color: #ffffff;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: #1f2937;
    border: 1px solid #374151;
    border-radius: 6px;
    color: #ffffff;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #EAB308;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background-color: #000000;
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: 12px;
    padding: 24px;
}

.contact-item-large {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    background-color: #EAB308;
    padding: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-card h3 {
    color: #ffffff;
    margin-bottom: 8px;
}

.contact-card p {
    color: #d1d5db;
    margin-bottom: 4px;
}

.contact-card small {
    color: #9ca3af;
}

/* Footer */
.main-footer {
    background-color: #000000;
    border-top: 1px solid rgba(234, 179, 8, 0.2);
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-title {
    color: #EAB308;
    margin-bottom: 16px;
}

.footer-subtitle {
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-description {
    color: #d1d5db;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #EAB308;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #EAB308;
}

.contact-info-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(234, 179, 8, 0.2);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
}

/* Alerts */
.alert {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.alert-error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card-full {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 24px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}