/* Custom CSS for Twenty Twenty-Three Web Development Company Theme */

/* CSS Variables - 4mation Inspired Color Scheme */
:root {
    /* Primary Colors - Based on 4mation.com.au */
    --primary-bg: #FFFFFF;        /* Clean White Background */
    --secondary-color: #0066CC;   /* Professional Blue */
    --accent-color: #00B4D8;      /* Bright Cyan Blue */
    --success-color: #00A651;     /* Green for success/positive */
    
    /* Neutral Colors */
    --light-gray: #F8F9FA;        /* Very Light Gray */
    --medium-gray: #6C757D;       /* Medium Gray */
    --dark-gray: #212529;         /* Dark Gray/Charcoal */
    --border-gray: #E9ECEF;       /* Light Border Gray */
    
    /* Text Colors */
    --text-primary: #212529;      /* Dark Gray (primary text) */
    --text-secondary: #6C757D;    /* Medium Gray (secondary text) */
    --text-light: #ADB5BD;        /* Light Gray (muted text) */
    --text-white: #FFFFFF;        /* White */
    --text-blue: #0066CC;         /* Blue text for links */
    
    /* Legacy variables for compatibility */
    --primary-color: #0066CC;     /* Professional Blue */
    --base-color: #FFFFFF;        /* White */
    --contrast-color: #212529;    /* Dark Gray */
    --tertiary-color: #F8F9FA;    /* Light Gray */
    
    /* Typography */
    --font-primary: 'Inter', 'Helvetica Neue', 'Arial', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    
    /* Layout */
    --container-width: 1200px;
    --border-radius: 6px;
    --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--primary-bg);
    margin: 0;
    padding: 0;
    padding-top: 77px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Links */
a {
    color: #00AEEF;
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #00AEEF;
    text-decoration: none;
}

/* H1 - Main Titles - Professional Blue */
h1 { 
    font-size: 3rem; 
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
}

/* H2 - Section Titles - Dark Gray */
h2 { 
    font-size: 2.5rem; 
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
}

/* H3/H4 - Subheadings - Professional Blue */
h3 { 
    font-size: 2rem; 
    color: var(--secondary-color);
    font-weight: 600;
    line-height: 1.3;
}

h4 { 
    font-size: 1.5rem; 
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.4;
}

h5 { 
    font-size: 1.25rem; 
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.4;
}

h6 { 
    font-size: 1rem; 
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.4;
}

/* Paragraphs - Dark Gray on white backgrounds */
p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: var(--text-primary);
    line-height: 1.6;
}

/* Secondary text - Medium Gray */
.text-secondary {
    color: var(--text-secondary);
}

/* Light text for muted content */
.text-light {
    color: var(--text-light);
}

/* Blue text for links and highlights */
.text-blue {
    color: var(--text-blue);
}

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

/* Primary CTA Buttons - Professional Blue */
.btn-primary {
    background-color: var(--secondary-color);
    color: var(--text-white);
    border-color: var(--secondary-color);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--text-white);
    border-color: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.3);
}

/* Secondary CTA - Outline style */
.btn-outline {
    background-color: transparent;
    color: white;
    border-color: white;
    font-weight: 600;
}


.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--text-white);
    border-color: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.2);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* Utility Classes */
.highlight {
    color: var(--primary-color);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Floating Navigation */
.floating-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, 
        rgba(10, 25, 47, 0.95) 0%, 
        rgba(15, 30, 50, 0.95) 50%, 
        rgba(20, 35, 55, 0.95) 100%);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 102, 204, 0.3);
    border-bottom: 1px solid rgba(0, 174, 239, 0.3);
    transition: all 0.3s ease;
}

/* Futuristic grid pattern overlay */
.floating-navigation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 174, 239, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 174, 239, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.6;
    animation: gridMove 20s linear infinite;
}

/* Animated data points */
.floating-navigation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(0, 174, 239, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(157, 78, 221, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 40% 60%, rgba(0, 174, 239, 0.15) 1px, transparent 1px);
    background-size: 30px 30px, 25px 25px, 35px 35px;
    animation: dataPoints 15s ease-in-out infinite;
}
.wpcf7 form .wpcf7-response-output{
    margin-top: -20px !important;
}
@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

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

