/* ========================================
   NATASHA MAW LTD - Mobile Development Studio
   Modern, Responsive Stylesheet
   ======================================== */


/* ===== CSS Reset & Base Styles ===== */
/* Basic reset to normalize browser defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Black & Green Theme */
    --primary-color: #00FF88;
    --primary-dark: #00CC6F;
    --secondary-color: #00FF88;
    --accent-color: #39FF14;
    --dark-bg: #0A0A0A;
    --darker-bg: #000000;
    --light-bg: #0F1410;
    --text-dark: #FFFFFF;
    --text-light: #B8E6D5;
    --text-lighter: #6B9080;
    --white: #FFFFFF;
    --border-color: #1A2F23;
    --success-color: #00FF88;
    --gradient-1: linear-gradient(135deg, #00FF88 0%, #39FF14 100%);
    --gradient-2: linear-gradient(135deg, #00CC6F 0%, #00FF88 100%);
    --gradient-3: linear-gradient(135deg, #39FF14 0%, #7FFF00 100%);
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Segoe UI', system-ui, sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 100px 0;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: #000000;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 255, 136, 0.15);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav ul {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav a {
    color: #00FF88;
    font-weight: 500;
    position: relative;
}

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

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

.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: #00FF88;
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* ===== Cookie Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-btn {
    background: var(--secondary-color);
    color: var(--dark-bg);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.cookie-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== Hero Section ===== */
/* Main hero area - this is were the magic happens */
.hero-section {
    position: relative;
    padding: 160px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, #000000 0%, #0A0A0A 100%);
}

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

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: #00FF88;
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #00CC6F;
    bottom: -150px;
    left: -100px;
    animation-delay: 7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: #39FF14;
    top: 50%;
    left: 50%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-50px, 50px) scale(0.9); }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #FFFFFF;
}

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

.hero-description {
    font-size: 18px;
    color: #B8E6D5;
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-1);
    color: #000000;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #00FF88;
    border: 2px solid #00FF88;
}

.btn-secondary:hover {
    background: #00FF88;
    color: #000000;
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

/* ===== Hero Image ===== */
.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
    border: 2px solid rgba(0, 255, 136, 0.3);
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
}

/* ===== Interactive Cards ===== */

/* Grid layout for feature cards */
.interactive-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-card {
    background: rgba(0, 255, 136, 0.05);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.1);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid rgba(0, 255, 136, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.3);
    border-color: #00FF88;
    background: rgba(0, 255, 136, 0.1);
}

.card-icon {
    margin-bottom: 15px;
    color: #00FF88;
}

.card-icon svg {
    width: 40px;
    height: 40px;
    stroke: #00FF88;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.feature-card p {
    font-size: 14px;
    color: #B8E6D5;
    margin: 0;
}

/* ===== Statistics Section ===== */
.stats-section {
    padding: 60px 0;
    background: var(--dark-bg);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-lighter);
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.section-header p {
    font-size: 18px;
    color: #B8E6D5;
}

/* ===== Services Section ===== */
.services-section {
    padding: var(--section-padding);
    background: #000000;
}

.services-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 20px;
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    background: rgba(0, 255, 136, 0.03);
}

.accordion-item:hover {
    border-color: #00FF88;
}

.accordion-header {
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    border: none;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: left;
}

.accordion-header:hover {
    background: rgba(0, 255, 136, 0.08);
}

.accordion-title {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
}

.accordion-icon {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 300;
    transition: var(--transition-smooth);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.accordion-inner {
    padding: 30px;
    background: rgba(0, 255, 136, 0.05);
}

.accordion-inner p {
    margin-bottom: 20px;
    color: #B8E6D5;
    line-height: 1.8;
}

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

.feature-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: #B8E6D5;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00FF88;
    font-weight: bold;
    font-size: 18px;
}

/* ===== Approach Timeline ===== */
.approach-section {
    padding: var(--section-padding);
    background: #0A0A0A;
}

.approach-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.approach-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-1);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: rgba(0, 255, 136, 0.05);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.timeline-content p {
    color: #B8E6D5;
    margin: 0;
}

/* ===== Expertise Section ===== */
.expertise-section {
    padding: var(--section-padding);
    background: #000000;
}

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

.expertise-category h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-tag {
    background: rgba(0, 255, 136, 0.05);
    color: #00FF88;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid rgba(0, 255, 136, 0.3);
    transition: var(--transition-smooth);
}

.tech-tag:hover {
    background: #00FF88;
    color: #000000;
    border-color: #00FF88;
    transform: translateY(-3px);
}


