/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
    /* Logo-based color scheme: Dark Blue, Bright Green & Light Blue */
    --primary-color: #1e3a5f;
    --primary-dark: #0f1f35;
    --primary-light: #2d4a6f;
    --secondary-color: #3b82f6;
    --secondary-light: #60a5fa;
    --accent-color: #22c55e;
    --accent-green: #22c55e;
    --accent-green-light: #4ade80;
    --accent-green-dark: #16a34a;
    --accent-gold: #22c55e;
    --accent-gold-light: #4ade80;
    --accent-gold-dark: #16a34a;
    --text-dark: #1e3a5f;
    --text-light: #64748b;
    --text-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

/* ============================================
   Navigation
   ============================================ */
.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
    vertical-align: middle;
}

.logo-text {
    display: flex;
    align-items: center;
    line-height: 1;
    vertical-align: middle;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-gold);
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-light) 100%);
    color: var(--text-white) !important;
    padding: 0.625rem 1.5rem !important;
    border-radius: 8px;
    font-weight: 600 !important;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--accent-green-dark) 0%, var(--accent-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
    color: var(--text-white) !important;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(2, 6, 23, 0.92) 50%, rgba(15, 23, 42, 0.88) 100%);
    z-index: 2;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(34, 197, 94, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(34, 197, 94, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-white);
    width: 100%;
    padding: 3rem 0;
    animation: fadeInUp 1s ease-out;
}

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

.hero-company-name {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.hero-company-name::before,
.hero-company-name::after {
    content: '';
    position: absolute;
    top: 100%;
    margin-top: 15px;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0.6;
}

.hero-company-name::before {
    left: calc(50% - 200px);
}

.hero-company-name::after {
    right: calc(50% - 200px);
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.1;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 50%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero .btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 50%, var(--accent-gold) 100%);
    background-size: 200% 200%;
    color: var(--primary-dark);
    font-weight: 700;
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 24px rgba(34, 197, 94, 0.4),
        0 4px 12px rgba(34, 197, 94, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: shimmer 3s ease-in-out infinite;
    transition: var(--transition);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.hero .btn-primary:hover::before {
    left: 100%;
}

.hero .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 32px rgba(34, 197, 94, 0.5),
        0 6px 16px rgba(34, 197, 94, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background-position: 100% 50%;
}

.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    font-weight: 600;
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

.hero-vision {
    margin-top: 4rem;
    padding-top: 2.5rem;
    position: relative;
}

.hero-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.5), transparent);
}

.vision-text {
    font-size: 1.5rem;
    font-weight: 500;
    font-style: italic;
    opacity: 1;
    letter-spacing: 1px;
    color: var(--accent-gold);
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(34, 197, 94, 0.3);
    position: relative;
    display: inline-block;
}

.vision-text::before,
.vision-text::after {
    content: '"';
    font-size: 2rem;
    color: var(--accent-gold);
    opacity: 0.5;
    position: absolute;
    top: -10px;
}

.vision-text::before {
    left: -30px;
}