.floating-navigation.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, 
        rgba(10, 25, 47, 0.98) 0%, 
        rgba(15, 30, 50, 0.98) 50%, 
        rgba(20, 35, 55, 0.98) 100%);
    backdrop-filter: blur(20px);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.nav-brand {
    margin-right: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo-image {
    height: 82px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.nav-logo:hover .logo-image {
    transform: scale(1.05);
}


.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    transition: var(--transition);
    position: relative;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-link:hover,
.nav-link.active {
    color: #00AEEF;
    background-color: rgba(0, 174, 239, 0.2);
    text-shadow: 0 0 10px rgba(0, 174, 239, 0.5);
    box-shadow: 0 0 20px rgba(0, 174, 239, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00AEEF, #9D4EDD);
    transition: width 0.3s ease;
    border-radius: 1px;
    box-shadow: 0 0 10px rgba(0, 174, 239, 0.5);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 1001;
}

.hamburger {
    display: flex;
    flex-direction: column;
    width: 24px;
    height: 18px;
    justify-content: space-between;
    position: relative;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(0, 174, 239, 0.3);
    transform-origin: center;
}

.menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.menu-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

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

.site-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.site-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
}

.site-title a:hover {
    color: var(--secondary-color);
}

.site-description {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
    align-items: center;
}

.nav-menu li {
    margin: 0;
}

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



/* Main Content */
.site-main {
    min-height: 60vh;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--base-color);
    padding: 4rem 0;
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.25rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Hero Section - Clean White Background with Subtle Accents */
.hero-section {
    background: var(--primary-bg);
    color: white;
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section * {
    color: inherit;
}

/* Subtle gradient overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-image: url('/wp-content/uploads/2025/09/Gemini_Generated_Image_79fubm79fubm79fu-e1758452220100.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;   
}

/* Subtle geometric accent */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(0, 102, 204, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(0, 180, 216, 0.08) 0%, transparent 60%);
    z-index: 1;
}

/* Animated particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: particleFloat 6s linear infinite;
}

.particle:nth-child(2n) {
    background: var(--accent-color);
    animation-duration: 8s;
}

.particle:nth-child(3n) {
    background: rgba(255, 255, 255, 0.6);
    animation-duration: 10s;
}

/* Animated grid pattern */
.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 174, 239, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 174, 239, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    animation: gridMove 20s linear infinite;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

/* Keyframe animations */
@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(135deg, rgba(0, 174, 239, 0.1), rgba(157, 78, 221, 0.1));
    }
    50% {
        background: linear-gradient(135deg, rgba(157, 78, 221, 0.15), rgba(0, 174, 239, 0.15));
    }
}

@keyframes floatingShapes {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #FFFFFF;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight {
    color: #00AEEF;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 174, 239, 0.5);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: var(--tertiary-color);
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 5rem 0;
    background-color: var(--primary-bg);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-choose-item {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-gray);
    text-align: center;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #00AEEF;
}

.why-choose-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.why-choose-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.why-choose-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* AI Specialization Section */
.ai-specialization-section {
    padding: 5rem 0;
    background-color: var(--tertiary-color);
}

.ai-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

.ai-text {
    padding-right: 2rem;
}

.ai-subtitle {
    font-size: 1.75rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.ai-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

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

.ai-feature-item {
    background-color: var(--primary-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-gray);
    text-align: center;
}

.ai-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: #00AEEF;
}

.ai-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.ai-feature-title {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.ai-feature-description {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

.ai-cta {
    text-align: center;
    background-color: var(--primary-bg);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-gray);
}

.ai-cta-title {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.ai-cta-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

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

.service-card {
    background-color: var(--primary-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-gray);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--contrast-color);
}

.service-description {
    margin-bottom: 1.5rem;
    color: #666;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-cta {
    text-align: center;
}

/* Stats Section */
.stats-section {
    background-color: var(--secondary-color);
    color: var(--base-color);
    padding: 4rem 0;
}

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

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: var(--contrast-color);
    padding: 4rem 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

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

.contact-form-wrapper {
    background-color: var(--tertiary-color);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.form-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-description {
    margin-bottom: 2rem;
    color: #666;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--contrast-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

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

.contact-info {
    background-color: var(--dark-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0, 174, 239, 0.2);
}

.info-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.info-value {
    margin: 0;
    color: var(--text-primary);
}

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

.contact-icon {
    font-size: 1.25rem;
    color: var(--secondary-color);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-paragraph {
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 1.3rem;
    color: var(--text-primary);
}

.about-skills {
    margin-top: 2rem;
}

.skills-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.skills-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skills-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-gray);
    color: var(--text-primary);
}

.skills-list li:last-child {
    border-bottom: none;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--primary-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 0.5rem 0;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}


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

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.95) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%, 
        var(--accent-color) 100%);
}

