/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4a574;
    --dark-bg: #1a1a1a;
    --darker-bg: #0f0f0f;
    --light-text: #ffffff;
    --gray-text: #b0b0b0;
    --accent-gold: #c9a567;
    --accent-blue: #4a90e2;
    --accent-blue-dark: #3a7bc8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.nav-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;
}

.logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.logo-img:hover {
    filter: brightness(0) invert(1);
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-transform: lowercase;
}

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

.nav-menu a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-blue) 100%);
    transition: width 0.3s ease;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-blue);
}

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

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--light-text);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(212, 165, 116, 0.05) 50%, transparent 7%),
        linear-gradient(-45deg, transparent 30%, rgba(212, 165, 116, 0.03) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: geometricMove 20s ease infinite;
    z-index: 1;
}

@keyframes geometricMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.383) 0%, rgba(15, 15, 15, 0.139) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    padding: 0 40px;
    width: 100%;
}

.hero-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 120px;
    font-weight: 300;
    color: rgba(212, 165, 116, 0.3);
    position: absolute;
    top: -60px;
    left: 20px;
    line-height: 1;
}

.hero-text {
    max-width: 800px;
    margin-left: 80px;
}

.hero-text h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: 4px;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    border: 2px solid var(--accent-blue);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-dark) 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: var(--light-text);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--gray-text);
    font-size: 11px;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-blue), transparent);
    animation: scrollAnimation 2s ease-in-out infinite;
}

@keyframes scrollAnimation {
    0%, 100% { transform: translateY(0); opacity: 0; }
    50% { transform: translateY(20px); opacity: 1; }
}

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

.section-header {
    margin-bottom: 60px;
}
#about-header {
    margin-top: 60px;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 4px;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--gray-text);
    font-size: 18px;
    margin-top: 15px;
}

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

.about-content h3 {
    font-size: 32px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content p {
    font-size: 16px;
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    height: 500px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover .about-img {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(212, 165, 116, 0.05) 100%);
    border: 1px solid rgba(212, 165, 116, 0.2);
    position: relative;
    overflow: hidden;
}

.geometric-pattern {
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgba(212, 165, 116, 0.1) 49%, rgba(212, 165, 116, 0.1) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(212, 165, 116, 0.1) 49%, rgba(212, 165, 116, 0.1) 51%, transparent 52%);
    background-size: 80px 80px;
    animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(50px, 50px) rotate(360deg); }
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background-color: var(--dark-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 250px;
    margin: -50px -50px 30px -50px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.6;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
    opacity: 0.8;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.2);
}

.service-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 80px;
    font-weight: 300;
    color: rgba(212, 165, 116, 0.2);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 25px;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

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

.service-list li {
    padding: 10px 0 10px 25px;
    position: relative;
    color: var(--gray-text);
    font-size: 15px;
}

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

.service-note {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    color: var(--gray-text);
    font-size: 14px;
    font-style: italic;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.mv-card {
    position: relative;
    padding: 50px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--accent-blue);
}

.mv-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 28px;
    margin-bottom: 25px;
}

.mv-card p {
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 120px 0;
    background-color: var(--dark-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    text-align: center;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 165, 116, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    background: rgba(74, 144, 226, 0.05);
}

.value-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    color: var(--primary-color);
}

.value-card h3 {
    font-size: 18px;
    letter-spacing: 2px;
}

/* Why Choose Section */
.why-choose-section {
    padding: 120px 0;
    background-color: var(--darker-bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.why-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 165, 116, 0.1);
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: var(--accent-blue);
    background: rgba(74, 144, 226, 0.05);
}

.why-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 60px;
}

.why-card p {
    color: var(--gray-text);
    font-size: 16px;
    line-height: 1.8;
}

/* Footer */
.footer {
    padding: 80px 0 30px;
    background-color: var(--darker-bg);
    border-top: 1px solid rgba(212, 165, 116, 0.1);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-col p {
    color: var(--gray-text);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-blue);
}