.vision-text::after {
    right: -30px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* ============================================
   Sections
   ============================================ */
section {
    padding: 5rem 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   About/Features Section
   ============================================ */
.about-section {
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #22c55e 0%, #4ade80 25%, #22c55e 50%, #16a34a 75%, #22c55e 100%);
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    position: relative;
    box-shadow: 
        0 8px 16px rgba(34, 197, 94, 0.3),
        0 4px 8px rgba(34, 197, 94, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent, rgba(255, 255, 255, 0.4));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 24px rgba(34, 197, 94, 0.4),
        0 6px 12px rgba(34, 197, 94, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   Services Preview Slider
   ============================================ */
.services-preview {
    background-color: var(--bg-white);
}

.services-slider {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.services-slider-container {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.service-preview-card {
    min-width: 100%;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #22c55e 0%, #4ade80 25%, #22c55e 50%, #16a34a 75%, #22c55e 100%);
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    position: relative;
    box-shadow: 
        0 8px 16px rgba(34, 197, 94, 0.3),
        0 4px 8px rgba(34, 197, 94, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent, rgba(255, 255, 255, 0.4));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-preview-card:hover .service-icon::before {
    opacity: 1;
}

.service-preview-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 24px rgba(34, 197, 94, 0.4),
        0 6px 12px rgba(34, 197, 94, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.service-icon svg {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
}

.service-preview-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-preview-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent-gold);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.slider-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
}

.slider-btn svg {
    width: 20px;
    height: 20px;
}

.slider-btn-prev {
    left: 10px;
}

.slider-btn-next {
    right: 10px;
}

/* ============================================
   Page Header
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 70%, rgba(34, 197, 94, 0.1) 100%);
    color: var(--text-white);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* ============================================
   Services Detail
   ============================================ */
.services-detail {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.service-detail-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #22c55e 0%, #4ade80 25%, #22c55e 50%, #16a34a 75%, #22c55e 100%);
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    position: relative;
    box-shadow: 
        0 8px 16px rgba(34, 197, 94, 0.3),
        0 4px 8px rgba(34, 197, 94, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.service-detail-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent, rgba(255, 255, 255, 0.4));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-detail-card:hover .service-detail-icon::before {
    opacity: 1;
}

.service-detail-card:hover .service-detail-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 24px rgba(34, 197, 94, 0.4),
        0 6px 12px rgba(34, 197, 94, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.service-detail-icon svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
}

.service-detail-card h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-intro {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.service-feature svg {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 4px;
}

.service-feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-feature p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.contact-detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #22c55e 0%, #4ade80 25%, #22c55e 50%, #16a34a 75%, #22c55e 100%);
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    flex-shrink: 0;
    position: relative;
    box-shadow: 
        0 8px 16px rgba(34, 197, 94, 0.3),
        0 4px 8px rgba(34, 197, 94, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent, rgba(255, 255, 255, 0.4));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.contact-detail-item:hover .contact-icon::before {
    opacity: 1;
}

.contact-detail-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 24px rgba(34, 197, 94, 0.4),
        0 6px 12px rgba(34, 197, 94, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
}

.contact-detail-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.contact-detail-item p {
    color: var(--text-light);
}

.contact-detail-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-detail-item a:hover {
    color: var(--accent-gold);
}

/* ============================================
   Contact Form
   ============================================ */
.contact-form-wrapper {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

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

.form-message {
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    display: block;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    display: block;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--primary-color) 100%);
    color: var(--text-white);
    text-align: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0.5;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-section h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    border-radius: 2px;
}

.cta-section p {
    font-size: 1.375rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 0.3px;
}

.cta-section .btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 50%, var(--accent-gold) 100%);
    background-size: 200% 200%;
    color: var(--primary-dark);
    font-weight: 700;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 24px rgba(34, 197, 94, 0.4),
        0 4px 12px rgba(34, 197, 94, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: shimmer 3s ease-in-out infinite;
    transition: var(--transition);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cta-section .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-section .btn-primary:hover::before {
    left: 100%;
}

.cta-section .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 32px rgba(34, 197, 94, 0.5),
        0 6px 16px rgba(34, 197, 94, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background-position: 100% 50%;
}

.cta-section .btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}

/* ============================================
   Footer - Modern & Luxurious Design
   ============================================ */
.footer {
    background: linear-gradient(135deg, #0a0e1a 0%, #0f172a 50%, #1a1f35 100%);
    color: var(--text-white);
    padding: 6rem 0 2.5rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(34, 197, 94, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(34, 197, 94, 0.3) 20%, 
        rgba(34, 197, 94, 0.6) 50%, 
        rgba(34, 197, 94, 0.3) 80%, 
        transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(34, 197, 94, 0.03) 0%, transparent 50%);
    pointer-events: none;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.footer-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(34, 197, 94, 0.02) 50%, transparent 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(34, 197, 94, 0.02) 2px,
            rgba(34, 197, 94, 0.02) 4px
        );
    pointer-events: none;
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    position: relative;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.footer-logo-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), rgba(34, 197, 94, 0.3));
    border-radius: 2px;
}

.footer-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(34, 197, 94, 0.2);
    transition: var(--transition);
}

.footer-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3), 0 0 0 1px rgba(34, 197, 94, 0.4);
}

.footer-brand-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(34, 197, 94, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.social-link svg {
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--text-white);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.footer-heading {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1rem;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-links li {
    position: relative;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9375rem;
    font-weight: 400;
    letter-spacing: 0.2px;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 16px;
    transform: translateX(4px);
}

.footer-links a:hover::before {
    transform: translateY(-50%) scale(1);
}

.footer-contact {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9375rem;
}

.footer-contact li svg {
    color: var(--accent-gold);
    flex-shrink: 0;
    opacity: 0.8;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 400;
    letter-spacing: 0.2px;
}

.footer-contact a:hover {
    color: var(--accent-gold);
    transform: translateX(2px);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(34, 197, 94, 0.2) 20%, 
        rgba(34, 197, 94, 0.4) 50%, 
        rgba(34, 197, 94, 0.2) 80%, 
        transparent 100%);
    margin: 3rem 0 2.5rem;
    position: relative;
    z-index: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 300;
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--accent-gold);
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

/* ============================================
   Mobile Responsive
   ============================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .logo {
        font-size: 1.125rem;
    }

    .logo-img {
        height: 32px;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
        transition: var(--transition);
        gap: 0.5rem;
        z-index: 1000;
        overflow-y: auto;
    }

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

    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: -1;
    }

    .nav-menu.active::before {
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu a {
        padding: 1rem 1.25rem;
        display: block;
        width: 100%;
        border-radius: 8px;
        font-size: 1.125rem;
        transition: var(--transition);
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background-color: var(--bg-light);
        color: var(--accent-gold);
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
        text-align: center;
        display: block;
    }

    .hero {
        min-height: 70vh;
        padding: 1rem 0;
    }

    .hero-content {
        padding: 2rem 0;
    }

    .hero-company-name {
        margin-bottom: 1.5rem;
    }

    .hero-company-name::before,
    .hero-company-name::after {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-title::after {
        width: 60px;
        height: 2px;
        bottom: -10px;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
        line-height: 1.6;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }

    .hero .btn-primary,
    .hero .btn-secondary {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hero-vision {
        margin-top: 2.5rem;
        padding-top: 2rem;
        padding: 0 1rem;
    }

    .vision-text {
        font-size: 1rem;
    }

    .vision-text::before,
    .vision-text::after {
        font-size: 1.25rem;
        top: -6px;
    }

    .vision-text::before {
        left: -15px;
    }

    .vision-text::after {
        right: -15px;
    }

    section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }

    .section-header h2 {
        font-size: 1.875rem;
        margin-bottom: 0.75rem;
    }

    .section-header p {
        font-size: 1rem;
    }

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

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .feature-icon svg {
        width: 32px;
        height: 32px;
    }

    .feature-card h3 {
        font-size: 1.375rem;
    }

    .services-slider {
        padding: 1.5rem 0;
    }

    .services-slider-container {
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .service-preview-card {
        min-width: calc(100% - 2rem);
        margin: 0;
        padding: 2rem 1.5rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .service-icon svg {
        width: 32px;
        height: 32px;
    }

    .slider-btn {
        width: 44px;
        height: 44px;
        display: flex;
    }

    .slider-btn-prev {
        left: 10px;
    }

    .slider-btn-next {
        right: 10px;
    }

    .page-header {
        padding: 3rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .page-header p {
        font-size: 1.125rem;
        padding: 0 1rem;
    }

    .services-detail {
        padding: 3rem 0;
    }

    .service-detail-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .service-detail-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .service-detail-icon svg {
        width: 36px;
        height: 36px;
    }

    .service-detail-card h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .service-intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .service-features {
        gap: 1.5rem;
    }

    .service-feature {
        gap: 1rem;
    }

    .service-feature h3 {
        font-size: 1.125rem;
    }

    .service-feature p {
        font-size: 0.9375rem;
    }

    .contact-section {
        padding: 3rem 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-info {
        padding: 0 1rem;
    }

    .contact-info h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .contact-info > p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact-detail-item {
        gap: 1rem;
    }

    .contact-icon {
        width: 56px;
        height: 56px;
    }

    .contact-icon svg {
        width: 24px;
        height: 24px;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .form-group {
        gap: 0.5rem;
    }

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

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 1rem;
    }

    .cta-section {
        padding: 4rem 0;
    }

    .cta-section h2 {
        font-size: 2.25rem;
    }

    .cta-section h2::after {
        width: 60px;
        height: 2px;
    }

    .cta-section p {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
    }

    .cta-section .btn-primary {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo-wrapper {
        margin-bottom: 1.5rem;
        padding-bottom: 1.25rem;
    }

    .footer-brand-name {
        font-size: 1.5rem;
    }

    .footer-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .footer-social {
        gap: 0.875rem;
        margin-top: 1.5rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .footer-heading {
        font-size: 0.8125rem;
        margin-bottom: 1.25rem;
        padding-bottom: 0.875rem;
    }

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

    .footer-legal {
        justify-content: center;
    }
}

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

    .hero {
        min-height: 60vh;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero-title::after {
        width: 50px;
        height: 2px;
        bottom: -8px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .hero .btn-primary,
    .hero .btn-secondary {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    .hero-vision {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .vision-text {
        font-size: 0.9375rem;
    }

    .vision-text::before,
    .vision-text::after {
        font-size: 1.125rem;
        top: -5px;
    }

    .vision-text::before {
        left: -12px;
    }

    .vision-text::after {
        right: -12px;
    }

    .section-header h2 {
        font-size: 1.625rem;
    }

    .section-header p {
        font-size: 0.9375rem;
    }

    .feature-card {
        padding: 1.75rem 1.25rem;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 1.25rem;
    }

    .feature-icon svg {
        width: 28px;
        height: 28px;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }

    .service-preview-card {
        padding: 1.75rem 1.25rem;
    }

    .service-icon {
        width: 64px;
        height: 64px;
    }

    .service-icon svg {
        width: 28px;
        height: 28px;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .service-detail-card {
        padding: 1.75rem 1.25rem;
    }

    .service-detail-icon {
        width: 64px;
        height: 64px;
    }

    .service-detail-card h2 {
        font-size: 1.5rem;
    }

    .contact-info h2 {
        font-size: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.75rem 1.25rem;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .cta-section h2 {
        font-size: 1.875rem;
    }

    .cta-section h2::after {
        width: 50px;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
        text-align: center;
    }

    .footer-logo-wrapper {
        font-size: 1.25rem;
    }

    .footer-logo {
        height: 32px;
        padding: 4px;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }

    section {
        padding: 2.5rem 0;
    }
}