/* ===== Industries Section ===== */
.industries-section {
    padding: var(--section-padding);
    background: #0A0A0A;
}

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

.industry-card {
    background: rgba(0, 255, 136, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.3);
    border-color: #00FF88;
}

.industry-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    filter: brightness(0.8);
}

.industry-card:hover .industry-image img {
    transform: scale(1.1);
    filter: brightness(1);
}

.industry-content {
    padding: 30px;
    text-align: center;
}

.industry-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.industry-card p {
    color: #B8E6D5;
    font-size: 15px;
    margin: 0;
}

/* ===== Why Choose Section ===== */
.why-choose-section {
    padding: var(--section-padding);
    background: #000000;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #FFFFFF;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    stroke: #000000;
    stroke-width: 3;
}

.benefit-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.benefit-text p {
    color: #B8E6D5;
    margin: 0;
}

.why-choose-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-image-container {
    width: 100%;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 136, 0.3);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.2);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.metric-boxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.metric-box {
    background: var(--gradient-1);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
}

.metric-value {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 16px;
    opacity: 0.9;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: var(--section-padding);
    background: #0A0A0A;
}

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

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.contact-info > p {
    font-size: 18px;
    color: #B8E6D5;
    margin-bottom: 40px;
}

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

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

.contact-icon {
    width: 50px;
    flex-shrink: 0;
    color: #00FF88;
}

.contact-icon svg {
    width: 30px;
    height: 30px;
    stroke: #00FF88;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.contact-item p {
    color: #B8E6D5;
    margin: 0;
}

.contact-item a {
    color: #00FF88;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* ===== Contact Form ===== */
/* Form container styling  - dont forget to add validaton later */


.contact-form-wrapper {
    background: rgba(0, 255, 136, 0.05);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.15);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.contact-form-wrapper h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #FFFFFF;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #FFFFFF;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 15px;
    transition: var(--transition-smooth);
    background: rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00FF88;
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.2);
}

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

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

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

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #00FF88;
}

.footer-column p {
    color: #B8E6D5;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-column a {
    color: #00FF88;
}

.footer-column a:hover {
    text-decoration: underline;
}

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

.footer-links a {
    color: #B8E6D5;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: #00FF88;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    padding-top: 30px;
    text-align: center;
    color: #B8E6D5;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-legal p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.company-registration {
    color: #6B9080;
    font-size: 13px;
}

.registered-office {
    color: #6B9080;
    font-size: 12px;
    font-style: italic;
}

/* ===== Thank You Page ===== */
.thankyou-section {
    padding: 160px 0 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thankyou-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.success-icon svg {
    width: 50px;
    height: 50px;
    stroke: #000000;
    stroke-width: 3;
}

.thankyou-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.thankyou-message {
    font-size: 18px;
    color: #B8E6D5;
    margin-bottom: 50px;
    line-height: 1.8;
}

.thankyou-info {
    background: rgba(0, 255, 136, 0.05);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.thankyou-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.next-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.step-text p {
    font-size: 14px;
    color: #B8E6D5;
    margin: 0;
}

.thankyou-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contact-alternative {
    padding: 30px;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.phone-highlight {
    font-size: 24px;
    font-weight: 700;
    margin-top: 10px;
}

.phone-highlight a {
    color: #00FF88;
}

/* ===== Policy Pages ===== */
.policy-section {
    padding: 160px 0 100px;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.update-date {
    font-size: 16px;
    color: #B8E6D5;
    margin-bottom: 40px;
    font-style: italic;
}

.policy-text h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.policy-text h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #00FF88;
}

.policy-text p {
    margin-bottom: 20px;
    color: #B8E6D5;
    line-height: 1.8;
}

.policy-text ul {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}

.policy-text ul li {
    margin-bottom: 10px;
    color: #B8E6D5;
    line-height: 1.7;
}

.policy-actions {
    margin-top: 50px;
    text-align: center;
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .hero-content,
    .contact-wrapper,
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-image-container {
        height: 400px;
    }
    
    .interactive-cards {
        grid-template-columns: 1fr;
    }
    
    .about-image-container {
        height: 250px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .approach-timeline::before {
        left: 30px;
    }
    
    .timeline-marker {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero-image-container {
        height: 300px;
    }
    
    .hero-image-overlay {
        padding: 20px;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
        border: 1px solid rgba(0, 255, 136, 0.2);
        transition: left 0.3s ease;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-image {
        height: 180px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image-container {
        height: 220px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 15px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .approach-timeline::before {
        display: none;
    }
    
    .next-steps {
        grid-template-columns: 1fr;
    }
}
