/*
Theme Name: WebWise Professional
Description: A modern, professional WordPress theme with stunning gradients and responsive design. Perfect for agencies, consultants, and tech companies.
Author: WebWise Pro
Version: 1.0.0
Text Domain: webwise-pro
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* Import Modern Sections Styling */
@import url('./assets/css/modern-sections.css');
@import url('./assets/css/footer-styles.css');

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

:root {
    /* Premium Brand Colors - Teal/Cyan Theme (matching React) */
    --primary: 186 83% 53%;
    --primary-foreground: 0 0% 100%;
    --primary-light: 186 83% 65%;
    --primary-dark: 186 83% 41%;
    --primary-glow: 186 83% 70%;

    /* Sophisticated Secondary - Emerald */
    --secondary: 160 84% 39%;
    --secondary-foreground: 0 0% 100%;
    --secondary-light: 160 84% 51%;
    --secondary-dark: 160 84% 27%;

    /* Premium Accent - Cyan */
    --accent: 194 78% 52%;
    --accent-foreground: 0 0% 100%;
    --accent-light: 194 78% 64%;

    /* Sophisticated Neutrals */
    --background: 0 0% 100%;
    --foreground: 224 71% 4%;
    --muted: 210 40% 98%;
    --muted-foreground: 215 16% 47%;
    --card: 0 0% 100%;
    --card-foreground: 224 71% 4%;
    --border: 220 13% 91%;
    --neutral-light: 210 20% 98%;
    --neutral-medium: 215 15% 65%;
    --neutral-dark: 220 13% 18%;

    /* Dark Mode */
    --dark-background: 224 71% 4%;
    --dark-foreground: 213 31% 91%;
    --dark-card: 220 13% 18%;
    --dark-border: 215 27% 17%;

    /* Premium Gradients - Teal/Emerald Theme */
    --gradient-primary: linear-gradient(135deg, hsl(186 83% 53%), hsl(160 84% 39%));
    --gradient-hero: linear-gradient(135deg, hsl(186 83% 53%) 0%, hsl(160 84% 39%) 100%);
    --gradient-accent: linear-gradient(90deg, hsl(186 83% 53%), hsl(194 78% 52%));
    --gradient-subtle: linear-gradient(180deg, hsl(0 0% 100%), hsl(210 40% 98%));
    --gradient-dark: linear-gradient(135deg, hsl(220 13% 18%), hsl(224 71% 4%));
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));

    /* Professional Shadows & Effects */
    --shadow-sm: 0 1px 2px 0 hsl(186 83% 53% / 0.05);
    --shadow-md: 0 4px 6px -1px hsl(186 83% 53% / 0.1), 0 2px 4px -1px hsl(186 83% 53% / 0.06);
    --shadow-lg: 0 10px 15px -3px hsl(186 83% 53% / 0.1), 0 4px 6px -2px hsl(186 83% 53% / 0.05);
    --shadow-xl: 0 20px 25px -5px hsl(186 83% 53% / 0.1), 0 10px 10px -5px hsl(186 83% 53% / 0.04);
    --shadow-glow: 0 0 20px hsl(186 83% 53% / 0.15);
    --shadow-glow-lg: 0 0 40px hsl(186 83% 53% / 0.2);

    /* Premium Animations */
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-theme="dark"] {
    --background: 224 71% 4%;
    --foreground: 213 31% 91%;
    --card: 220 13% 18%;
    --card-foreground: 213 31% 91%;
    --border: 215 27% 17%;
    --muted: 215 27% 17%;
    --muted-foreground: 217 10% 65%;
    
    --primary: 186 83% 65%;
    --primary-foreground: 224 71% 4%;
    --primary-light: 186 83% 77%;
    --primary-dark: 186 83% 53%;
    
    --secondary: 160 84% 51%;
    --secondary-foreground: 224 71% 4%;
    
    --accent: 194 78% 64%;
    --accent-foreground: 224 71% 4%;
    
    --gradient-primary: linear-gradient(135deg, hsl(186 83% 65%), hsl(160 84% 51%));
    --gradient-hero: linear-gradient(135deg, hsl(186 83% 65%) 0%, hsl(160 84% 51%) 100%);
    --gradient-accent: linear-gradient(90deg, hsl(186 83% 65%), hsl(194 78% 64%));
    --gradient-subtle: linear-gradient(180deg, hsl(224 71% 4%), hsl(215 27% 17%));
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

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

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

/* Typography */
.heading-xl {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.heading-lg {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.heading-md {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
}

.heading-sm {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    line-height: 1.4;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

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

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

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

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 18px;
}

/* Modern Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid hsl(var(--border));
    transition: var(--transition-smooth);
}

[data-theme="dark"] .site-header {
    background: rgba(15, 23, 42, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

[data-theme="dark"] .site-header.scrolled {
    background: rgba(15, 23, 42, 0.98);
}

.site-header.glass {
    background: var(--gradient-glass);
}

.nav-container-wrapper {
    padding: 0 24px;
}

.main-nav {
    padding: 1rem 0;
}

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

.logo,
.logo-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.logo:hover,
.logo-modern:hover {
    transform: translateY(-2px);
}

.logo-icon,
.logo-icon-modern {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.logo-letter {
    font-size: 28px;
    font-weight: 900;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.nav-right-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.nav-menu a,
.nav-link {
    text-decoration: none;
    color: hsl(var(--foreground));
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition-smooth);
    position: relative;
}

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

.nav-menu a::after,
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}

.nav-menu a:hover::after,
.nav-link:hover::after {
    width: 100%;
}

.btn-cta,
.btn-cta-nav,
.btn-premium {
    background: var(--gradient-primary);
    color: white !important;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--shadow-md);
}

.btn-cta:hover,
.btn-cta-nav:hover,
.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-cta::after,
.btn-cta-nav::after {
    display: none !important;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: hsl(var(--foreground));
}

/* Theme Toggle Button */
.theme-toggle {
    background: none;
    border: 2px solid hsl(var(--border));
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: hsl(var(--foreground));
    position: relative;
}

.theme-toggle:hover {
    background: hsl(var(--muted));
    border-color: hsl(var(--primary));
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    position: absolute;
    transition: var(--transition-smooth);
}

[data-theme="dark"] .theme-toggle {
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

[data-theme="dark"] .theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: hsl(var(--primary));
}

.theme-icon {
    opacity: 0;
    transform: scale(0) rotate(90deg);
}

.theme-icon.sun {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

[data-theme="dark"] .theme-icon.sun {
    opacity: 0;
    transform: scale(0) rotate(-90deg);
}

[data-theme="dark"] .theme-icon.moon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid hsl(var(--border));
    padding: 1rem 0;
}

.mobile-nav-menu {
    list-style: none;
    gap: 1rem;
    display: flex;
    flex-direction: column;
}

.mobile-nav-menu a {
    text-decoration: none;
    color: hsl(var(--foreground));
    font-weight: 500;
    padding: 0.5rem 0;
}

/* Modern Hero Section */
.hero-modern {
    min-height: 100vh;
    background: linear-gradient(135deg, hsl(221 83% 53% / 0.95), hsl(262 83% 58% / 0.9)), url('./assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 80px;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0.9;
    z-index: 0;
}

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

.hero-content-modern {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.badge-modern {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-modern h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 32px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
}

.hero-gold-text {
    display: block;
    background: linear-gradient(to right, white, #e0f2fe, #ddd6fe);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 16px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-bottom: 48px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 500;
}

.hero-cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.btn-professional {
    background: white;
    color: hsl(var(--primary));
    font-size: 20px;
    padding: 24px 64px;
    border-radius: 12px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.btn-professional:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    font-size: 20px;
    padding: 24px 64px;
    border-radius: 12px;
    font-weight: 600;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

.btn-xl {
    padding: 24px 64px;
    font-size: 20px;
}

.hero-guarantee {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: hsl(var(--muted));
}

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

.service-card {
    background: hsl(var(--card));
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.service-card p {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: hsl(var(--muted-foreground));
    position: relative;
    padding-left: 1.5rem;
}

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

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    margin-top: 1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    padding: 6rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: hsl(var(--muted));
    text-align: center;
}

.contact h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.contact > .container > p {
    color: hsl(var(--muted-foreground));
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: hsl(var(--card));
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid hsl(var(--border));
    border-radius: 8px;
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    font-size: 16px;
    margin-bottom: 1rem;
    font-family: inherit;
}

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

.form-input::placeholder,
.form-textarea::placeholder {
    color: hsl(var(--muted-foreground));
}

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

.contact-form .btn-primary {
    width: 100%;
    margin-top: 0.5rem;
}

/* Footer */
.site-footer {
    background: hsl(var(--foreground));
    color: white;
    padding: 4rem 0 1rem;
}

[data-theme="dark"] .site-footer {
    background: var(--dark-background);
    border-top: 1px solid var(--dark-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.7;
}

/* Modern Stats Section */
.stats-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

[data-theme="dark"] .stats-section {
    background: hsl(var(--card));
}

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

.stat-item {
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-8px);
}

.stat-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.stat-icon svg {
    padding: 16px;
    background: hsl(var(--primary) / 0.1);
    border-radius: 16px;
    color: hsl(var(--primary));
    transition: var(--transition-smooth);
}

.stat-item:hover .stat-icon svg {
    background: hsl(var(--primary) / 0.2);
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    color: hsl(var(--muted-foreground));
    font-weight: 600;
    font-size: 18px;
}

/* Modern GMBA Section */
.gmba-section {
    padding: 96px 0;
    background: linear-gradient(to bottom right, hsl(var(--background)), hsl(var(--muted) / 0.3));
}

[data-theme="dark"] .gmba-section {
    background: linear-gradient(to bottom right, hsl(var(--background)), hsl(var(--card)));
}

.gmba-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
    text-align: center;
}

.gmba-letter-box {
    text-align: center;
}

.gmba-letter {
    font-size: clamp(6rem, 12vw, 9rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -32px;
}

.gmba-word {
    font-size: clamp(1.5rem, 3vw, 3rem);
    font-weight: 700;
    color: hsl(var(--foreground));
}

.gmba-description {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: hsl(var(--muted-foreground));
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.7;
}

/* Services Grid - Enhanced */
.services-showcase {
    padding: 6rem 0;
    background: white;
}

[data-theme="dark"] .services-showcase {
    background: var(--dark-card);
}

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

.services-showcase h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.services-showcase .highlight {
    color: hsl(var(--primary));
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: var(--gradient-hero);
    color: white;
}

[data-theme="dark"] .process-section {
    background: var(--gradient-dark);
}

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

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

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-gold);
}

.process-step h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.process-step p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose-section {
    padding: 6rem 0;
    background: hsl(var(--muted));
}

[data-theme="dark"] .why-choose-section {
    background: var(--dark-background);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-points {
    list-style: none;
}

.why-choose-points li {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

[data-theme="dark"] .why-choose-points li {
    background: var(--dark-card);
}

.why-choose-points li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.why-choose-points .icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin-right: 1rem;
    vertical-align: middle;
}

.why-choose-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.why-choose-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: white;
}

[data-theme="dark"] .testimonials-section {
    background: var(--dark-card);
}

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

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

.testimonial-card {
    background: hsl(var(--muted));
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

[data-theme="dark"] .testimonial-card {
    background: var(--dark-background);
}

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

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: hsl(var(--foreground));
}

[data-theme="dark"] .testimonial-text {
    color: var(--dark-foreground);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.author-info p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    background: var(--gradient-hero);
    color: white;
    text-align: center;
}

[data-theme="dark"] .final-cta {
    background: var(--gradient-dark);
}

.final-cta h2 {
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-guarantees {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.guarantee-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.guarantee-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.guarantee-item p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Theme Toggle */
.theme-toggle {
    background: transparent;
    border: 2px solid hsl(var(--border));
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

[data-theme="dark"] .theme-toggle {
    border-color: rgba(255, 255, 255, 0.3);
}

.theme-toggle:hover {
    background: hsl(var(--muted));
    transform: rotate(15deg);
}

[data-theme="dark"] .theme-toggle:hover {
    background: var(--dark-card);
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Contact Messages */
.contact-message {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 1001;
    box-shadow: var(--shadow-lg);
    max-width: 300px;
}

.contact-success {
    background: hsl(160 84% 39%);
}

.contact-error {
    background: hsl(0 72% 51%);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        padding: 14px 28px;
        width: 100%;
        max-width: 300px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-guarantees {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }
    
    .services,
    .about,
    .contact,
    .stats-section,
    .gmba-section,
    .services-showcase,
    .process-section,
    .why-choose-section,
    .testimonials-section,
    .final-cta {
        padding: 4rem 0;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    #back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .contact-message {
        top: 80px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .heading-xl {
        font-size: 2rem;
    }
    
    .heading-lg {
        font-size: 1.75rem;
    }
}

/* Accessibility */
.screen-reader-text {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px !important;
    height: 1px !important;
    overflow: hidden;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    z-index: 999999;
    padding: 8px 16px;
    background: hsl(var(--foreground));
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.skip-link:focus {
    top: 6px;
}

/* Focus styles */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid hsl(var(--primary));
    outline-offset: 2px;
}

/* Animation utilities */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

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

/* Print styles */
@media print {
    .site-header,
    .contact,
    #back-to-top,
    .contact-message {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        background: none !important;
        color: black !important;
    }
}