.contact-info li {
    color: var(--gray-text);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info li i {
    color: var(--accent-blue);
    width: 20px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(212, 165, 116, 0.1);
    text-align: center;
    color: var(--gray-text);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid,
    .services-grid,
    .mv-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-text h1 {
        font-size: 48px;
    }

    .hero-number {
        font-size: 80px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-text {
        margin-left: 0;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-number {
        font-size: 60px;
        top: -40px;
    }

    .container {
        padding: 0 20px;
    }

    .section-header h2 {
        font-size: 32px;
    }

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

    .service-card,
    .mv-card,
    .why-card {
        padding: 30px;
    }

    .contact-form-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .contact-form {
        width: 100%;
        gap: 15px;
    }

    .form-group {
        width: 100%;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 14px 18px;
        font-size: 16px;
        box-sizing: border-box;
    }

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

    .submit-button {
        width: 100%;
        padding: 16px 30px;
        align-self: stretch;
        justify-content: center;
        text-align: center;
        display: block;
    }

    .contact-info-section {
        width: 100%;
    }

    .contact-info-section .section-header h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .contact-cards {
        width: 100%;
        gap: 20px;
        margin-top: 30px;
    }

    .contact-card {
        width: 100%;
        padding: 25px 20px;
        box-sizing: border-box;
    }

    .contact-card h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .contact-card p {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .contact-card a {
        font-size: 14px;
        word-break: break-word;
    }

    .contact-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }

    /* Equipment Features Mobile */
    .equipment-features {
        grid-template-columns: 1fr !important;
        width: 100%;
        gap: 25px;
    }
    
    .equipment-detailed-grid {
        grid-template-columns: 1fr !important;
    }

    .feature-item {
        padding: 30px 25px;
        width: 100%;
        box-sizing: border-box;
    }

    .feature-item h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .feature-item p {
        font-size: 14px;
        line-height: 1.6;
    }

    .feature-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }

    /* Page Header Mobile */
    .page-header {
        min-height: 300px;
        height: 40vh;
        margin-top: 70px;
    }

    .page-header h1 {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .page-header p {
        font-size: 16px;
    }

    /* Services Page - Support Services Mobile */
    .support-services-grid {
        gap: 40px;
    }

    .support-card {
        padding: 30px 25px;
        box-sizing: border-box;
    }

    .support-card h3 {
        font-size: 24px;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }

    .support-icon {
        font-size: 40px;
        margin-bottom: 18px;
    }

    .support-intro {
        font-size: 15px;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .support-details h4 {
        font-size: 16px;
        margin: 20px 0 12px 0;
        letter-spacing: 1px;
    }

    .support-details h4:first-child {
        margin-top: 0;
    }

    .detailed-list {
        margin-bottom: 20px;
    }

    .detailed-list li {
        font-size: 14px;
        padding: 8px 0 8px 30px;
        line-height: 1.6;
    }

    .detailed-list li i {
        top: 10px;
        font-size: 12px;
    }

    .support-details p {
        font-size: 14px;
        padding: 12px 15px;
        line-height: 1.7;
        margin-top: 12px;
    }

    /* Equipment Detailed Grid Mobile */
    .equipment-detailed-grid {
        gap: 25px;
    }

    .equipment-card {
        padding: 30px 25px;
        box-sizing: border-box;
    }

    .equipment-card h3 {
        font-size: 20px;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }

    .equipment-icon {
        font-size: 38px;
        margin-bottom: 18px;
    }

    .specs-list {
        padding: 15px;
        margin-bottom: 18px;
    }

    .spec-item {
        font-size: 13px;
        gap: 10px;
        margin-bottom: 10px;
    }

    .spec-item i {
        font-size: 14px;
    }

    .equipment-desc {
        font-size: 14px;
        margin-bottom: 18px;
        line-height: 1.7;
    }

    .feature-bullets li {
        font-size: 13px;
        padding: 7px 0 7px 25px;
        line-height: 1.5;
    }

    .feature-bullets li::before {
        font-size: 14px;
    }

    /* Category Header Mobile */
    .category-header {
        margin-bottom: 40px;
    }

    .category-header h2 {
        font-size: 28px;
        margin-bottom: 12px;
        letter-spacing: 2px;
    }

    .category-header p {
        font-size: 14px;
        padding: 0 10px;
        line-height: 1.6;
    }

    .category-number {
        font-size: 70px;
        margin-bottom: 15px;
    }

    /* Service Category Spacing */
    .service-category {
        margin-bottom: 70px;
    }

    .services-section {
        padding: 60px 0;
    }

    /* Map Section Mobile */
    .map-section {
        height: 250px;
    }

    .map-overlay h3 {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .map-overlay p {
        font-size: 14px;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 28px;
        margin-bottom: 18px;
        letter-spacing: 2px;
    }

    .cta-content p {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .cta-button {
        padding: 14px 35px;
        font-size: 12px;
    }

    /* Contact Section Mobile */
    .contact-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .service-number {
        font-size: 60px;
    }

    /* Contact Mobile Extra Small */
    .contact-card {
        padding: 20px 15px;
    }

    .contact-card h3 {
        font-size: 15px;
    }

    .contact-card p {
        font-size: 13px;
    }

    .contact-icon {
        font-size: 28px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 15px;
    }

    .submit-button {
        padding: 14px 25px;
    }

    /* Services Mobile Extra Small */
    .support-card {
        padding: 25px 20px;
    }

    .support-card h3 {
        font-size: 22px;
    }

    .support-icon {
        font-size: 36px;
    }

    .support-intro {
        font-size: 14px;
    }

    .support-details h4 {
        font-size: 15px;
    }

    .detailed-list li {
        font-size: 13px;
        padding: 7px 0 7px 28px;
    }

    .support-details p {
        font-size: 13px;
        padding: 10px 12px;
    }

    .equipment-card {
        padding: 25px 20px;
    }

    .equipment-card h3 {
        font-size: 18px;
    }

    .category-number {
        font-size: 60px;
    }

    .category-header h2 {
        font-size: 24px;
    }

    .category-header p {
        font-size: 13px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-header p {
        font-size: 15px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 15px;
    }
}

/* Page Header */
.page-header {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    margin-top: 80px;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(212, 165, 116, 0.05) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: geometricMove 20s ease infinite;
}

.page-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.page-header p {
    font-size: 20px;
    color: var(--gray-text);
}

/* Equipment Features */
.equipment-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 165, 116, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--accent-blue);
    background: rgba(74, 144, 226, 0.05);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    color: var(--accent-blue);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    color: var(--primary-color);
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--light-text);
}

.feature-item p {
    color: var(--gray-text);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 40px;
}

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

.contact-section .container {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.contact-info-section {
    width: 100%;
}

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

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.contact-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 165, 116, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--accent-blue);
    background: rgba(74, 144, 226, 0.05);
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--accent-blue);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.contact-card p {
    color: var(--gray-text);
    margin-bottom: 5px;
}

.contact-card a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-color);
}

/* Contact Form */
.contact-form-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 165, 116, 0.2);
    color: var(--light-text);
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(74, 144, 226, 0.05);
}

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

