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

:root {
    --primary: #FF6B35;
    --secondary: #F7931E;
    --dark: #0a0a0a;
    --dark-alt: #1a1a1a;
    --dark-card: #151515;
    --text: #ffffff;
    --text-muted: #a0a0a0;
    --accent-glow: rgba(255, 107, 53, 0.3);
}

html {
    scroll-behavior: smooth;
}

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

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

.accent {
    color: var(--primary);
}

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

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

.nav-brand h1 {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--primary);
}

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

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

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text);
    transition: 0.3s;
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: var(--text);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    border: 2px solid var(--primary);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--primary);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-alt) 100%);
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, var(--accent-glow) 0%, transparent 70%);
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-card p {
    color: var(--text-muted);
    font-size: 14px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: var(--primary);
    animation: scroll 2s infinite;
}

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

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 60px;
}

/* Glass Effect */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

/* Services Grid */
.services {
    background: var(--dark-alt);
}

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

.service-card {
    padding: 40px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--accent-glow);
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon svg {
    width: 56px;
    height: 56px;
    stroke: var(--primary);
    stroke-width: 1.5;
    fill: none;
    transition: transform 0.3s, stroke 0.3s;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
    stroke: var(--secondary);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

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

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

/* Why Us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.why-card {
    text-align: center;
}

.why-icon {
    margin-bottom: 20px;
}

.why-icon svg {
    width: 64px;
    height: 64px;
    stroke: var(--primary);
    stroke-width: 1.5;
    fill: none;
    transition: transform 0.3s;
}

.why-card:hover .why-icon svg {
    transform: scale(1.1);
    stroke: var(--secondary);
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.why-card p {
    color: var(--text-muted);
}

/* Case Studies */
.case-studies {
    background: var(--dark-alt);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.case-card {
    background: var(--dark-card);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.case-image {
    height: 220px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

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

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

.case-content {
    padding: 30px;
}

.case-brand {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.case-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.case-objective {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.case-results {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.result-item {
    display: flex;
    flex-direction: column;
}

.result-number {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
}

.result-label {
    font-size: 12px;
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.contact-info h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
}

.contact-info .lead {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
    stroke-width: 1.5;
    fill: none;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: var(--text);
    font-size: 16px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Footer */
.footer {
    background: var(--dark-card);
    padding: 60px 0 30px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

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

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

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

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

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

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    text-align: center;
    background: var(--dark-alt);
}

.page-header h1 {
    font-size: clamp(40px, 7vw, 64px);
    font-weight: 900;
    margin-bottom: 20px;
}

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

/* About Page Styles */
.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: center;
}

.about-content .lead {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

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

.about-image .image-container {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

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

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

.mission-vision {
    background: var(--dark-alt);
    padding: 80px 0;
}

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

.mv-card {
    padding: 50px;
    text-align: center;
}

.mv-icon {
    margin-bottom: 20px;
}

.mv-icon svg {
    width: 56px;
    height: 56px;
    stroke: var(--primary);
    stroke-width: 1.5;
    fill: none;
    margin: 0 auto;
    display: block;
    transition: transform 0.3s;
}

.mv-card:hover .mv-icon svg {
    transform: scale(1.1);
    stroke: var(--secondary);
}

.mv-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.mv-card p {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.8;
}

.values-section {
    padding: 80px 0;
}

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

.value-card {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    margin-bottom: 20px;
}

.value-icon svg {
    width: 56px;
    height: 56px;
    stroke: var(--primary);
    stroke-width: 1.5;
    fill: none;
    margin: 0 auto;
    display: block;
    transition: transform 0.3s;
}

.value-card:hover .value-icon svg {
    transform: scale(1.1);
    stroke: var(--secondary);
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.founder-section {
    background: var(--dark-alt);
    padding: 80px 0;
}

.founder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: center;
}

.founder-image .image-container {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

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

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

.founder-content h3 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 10px;
}

.founder-title {
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
}

.founder-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.founder-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin-top: 30px;
    font-style: italic;
    color: var(--text);
    font-size: 18px;
}

.team-section {
    padding: 80px 0;
}

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

.team-card {
    text-align: center;
}

.team-image {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

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

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

.team-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.team-card p {
    color: var(--text-muted);
}

.location-section {
    background: var(--dark-alt);
    padding: 80px 0;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: center;
}

.location-info h3 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
}

.location-info .lead {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.location-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.location-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
    stroke-width: 1.5;
    fill: none;
    flex-shrink: 0;
}

.location-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.location-item p {
    color: var(--text-muted);
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--dark-card);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%) contrast(1.1);
}

/* Services Page Styles */
.service-detail {
    padding: 80px 0;
}

.service-detail.alt {
    background: var(--dark-alt);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: start;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse > * {
    direction: ltr;
}

.service-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--text);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.service-detail-content h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 30px;
}

.service-detail-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-detail-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.service-list li {
    color: var(--text-muted);
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.7;
}

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

.service-list strong {
    color: var(--text);
}

.example-box {
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.example-box p {
    margin-bottom: 15px;
}

.example-box p:last-child {
    margin-bottom: 0;
}

.service-detail-image .image-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

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

.service-detail-image .image-container:hover img {
    transform: scale(1.05);
}

.service-cta-box {
    padding: 40px;
    text-align: center;
}

.service-cta-box h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-cta-box p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* Image Container Utility */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: var(--dark-card);
}

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

/* Animation Classes */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-image .image-container,
    .founder-image .image-container {
        height: 350px;
    }
    
    .service-detail-grid.reverse {
        direction: ltr;
    }
    
    .map-container {
        height: 300px;
    }
    
    .service-detail-image .image-container {
        height: 300px;
    }
}

/* Smooth Image Loading */
img {
    opacity: 1;
    transition: opacity 0.3s;
}

img[loading="lazy"] {
    opacity: 0;
}

img.loaded,
img:not([loading="lazy"]) {
    opacity: 1;
}

/* Image Containers */
.image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

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

.founder-image .image-container {
    width: 100%;
    height: 500px;
}

.about-image .image-container {
    height: 400px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}