.form-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    display: inline-block;
}

.form-group label::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid rgba(0, 102, 204, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(248, 250, 252, 0.9) 100%);
    color: var(--text-primary);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.02),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 102, 204, 0.4);
    font-style: italic;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(248, 250, 252, 1) 100%);
    box-shadow: 
        0 0 0 4px rgba(0, 102, 204, 0.1),
        0 4px 12px rgba(0, 102, 204, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: rgba(0, 102, 204, 0.6);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(0, 102, 204, 0.3);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 2px rgba(255, 255, 255, 0.9);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.6;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%230066cc' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    appearance: none;
}

.contact-form .btn {
    align-self: flex-start;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 100%);
    color: white;
    box-shadow: 
        0 4px 15px rgba(0, 102, 204, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.contact-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(0, 102, 204, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, 
        var(--secondary-color) 0%, 
        var(--accent-color) 100%);
}

.contact-form .btn:hover::before {
    left: 100%;
}

.contact-form .btn:active {
    transform: translateY(-1px);
    box-shadow: 
        0 4px 15px rgba(0, 102, 204, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form .btn:focus {
    outline: none;
    box-shadow: 
        0 0 0 4px rgba(0, 102, 204, 0.2),
        0 4px 15px rgba(0, 102, 204, 0.3);
}

/* Contact Form 7 Styling */
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.wpcf7-form p {
    margin: 0;
    display: flex;
    flex-direction: column;
}

.wpcf7-form label {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    display: inline-block;
}

.wpcf7-form label::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 1px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form select,
.wpcf7-form textarea {
    padding: 1rem 1.25rem;
    border: 2px solid rgba(0, 102, 204, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(248, 250, 252, 0.9) 100%);
    color: var(--text-primary);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.02),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: rgba(0, 102, 204, 0.4);
    font-style: italic;
    transition: all 0.3s ease;
}

.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(248, 250, 252, 1) 100%);
    box-shadow: 
        0 0 0 4px rgba(0, 102, 204, 0.1),
        0 4px 12px rgba(0, 102, 204, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.wpcf7-form input:focus::placeholder,
.wpcf7-form textarea:focus::placeholder {
    color: rgba(0, 102, 204, 0.6);
    transform: translateY(-2px);
}

.wpcf7-form input:hover,
.wpcf7-form select:hover,
.wpcf7-form textarea:hover {
    border-color: rgba(0, 102, 204, 0.3);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 2px rgba(255, 255, 255, 0.9);
}

.wpcf7-form textarea {
    min-height: 140px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.6;
}

.wpcf7-form select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%230066cc' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    appearance: none;
}

.wpcf7-form .wpcf7-submit {
    align-self: flex-start;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 100%);
    color: white;
    box-shadow: 
        0 4px 15px rgba(0, 102, 204, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.wpcf7-form .wpcf7-submit:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(0, 102, 204, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, 
        var(--secondary-color) 0%, 
        var(--accent-color) 100%);
}

.wpcf7-form .wpcf7-submit:hover::before {
    left: 100%;
}

.wpcf7-form .wpcf7-submit:active {
    transform: translateY(-1px);
    box-shadow: 
        0 4px 15px rgba(0, 102, 204, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.wpcf7-form .wpcf7-submit:focus {
    outline: none;
    box-shadow: 
        0 0 0 4px rgba(0, 102, 204, 0.2),
        0 4px 15px rgba(0, 102, 204, 0.3);
}

/* Fix Contact Form 7 submit button transparent background */
.wpcf7-form .wpcf7-submit {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 100%) !important;
    background-color: var(--primary-color) !important;
    color: white !important;
    border: none !important;
    opacity: 1 !important;
}

.wpcf7-form .wpcf7-submit:hover {
    background: linear-gradient(135deg, 
        var(--secondary-color) 0%, 
        var(--accent-color) 100%) !important;
    background-color: var(--secondary-color) !important;
    color: white !important;
}

.wpcf7-form .wpcf7-submit:active,
.wpcf7-form .wpcf7-submit:focus {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 100%) !important;
    background-color: var(--primary-color) !important;
    color: white !important;
}