.form-group select {
    cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-text);
}

.submit-button {
    padding: 16px 40px;
    background-color: transparent;
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    align-self: flex-start;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-dark) 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.submit-button:hover::before {
    left: 0;
}

.submit-button:hover {
    color: var(--light-text);
}

/* Map Section */
.map-section {
    height: 400px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.95) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23d4a574" opacity="0.05" width="100" height="100"/></svg>');
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-overlay {
    text-align: center;
    z-index: 2;
}

.map-overlay h3 {
    font-size: 32px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.map-overlay p {
    font-size: 16px;
    color: var(--gray-text);
}

/* Detailed Services Styles */
.service-category {
    margin-bottom: 100px;
}

.category-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.category-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 120px;
    font-weight: 300;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
}

.category-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.category-header p {
    color: var(--gray-text);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* Equipment Detailed Grid */
.equipment-detailed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.equipment-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    transition: all 0.3s ease;
}

.equipment-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 15px 30px rgba(74, 144, 226, 0.15);
}

.equipment-icon {
    font-size: 48px;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.equipment-card h3 {
    font-size: 24px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.specs-list {
    background: rgba(74, 144, 226, 0.05);
    padding: 20px;
    margin-bottom: 20px;
    border-left: 3px solid var(--accent-blue);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    color: var(--gray-text);
    font-size: 14px;
}

.spec-item:last-child {
    margin-bottom: 0;
}

.spec-item i {
    color: var(--accent-blue);
    font-size: 16px;
    min-width: 20px;
}

.spec-item strong {
    color: var(--light-text);
}

.equipment-desc {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.feature-bullets {
    list-style: none;
    padding: 0;
}

.feature-bullets li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: var(--gray-text);
    font-size: 14px;
    line-height: 1.6;
}

.feature-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
}

/* Support Services Grid */
.support-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.support-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 50px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    transition: all 0.3s ease;
}

.support-card:hover {
    border-color: var(--accent-blue);
    background: rgba(74, 144, 226, 0.03);
}

.support-icon {
    font-size: 56px;
    color: var(--accent-blue);
    margin-bottom: 25px;
}

.support-card h3 {
    font-size: 32px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-intro {
    color: var(--gray-text);
    font-size: 18px;
    margin-bottom: 30px;
    font-style: italic;
}

.support-details {
    margin-top: 30px;
}

.support-details h4 {
    font-size: 18px;
    color: var(--accent-blue);
    margin: 25px 0 15px 0;
    letter-spacing: 1px;
}

.support-details h4:first-child {
    margin-top: 0;
}

.detailed-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.detailed-list li {
    padding: 10px 0 10px 35px;
    position: relative;
    color: var(--gray-text);
    line-height: 1.6;
    font-size: 15px;
}

.detailed-list li i {
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--primary-color);
    font-size: 14px;
}

.support-details p {
    color: var(--gray-text);
    line-height: 1.8;
    background: rgba(212, 165, 116, 0.05);
    padding: 15px;
    border-left: 3px solid var(--primary-color);
    margin-top: 15px;
}

/* Responsive Adjustments for Detailed Services */
@media (max-width: 1024px) {
    .equipment-detailed-grid {
        grid-template-columns: 1fr;
    }
    
    .category-number {
        font-size: 80px;
    }
}

@media (max-width: 768px) {
    .equipment-card,
    .support-card {
        padding: 30px;
    }
    
    .category-header h2 {
        font-size: 32px;
    }
    
    .equipment-card h3 {
        font-size: 20px;
    }
    
    .support-card h3 {
        font-size: 26px;
    }
}
