/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */

   :root {
    /* Color Variables */
    --white: #ffffff;
    --black: #000000;
    
    /* Navy Colors - More vibrant and modern */
    --navy-900: #0a192f;    /* Darker navy */
    --navy-800: #112240;    /* Slightly lighter navy */
    --navy-700: #1a365d;    /* Medium navy */
    --navy-600: #2c5282;    /* Lighter navy */
    
    /* Gray Scale */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Primary Colors */
    --primary-50: #f0f9ff;
    --primary-100: #e0f2fe;
    --primary-200: #bae6fd;
    --primary-300: #7dd3fc;
    --primary-400: #38bdf8;
    --primary-500: #0ea5e9;
    --primary-600: #0284c7;
    --primary-700: #0369a1;
    --primary-800: #075985;
    --primary-900: #0c4a6e;
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(90deg, #3b82f6, #009688);
    --gradient-primary-hover: linear-gradient(90deg, #2563eb, #0d9488);
    --gradient-secondary: linear-gradient(135deg, #8b5cf6, #ec4899);
    --gradient-dark: linear-gradient(135deg, #1e293b, #0f172a);
    
    /* Typography */
    --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    
    /* Spacing */
    --spacing-1: 0.25rem;   /* 4px */
    --spacing-2: 0.5rem;    /* 8px */
    --spacing-3: 0.75rem;   /* 12px */
    --spacing-4: 1rem;      /* 16px */
    --spacing-5: 1.25rem;   /* 20px */
    --spacing-6: 1.5rem;    /* 24px */
    --spacing-8: 2rem;      /* 32px */
    --spacing-10: 2.5rem;   /* 40px */
    --spacing-12: 3rem;     /* 48px */
    --spacing-16: 4rem;     /* 64px */
    --spacing-20: 5rem;     /* 80px */
    
    /* Border Radius */
    --radius-sm: 0.25rem;   /* 4px */
    --radius: 0.375rem;     /* 6px */
    --radius-md: 0.5rem;    /* 8px */
    --radius-lg: 0.75rem;   /* 12px */
    --radius-xl: 1rem;      /* 16px */
    --radius-2xl: 1.5rem;   /* 24px */
    --radius-full: 9999px;  /* Full circle */
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    --shadow-outline: 0 0 0 3px rgba(66, 153, 225, 0.5);
    --shadow-none: none;
    
    /* Transitions */
    --transition: all 0.2s ease-in-out;
    --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease-in-out;
    --navy-700: #233554;    /* Medium navy */
    --navy-600: #3a506b;    /* Lighter navy */
    
    /* Green Colors - Brighter and more vibrant */
    --green-900: #004d40;   /* Dark green */
    --green-800: #00695c;   /* Dark teal */
    --green-700: #00796b;   /* Teal */
    --green-600: #00897b;   /* Medium teal */
    --green-500: #009688;   /* Teal 500 */
    --green-400: #26a69a;   /* Light teal */
    --green-300: #4db6ac;   /* Lighter teal */
    
    /* Theme Colors */
    --primary-color: var(--navy-900);     /* Primary Navy */
    --secondary-color: var(--green-500);  /* Primary Teal */
    --accent-color: var(--green-400);     /* Accent Teal */
    --dark-color: var(--navy-800);        /* Dark Navy */
    --light-color: #f8fafc;               /* Off-white */
    --text-color: #2d3748;                /* Dark gray for text */
    --text-light: #4a5568;                /* Lighter gray for secondary text */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--green-600) 0%, var(--green-400) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--navy-900);
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.25;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

a {
    color: var(--primary-600);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-700);
    text-decoration: underline;
}

/* Layout */
/* Moved to layout.css */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.625rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
}

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

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

.btn-secondary {
    background: white;
    color: var(--primary-600);
    border: 1px solid var(--primary-600);
}

.btn-secondary:hover {
    background: var(--primary-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

.mt-1 { margin-top: var(--spacing-1) !important; }
.mt-2 { margin-top: var(--spacing-2) !important; }
.mt-3 { margin-top: var(--spacing-3) !important; }
.mt-4 { margin-top: var(--spacing-4) !important; }
.mt-5 { margin-top: var(--spacing-5) !important; }
.mt-6 { margin-top: var(--spacing-6) !important; }
.mt-8 { margin-top: var(--spacing-8) !important; }
.mt-10 { margin-top: var(--spacing-10) !important; }
.mt-12 { margin-top: var(--spacing-12) !important; }
.mt-16 { margin-top: var(--spacing-16) !important; }
.mt-20 { margin-top: var(--spacing-20) !important; }

.mb-1 { margin-bottom: var(--spacing-1) !important; }
.mb-2 { margin-bottom: var(--spacing-2) !important; }
.mb-3 { margin-bottom: var(--spacing-3) !important; }
.mb-4 { margin-bottom: var(--spacing-4) !important; }
.mb-5 { margin-bottom: var(--spacing-5) !important; }
.mb-6 { margin-bottom: var(--spacing-6) !important; }
.mb-8 { margin-bottom: var(--spacing-8) !important; }
.mb-10 { margin-bottom: var(--spacing-10) !important; }
.mb-12 { margin-bottom: var(--spacing-12) !important; }
.mb-16 { margin-bottom: var(--spacing-16) !important; }
.mb-20 { margin-bottom: var(--spacing-20) !important; }

/* Import Components */
@import 'layout.css';
@import 'navigation.css';
@import 'faq.css';

/* Base Typography */
p {
    margin-bottom: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Links */
a {
    color: var(--primary-600);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-700);
    text-decoration: underline;
}

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

/* ======================
   BUTTON STYLES
   ====================== */

/* Base Button Styles */
.btn, .cta-button, button:not([class]) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    line-height: 1.5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
}

/* Primary Button */
.btn-primary, 
.cta-button.primary,
.btn-primary:hover,
.cta-button.primary:hover {
    background: linear-gradient(90deg, #3b82f6, #009688);
    color: white;
    border: 2px solid transparent;
}

/* Secondary Button */
.btn-secondary,
.cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover,
.cta-button.secondary:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.2);
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: #009688;
    border: 2px solid #009688;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #009688);
    z-index: -1;
    transition: width 0.3s ease;
}

.btn-outline:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover::before {
    width: 100%;
}

/* Ghost Button */
.btn-ghost {
    background: transparent;
    color: #86b4ff;
    border: 2px solid transparent;
}

.btn-ghost:hover {
    background: rgba(59, 130, 246, 0.1);
}

/* Button Sizes */
.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
}

/* Full Width Button */
.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

/* Button with Icon */
.btn i, .cta-button i {
    transition: transform 0.3s ease;
}

.btn:hover i, .cta-button:hover i {
    transform: translateX(3px);
}

/* Hover & Active States */
.btn:hover:not(:disabled):not(.disabled),
.cta-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.25);
}