/* Contact Form 7 validation styles */
.wpcf7-not-valid {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1) !important;
}

.wpcf7-not-valid-tip {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.wpcf7-validation-errors {
    background-color: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #f5c6cb;
    margin-top: 1rem;
}

.wpcf7-mail-sent-ok {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #c3e6cb;
    margin-top: 1rem;
}

.wpcf7-spinner {
    margin-left: 0.5rem;
}

/* Form validation styles */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e74c3c;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1);
}

.form-group.error label {
    color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Form success state */
.form-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Loading state for submit button */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.contact-info {
    background-color: var(--light-gray);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-gray);
    height: fit-content;
}

.info-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-weight: 700;
}

.info-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-gray);
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    margin: 0;
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 1rem;
}

.info-value a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.info-value a:hover {
    color: var(--secondary-color);
}

/* Floating Navigation Mobile */
@media (max-width: 768px) {
    body {
        padding-top: 70px; /* Adjust for smaller mobile header */
    }
    
    .nav-container {
        padding: 0.75rem 1.5rem;
        position: relative;
    }
    
    .logo-image {
        height: 60px;
    }
    
    .nav-menu-container {
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, 
            rgba(10, 25, 47, 0.98) 0%, 
            rgba(15, 30, 50, 0.98) 100%);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 8px 30px rgba(0, 102, 204, 0.4);
        border-top: 1px solid rgba(0, 174, 239, 0.3);
        z-index: 999;
        display: none;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        display: flex;
    }
    
    .nav-link {
        padding: 0.5rem 2rem;
        display: block;
        border-bottom: 1px solid rgba(0, 174, 239, 0.2);
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
        border-radius: 0;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background-color: rgba(0, 174, 239, 0.3);
        color: #00AEEF;
    }
    
    .menu-toggle {
        display: block;
        position: relative;
        z-index: 1000;
    }
    
    .nav-brand {
        margin-right: 0;
    }
}


/* Contact Section Responsive */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: auto;
    }
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-wrapper,
    .contact-info {
        padding: 1.5rem;
    }
    
    .form-title,
    .info-title {
        font-size: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem 1rem;
    }
    
    .contact-form .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper,
    .contact-info {
        padding: 1.25rem;
    }
    
    .form-title,
    .info-title {
        font-size: 1.25rem;
    }
    
    .form-group label {
        font-size: 0.875rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--text-white);
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    border: 1px solid rgba(0, 174, 239, 0.1);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1.5rem;
    margin: 0;
    background-color: var(--secondary-color);
    color: var(--text-white);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--accent-color);
    color: var(--text-white);
}

.faq-answer {
    padding: 1.5rem;
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio-section {
    padding: 5rem 0;
}

.portfolio-filter {
    padding: 2rem 0;
    text-align: center;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    border: 2px solid var(--contrast-color);
    color: var(--contrast-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--contrast-color);
    color: var(--base-color);
}

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

.portfolio-item {
    background-color: var(--base-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    height: 200px;
    background-color: var(--tertiary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: #666;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--contrast-color);
}

.portfolio-description {
    margin-bottom: 1rem;
    color: #666;
}

.portfolio-tech {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.portfolio-tech li {
    background-color: var(--tertiary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    color: var(--contrast-color);
}

.portfolio-cta {
    text-align: center;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background-color: var(--tertiary-color);
}

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

.team-member {
    background-color: var(--base-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.member-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--contrast-color);
}

.member-position {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #666;
    line-height: 1.6;
}

/* Footer - Clean White Background */
.site-footer {
    background-color: var(--light-gray);
    color: var(--text-primary);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-gray);
}

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

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.footer-description {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-heading {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--contrast-color);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--base-color);
    color: var(--contrast-color);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright,
.powered-by {
    margin: 0;
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .menu-toggle {
        display: block;
    }
    
    /* Ensure mobile menu is properly hidden by default */
    .nav-menu:not(.active) {
        display: none !important;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .services-grid,
    .portfolio-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .ai-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ai-text {
        padding-right: 0;
    }
    
    .ai-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .btn,
    .cta-section {
        display: none;
    }
    
    .site-main {
        margin: 0;
        padding: 0;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}