.btn:active:not(:disabled):not(.disabled),
.cta-button:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Focus State */
.btn:focus,
.cta-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

/* Disabled State */
.btn:disabled,
.btn.disabled,
.cta-button:disabled {
    opacity: 0.65;
    pointer-events: none;
    transform: none !important;
    box-shadow: none !important;
}

/* Button Groups */
.btn-group {
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Portfolio CTA Responsive */
@media (max-width: 1199px) {
    .portfolio-cta {
        margin: 90px 20px 0;
        padding: 60px 30px;
    }
    
    .portfolio-cta h3 {
        font-size: 2.2rem;
    }
    
    .portfolio-cta p {
        font-size: 1.15rem;
        margin-bottom: 35px;
    }
}

@media (max-width: 991px) {
    .portfolio-cta {
        margin: 80px 15px 0;
        padding: 50px 25px;
    }
    
    .portfolio-cta h3 {
        font-size: 2rem;
    }
    
    .portfolio-cta p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .portfolio-cta {
        margin: 60px 12px 0;
        padding: 40px 20px;
        border-radius: 14px;
    }
    
    .portfolio-cta h3 {
        font-size: 1.8rem;
        margin-bottom: 18px;
    }
    
    .portfolio-cta p {
        font-size: 1.05rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .cta-note {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        max-width: 300px;
        padding: 12px 20px;
        border-radius: 12px;
        gap: 8px;
    }
    
    .cta-note > span {
        width: 100%;
        padding: 4px 0;
    }
    
    .cta-note i {
        margin-right: 8px;
        font-size: 0.85em;
    }
}

@media (max-width: 576px) {
    .portfolio-cta {
        padding: 35px 15px;
        margin: 50px 10px 0;
        border-radius: 12px;
    }
    
    .portfolio-cta h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .portfolio-cta p {
        font-size: 1rem;
        margin: 0 auto 25px;
        padding: 0 5px;
        line-height: 1.6;
    }
    
    .cta-buttons .btn {
        padding: 13px 18px;
        font-size: 0.95rem;
    }
    
    .cta-note {
        font-size: 0.9rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .btn, .cta-button {
        padding: 10px 20px;
        font-size: 0.9375rem;
    }
    
    .btn-lg, .cta-button.btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .btn-group {
        width: 100%;
    }
    
    .btn-group .btn,
    .btn-group .cta-button {
        flex: 1;
        text-align: center;
    }
}

/* Special Button Styles */
.btn-gradient {
    background: linear-gradient(90deg, #3b82f6, #009688);
    color: white;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #009688);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-gradient:hover::before {
    opacity: 1;
}

/* Floating Action Button */
.btn-fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-fab i {
    font-size: 1.5rem;
    margin: 0;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* CTA Buttons */
.cta-button {
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.cta-button i {
    font-size: 1.1em;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 15px 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(15deg);
}

.logo-dot {
    color: #4F46E5;
    font-weight: 700;
}

.logo span {
    color: #3b82f6;
    font-weight: 800;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: #475569;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #009688);
    background: -webkit-linear-gradient(90deg, #3b82f6, #009688);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #0f172a;
}

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

.nav-links .cta-button {
    background: linear-gradient(90deg, #3b82f6, #009688);
    color: white;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-left: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
}

.nav-links .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #009688, #3b82f6);
    transition: width 0.3s ease;
    z-index: -1;
}

.nav-links .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 150, 136, 0.4);
}

.nav-links .cta-button:hover::before {
    width: 100%;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #0f172a;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 80px 20px 40px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 10px 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* ======================
   SERVICES SECTION
   ====================== */

.services {
    position: relative;
    padding: 100px 0;
    background-color: #f8fafc;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #009688;
    background: rgba(59, 130, 246, 0.1);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-title .text-gradient {
    background: linear-gradient(90deg, #3b82f6, #009688);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.section-description {
    font-size: 1.1rem;
    color: #009688;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #e2e8f0;
}

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

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f59e0b;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 0;
    background: #3b82f6;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 20px;
    border-bottom-right-radius: 20px;
    z-index: 2;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-header {
    padding: 30px 25px 20px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(0, 150, 136, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-600);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(59, 130, 246, 0.15);
    transition: all 0.3s ease;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #0f172a;
}

.service-price {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 5px;
}

.service-price span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-left: 5px;
}

.service-features {
    padding: 20px 25px;
    flex-grow: 1;
}

.service-features li {
    padding: 10px 0;
    border-bottom: 1px dashed #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
    font-size: 0.95rem;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: #3b82f6;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.service-features li:hover i {
    transform: scale(1.2);
    color: #8b5cf6;
}

.service-footer {
    padding: 5px 15px 20px;
    text-align: center;
}

/* ======================
   CTA SECTION
   ====================== */
.services-cta {
    position: relative;
    background: #0a192f;
    border-radius: 16px;
    padding: 80px 40px;
    margin: 100px auto 0;
    max-width: 1200px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(10, 25, 47, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHBhdGggZD0iTTAgMGgxMDB2MTAwSDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTUwIDUwbC0yNSAyNUgwbC0yNS0yNSAyNS0yNWgyNXoiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wMykiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybikiLz48L3N2Zz4=');
    opacity: 0.15;
    z-index: -1;
}

.services-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -15px rgba(10, 25, 47, 0.6);
}

.services-cta .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-cta h3 {
    color: white !important;
    font-size: 2.5rem;
    margin: 0 0 20px 0;
    font-weight: 800;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.5px;
}

.services-cta h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: #64ffda;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.services-cta:hover h3::after {
    width: 100px;
    background: #4fd1c5;
}

.services-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    line-height: 1.8;
    margin: 0 auto 40px;
    max-width: 700px;
    position: relative;
    padding: 0 20px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    z-index: -1;
}

.cta-button:hover::before {
    width: 100%;
}

.cta-button i {
    margin-right: 10px;
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(3px);
}

.cta-button.primary {
    background: white;
    color: #0a192f;
    position: relative;
    overflow: hidden;
    border: 2px solid white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button.primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 25, 47, 0.1) 0%, rgba(10, 25, 47, 0) 50%, rgba(10, 25, 47, 0.1) 100%);
    background-size: 200% 100%;
    animation: shine 3s infinite;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button.primary:hover::after {
    opacity: 1;
}

@keyframes shine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    background: white;
    color: #0a192f;
    border-color: white;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button.secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: white;
    transition: width 0.3s ease;
    z-index: -1;
}

.cta-button.secondary:hover {
    color: #0a192f;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.cta-button.secondary:hover::before {
    width: 100%;
}

.cta-note {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    background: rgba(0, 0, 0, 0.15);
    padding: 12px 25px;
    border-radius: 50px;
    margin: 20px auto 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    box-sizing: border-box;
}

.cta-note > span {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    margin: 2px 0;
}

.cta-note i {
    color: #64ffda;
    margin-right: 8px;
    font-size: 0.95em;
    min-width: 16px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

.cta-note:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
    transition: all 0.5s ease;
}

.services-cta:hover .cta-shape {
    transform: rotate(5deg) scale(1.05);
    opacity: 0.7;
}

.cta-shape svg {
    width: 100%;
    height: 100%;
}

/* Responsive Breakpoints */
@media (max-width: 1199px) {
    .services-cta {
        margin: 90px 20px 0;
        padding: 50px 30px;
    }
    
    .services-cta h3 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 991px) {
    .services-cta {
        margin: 80px 15px 0;
        padding: 45px 25px;
    }
    
    .services-cta h3 {
        font-size: 1.2rem;
    }
    
    .services-cta p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .services-cta {
        margin: 60px 12px 0;
        padding: 40px 20px;
        border-radius: 14px;
    }
    
    .services-cta h3 {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }
    
    .services-cta p {
        font-size: 1.05rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .cta-buttons {
        gap: 12px;
    }
    
    .cta-button {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .cta-note {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .services-cta {
        padding: 35px 15px;
        margin: 50px 10px 0;
        border-radius: 12px;
    }
    
    .services-cta h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .services-cta p {
        font-size: 1rem;
        margin: 0 auto 25px;
        padding: 0 5px;
        line-height: 1.6;
    }
    
    .cta-button {
        padding: 13px 18px;
        font-size: 0.95rem;
    }
    
    .cta-button i {
        font-size: 1em;
        margin-right: 8px;
    }
    
    .cta-note {
        font-size: 0.8rem;
        padding: 7px 10px;
        text-align: left;
        width: 100%;
        box-sizing: border-box;
        line-height: 1.4;
    }
    
    .cta-shape {
        width: 200px;
        height: 200px;
    }
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
    .services-cta {
        padding: 30px 12px;
        margin: 40px 8px 0;
    }
    
    .services-cta h3 {
        font-size: 1.2rem;
    }
    
    .services-cta p {
        font-size: 0.95rem;
        margin-bottom: 22px;
    }
    
    .cta-button {
        padding: 12px 16px;
        font-size: 0.92rem;
    }
    
    .cta-note {
        font-size: 0.75rem;
        padding: 6px 10px;
        line-height: 1.4;
        text-align: left;
    }
    
    .cta-shape {
        display: none; /* Hide shape on very small screens */
    }
}
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .cta-note {
        font-size: 0.8rem;
    }
    


/* Portfolio Section */
.portfolio {
    position: relative;
    background: #0f172a;
    padding: 120px 0;
    overflow: hidden;
    z-index: 1;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 20%, rgba(30, 58, 138, 0.15) 0%, transparent 30%),
                radial-gradient(circle at 30% 80%, rgba(234, 88, 12, 0.1) 0%, transparent 30%);
    z-index: -1;
    animation: gradientMove 20s ease infinite alternate;
}

/* Portfolio Filters */
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.filter-btn:hover {
    color: var(--green-400);
    border-color: rgba(52, 211, 153, 0.3);
    background: rgba(16, 185, 129, 0.05);
}

.filter-btn.active {
    background: var(--gradient-secondary);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(4, 120, 87, 0.3);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 350px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-img-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(4, 120, 87, 0.9) 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 30px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
}

.portfolio-content {
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
    width: 100%;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-content {
    transform: translateY(0);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-category {
    display: inline-block;
    color: #ff9900;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    background: rgba(255, 153, 0, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.portfolio-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.portfolio-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0.15s;
}

.portfolio-link i {
    margin-left: 8px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.portfolio-link:hover {
    color: #ff9900;
}

.portfolio-link:hover i {
    transform: translateX(5px);
}

.portfolio-item:hover .portfolio-desc,
.portfolio-item:hover .portfolio-link {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item:hover .portfolio-link {
    color: #ff9900;
}

.portfolio-item:hover .portfolio-link i {
    transform: translateX(5px);
}

/* Portfolio CTA */
.portfolio-cta {
    position: relative;
    background: #0a192f;
    border-radius: 16px;
    padding: 20px 20px;
    margin: 100px auto 0;
    max-width: 1200px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(10, 25, 47, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    z-index: 1;
}

.portfolio-cta .container {
    position: relative;
    z-index: 2;
}

.portfolio-cta h3 {
    color: white;
    font-size: 1.2rem;
    margin: 0 0 20px 0;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.portfolio-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.portfolio-shape {
    position: absolute;
    bottom: -300px;
    left: -300px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: float 15s ease-in-out infinite alternate;
}

/* Hero animations */
@keyframes pulse {
    0% { transform: scale(1) rotate(5deg); }
    50% { transform: scale(1.05) rotate(5deg); }
    100% { transform: scale(1) rotate(5deg); }
}

@keyframes float {
    0% { transform: translateY(0px) rotate(1deg); }
    50% { transform: translateY(-20px) rotate(-1deg); }
    100% { transform: translateY(0px) rotate(1deg); }
}

/* Animation for portfolio items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-item.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .portfolio {
        padding: 80px 0;
    }
    
    .portfolio-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .portfolio-item {
        height: 300px;
    }
}

/* About Section */
.about {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    position: relative;
    overflow: hidden;
}

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

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 40px 20px;
    background-color: #0f172a;
    border-radius: 12px;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    border-color: #ff9900;
}

.stat h3 {
    font-size: 2.5rem;
    color: #ff9900;
    margin-bottom: 5px;
    font-weight: 700;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff9900;
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

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

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

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    font-size: 1.5rem;
    color: #2e8b57;
    margin-top: 5px;
    background: rgba(46, 139, 87, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.info-item:hover i {
    background: #ff9900;
    color: white;
    transform: rotate(15deg);
}

/* Footer */
.footer {
    background: var(--navy-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* Footer Logo */
.footer-logo-container {
    margin-bottom: 20px;
}

.footer-logo-container .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
}

.footer-logo-container .logo-icon {
    height: 2.5rem;
    width: auto;
    margin-right: 0.75rem;
    transition: transform 0.3s ease;
}

.footer-logo-container .logo-dot {
    color: #4F46E5;
}

.footer-logo-container .logo span {
    color: white;
}

.footer-logo-container .logo:hover .logo-icon {
    transform: rotate(15deg);
}

/* Mobile */
@media (max-width: 767px) {
    .footer-logo-container {
        text-align: center;
    }
    
    .footer-logo-container .logo {
        justify-content: center;
    }
}

.footer-about h3 span {
    color: #0f45f2;
    font-weight: 400;
}

.footer-about p {
    margin-bottom: 20px;
    color: var(--text-light);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    background: var(--green-700);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(4, 120, 87, 0.3);
    border-color: transparent;
}

.footer-links h4,
.footer-newsletter h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-links h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #0f45f2;
    border-radius: 2px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-weight: 300;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    color: var(--secondary-color);
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--green-400);
    padding-left: 5px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-newsletter p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    position: relative;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: white;
    outline: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
    border-color: var(--green-400);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.newsletter-form button {
    background: #0f45f2;
    color: white;
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 0 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(15, 69, 242, 0.3);
}

.newsletter-form button:hover {
    background: #0d3bd9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 69, 242, 0.4);
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 991px) {
    /* Header & Navigation */
    .header {
        padding: 15px 0;
    }
    
    .navbar {
        padding: 0 15px;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 30px 20px;
        transition: all 0.5s ease;
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        margin: 12px 0;
        font-size: 1.1rem;
        color: var(--navy-900);
        padding: 10px 20px;
        border-radius: 8px;
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover, 
    .nav-links a.active {
        background: rgba(59, 130, 246, 0.1);
        color: #3b82f6;
    }
    
    .nav-links .cta-button {
        margin-top: 10px;
        width: 80%;
        max-width: 250px;
        justify-content: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Hero Section */
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 40px 20px;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1rem;
        margin: 20px auto 30px;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
        margin: 25px 0;
    }
    
    .hero-buttons .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .hero-features {
        justify-content: center;
        margin: 20px 0 30px;
    }
    
    .feature-item {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }
    
    .stat-item {
        width: calc(50% - 10px);
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-image {
        margin: 0 auto;
        max-width: 90%;
    }
    
    .price-tag {
        right: 0;
        transform: rotate(5deg) scale(0.9);
    }
    
    /* Services Section */
    .services {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    
    .service-card {
        margin: 0 auto;
        max-width: 400px;
    }
    
    /* Portfolio Section */
    .portfolio {
        padding: 60px 0;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* CTA Section - Tablet */
    .services-cta {
        margin: 70px 15px 0;
        padding: 45px 25px;
    }
    
    .services-cta h3 {
        font-size: 1.2rem;
    }
    
    .services-cta p {
        font-size: 0.8rem;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-features {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        margin: 20px -15px 30px;
        padding: 15px;
        -webkit-overflow-scrolling: touch;
    }
    
    .feature-item {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
    
    .stat-item {
        width: calc(50% - 10px);
    }
    
    .price-tag {
        transform: rotate(5deg) scale(0.8);
        right: -10px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-features li {
        font-size: 0.9rem;
    }
    
    .service-price {
        font-size: 1.4rem;
    }
    
    .service-price .period {
        font-size: 0.8rem;
    }
    
    .service-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h4,
    .footer-newsletter h4 {
        justify-content: center;
    }
    
    .footer-links h4::after,
    .footer-newsletter h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .info-item {
        /* Styles for info-item */
    }
}

/* ======================
   TENTANG KAMI SECTION - COMPACT
   ====================== */
.tentang-kami {
    position: relative;
    padding: 60px 0;
    background: var(--primary-color);
}

.tentang-kami .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.tentang-kami .section-title {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.tentang-kami .section-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.tentang-kami-grid {
    display: flex;
    gap: 30px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.tentang-kami-content {
    flex: 1;
    padding-right: 20px;
}

.tentang-kami-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.3;
}

.tentang-kami-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Features Grid - More Compact */
.tentang-kami-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.tentang-kami .feature-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    transition: all 0.2s ease;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 8px;
    background: #e0f2fe;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e40af;
    font-size: 1rem;
}

.feature-text h4 {
    font-size: 0.9rem;
    color: #1e40af;
    margin: 0 0 4px 0;
    font-weight: 600;
}

.feature-text p {
    font-size: 0.75rem;
    color: #4b5563;
    margin: 0;
    line-height: 1.4;
}

/* Image Styles - More Compact */
.tentang-kami-image {
    flex: 0 0 45%;
    max-width: 45%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    align-self: stretch;
}

.tentang-kami-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Hover Effects */
.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tentang-kami-image:hover img {
    transform: scale(1.03);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .tentang-kami-grid {
        flex-direction: column;
        gap: 25px;
        padding: 0 15px;
    }
    
    .tentang-kami-content {
        padding: 0;
        width: 100%;
    }
    
    .tentang-kami-image {
        flex: 0 0 auto;
        margin: 0 auto 20px;
        text-align: center;
        max-width: 90%;
    }
    
    .tentang-kami-features {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 500px;
        margin: 0 auto;
        padding: 0 10px;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .tentang-kami-grid {
        padding: 0 5px;
        margin-top: 20px;
    }
    
    .tentang-kami-content h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .tentang-kami-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .tentang-kami-features {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 0 5px;
        max-width: 400px;
        margin: 20px auto 0;
    }
    
    .feature-item {
        padding: 10px 12px;
        height: auto;
        min-height: 42px;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    
    .feature-icon {
        width: 24px;
        height: 24px;
        margin-right: 10px;
        border-radius: 5px;
        background: #e0f2fe;
    }
    
    .feature-text h4 {
        font-size: 0.85rem;
        color: #1e40af;
        margin: 0 0 2px 0;
        display: block;
    }
    
    .feature-text p {
        font-size: 0.75rem;
        color: #4b5563;
        margin: 0 0 0 34px;
        line-height: 1.4;
    }
    
    .feature-item {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

.tentang-kami .feature-item {
    text-align: center;
    padding: 35px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    box-sizing: border-box;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    transform: translateY(0);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tentang-kami .feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 700;
}

.tentang-kami .feature-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
    text-decoration: none;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
    margin-top: 10px;
}

.tentang-kami .feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.feature-item:hover .feature-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 25px rgba(59, 130, 246, 0.25);
}

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

.feature-item:hover .feature-icon i {
    color: white;
    animation: bounce 0.8s ease infinite alternate;
}

.tentang-kami .feature-item:hover .feature-text h4 {
    color: #ffffff;
}

.feature-item:hover .feature-text h4::after {
    width: 60%;
    opacity: 1;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-5px);
    }
}

.feature-item:hover p {
    opacity: 1;
    transform: translateY(0);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #3b82f6;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    border: 2px solid rgba(59, 130, 246, 0.1);
}

.feature-icon i {
    position: relative;
    z-index: 2;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    opacity: 0;
    border-radius: 20px;
    transition: opacity 0.4s ease;
}

.tentang-kami .feature-text h4 {
    color: #1e40af;
    margin: 20px 0 12px;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.3px;
}

.tentang-kami .feature-text h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 3px;
    transition: all 0.4s ease;
    opacity: 0.8;
}

.tentang-kami .feature-text h4::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #5c6bc0;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.tentang-kami .feature-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.7;
    text-align: center;
    max-width: 100%;
    padding: 10px 15px 0;
    position: relative;
    z-index: 2;
    font-weight: 400;
    opacity: 0.9;
}

.tentang-kami-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: all 0.3s ease;
    height: 100%;
}

.tentang-kami-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .tentang-kami-image {
        max-width: 500px;
        margin: 0 auto;
        height: auto;
    }
    
    .tentang-kami-image img {
        height: 400px;
        width: auto;
    }
}

@media (max-width: 768px) {
    .tentang-kami-image {
        max-width: 100%;
        margin: 0 auto 20px;
    }
}

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

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    left: auto;
    background: linear-gradient(135deg, #5c6bc0 0%, #3949ab 100%);
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(26, 35, 126, 0.3);
    text-align: center;
    z-index: 3;
    transform: translateY(20px);
    opacity: 0;
    animation: floatUp 0.6s forwards 0.4s;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.experience-badge .years {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.experience-badge span:last-child {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

@keyframes floatUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.tentang-kami-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .tentang-kami-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tentang-kami-image {
        min-height: 400px;
        order: -1;
    }
    
    .tentang-kami-content {
        text-align: center;
    }
    
    .tentang-kami-features {
        max-width: 600px;
        margin: 35px auto 40px;
    }
    
    .tentang-kami .feature-item {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .tentang-kami {
        padding: 80px 0;
    }
    
    .tentang-kami .section-title {
        font-size: 2rem;
    }
    
    .tentang-kami-content h3 {
        font-size: 1.7rem;
    }
    
    .experience-badge {
        padding: 15px 20px;
    }
    
    .experience-badge .years {
        font-size: 2rem;
    }
}