/*
Theme Name: Hanacara Signature
Theme URI: https://hanacaraka.com
Author: Hanacaraka Software House
Author URI: https://hanacaraka.com
Description: A modern tech-themed WordPress theme with parallax scrolling effects for Hanacaraka Software House. Features dark blue/cyan color scheme, responsive design, and smooth parallax scrolling.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: dark, blue, cyan, tech, software, parallax, responsive, custom-logo, custom-menu, featured-images
Text Domain: hanacara-signature
*/

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-color);
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    color: var(--primary-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-cyan-light);
}

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

.section {
    padding: 100px 0;
    position: relative;
}

/* ============================================
   COLOR VARIABLES
   ============================================ */

:root {
    --primary-cyan: #00d4ff;
    --primary-cyan-light: #00f5ff;
    --primary-cyan-dark: #00a8cc;
    --primary-cyan-rgb: 0, 212, 255;
    --primary-cyan-dark-rgb: 0, 168, 204;
    --dark-bg: #0a0e17;
    --dark-bg-secondary: #111827;
    --dark-bg-tertiary: #1a2332;
    --text-light: #e0e0e0;
    --dark-text-muted: #b0b0b0;
    --dark-border-color: #2a3548;
    
    /* Light mode variables */
    --light-bg: #ffffff;
    --light-bg-secondary: #f8f9fa;
    --light-bg-tertiary: #ffffff;
    --text-dark: #212529;
    --text-muted-dark: #495057;
    --border-color-light: #dee2e6;
    --light-primary-cyan: #0056b3;
    --light-primary-cyan-light: #007bff;
    --light-primary-cyan-dark: #004085;
    --light-primary-cyan-rgb: 0, 86, 179;
    --light-primary-cyan-dark-rgb: 0, 64, 133;
    
    /* Theme-specific CSS variables (light theme as default) */
    /* Header */
    --header-bg: rgba(255, 255, 255, 0.95);
    --header-bg-scrolled: rgba(255, 255, 255, 0.98);
    --header-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    
    /* Navigation */
    --nav-text: var(--text-color);
    --logo-text: var(--text-color);
    --logo-icon-text: #ffffff;
    --menu-toggle-bg: #212529;
    --theme-toggle-hover: rgba(0, 0, 0, 0.05);
    
    /* Hero */
    --hero-title-gradient-start: #1a1a2e;
    --hero-title-gradient-end: #0056b3;
    --hero-grid-color: rgba(0, 86, 179, 0.05);
    --hero-badge-bg: rgba(0, 86, 179, 0.1);
    --hero-badge-border: rgba(0, 86, 179, 0.3);
    
    /* Buttons */
    --btn-primary-text: #ffffff;
    --btn-secondary-text: var(--primary-cyan);
    
    /* Components */
    --service-card-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    --social-hover-text: #ffffff;
    --mobile-menu-bg: #ffffff;
}

/* Dark theme overrides */
.dark-theme {
    --bg: var(--dark-bg);
    --bg-secondary: var(--dark-bg-secondary);
    --bg-tertiary: var(--dark-bg-tertiary);
    --text-color: var(--text-light);
    --text-muted: var(--dark-text-muted);
    --border-color: var(--dark-border-color);
    --primary-cyan: #00d4ff;
    --primary-cyan-light: #00f5ff;
    --primary-cyan-dark: #00a8cc;
    --primary-cyan-rgb: 0, 212, 255;
    --primary-cyan-dark-rgb: 0, 168, 204;

    /* Theme-specific overrides for dark mode */
    --header-bg: rgba(10, 14, 23, 0.95);
    --header-bg-scrolled: rgba(10, 14, 23, 0.98);
    --header-shadow: 0 2px 20px rgba(0, 212, 255, 0.1);
    --nav-text: var(--text-light);
    --logo-text: #ffffff;
    --logo-icon-text: #0a0e17;
    --menu-toggle-bg: #ffffff;
    --theme-toggle-hover: rgba(255, 255, 255, 0.1);
    --hero-title-gradient-start: #ffffff;
    --hero-title-gradient-end: #00d4ff;
    --hero-grid-color: rgba(0, 212, 255, 0.03);
    --hero-badge-bg: rgba(0, 212, 255, 0.1);
    --hero-badge-border: rgba(0, 212, 255, 0.3);
    --btn-primary-text: #0a0e17;
    --btn-secondary-text: #ffffff;
    --service-card-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
    --social-hover-text: var(--dark-bg);
    --mobile-menu-bg: var(--dark-bg-secondary);
}

/* Default to light theme variables (will be overridden by .dark-theme when active) */
body {
    --bg: var(--light-bg);
    --bg-secondary: var(--light-bg-secondary);
    --bg-tertiary: var(--light-bg-tertiary);
    --text-color: var(--text-dark);
    --text-muted: var(--text-muted-dark);
    --border-color: var(--border-color-light);
    --primary-cyan: var(--light-primary-cyan);
    --primary-cyan-light: var(--light-primary-cyan-light);
    --primary-cyan-dark: var(--light-primary-cyan-dark);
    --primary-cyan-rgb: var(--light-primary-cyan-rgb);
    --primary-cyan-dark-rgb: var(--light-primary-cyan-dark-rgb);
    --menu-toggle-bg: var(--text-dark);
    background-color: var(--bg);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: var(--header-bg-scrolled);
    box-shadow: var(--header-shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    padding: 15px 0;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--logo-text);
    text-decoration: none;
}

.site-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-cyan-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--logo-icon-text);
}

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

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-navigation ul li {
    position: relative;
}

.main-navigation ul li a {
    color: var(--nav-text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.main-navigation ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-cyan);
    transition: width 0.3s ease;
}

.main-navigation ul li a:hover {
    color: var(--primary-cyan);
}

.main-navigation ul li a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-left: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--menu-toggle-bg);
    transition: all 0.3s ease;
}

/* Theme Toggle */
.theme-toggle {
    color: var(--text-color);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.theme-toggle:hover {
    background: var(--theme-toggle-hover);
    transform: scale(1.1);
}

.theme-toggle:focus {
    outline: 2px solid var(--primary-cyan);
}

.theme-icon-dark,
.theme-icon-light {
    width: 24px;
    height: 24px;
}

/* Light theme is default - show moon icon (switch to dark) */
.theme-icon-dark {
    display: block;
}

.theme-icon-light {
    display: none;
}

/* When dark theme is active, show sun icon (switch to light) */
.dark-theme .theme-icon-dark {
    display: none;
}

.dark-theme .theme-icon-light {
    display: block;
}

/* ============================================
   HERO SECTION WITH PARALLAX
   ============================================ */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--bg);
}

.hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(var(--primary-cyan-rgb), 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(var(--primary-cyan-dark-rgb), 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-secondary) 100%);
    z-index: 1;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(var(--hero-grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--hero-grid-color) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
    transform: perspective(500px) rotateX(60deg);
    transform-origin: top center;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 0 50px; }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    transform: translateY(0);
    transition: transform 0.1s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--hero-badge-bg);
    border: 1px solid var(--hero-badge-border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-cyan);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--hero-title-gradient-start) 0%, var(--hero-title-gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.hero-title span {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    -webkit-text-fill-color: var(--primary-cyan);
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-cyan-dark));
    color: var(--btn-primary-text);
    box-shadow: 0 4px 15px rgba(var(--primary-cyan-rgb), 0.3);
}

.btn-primary:hover {
    transform: translateY(-px);
    box-shadow: 0 8px 25px rgba(var(--primary-cyan-rgb), 0.4);
    color: var(--btn-primary-text);
}

.btn-secondary {
    background: transparent;
    color: var(--btn-secondary-text);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-cyan);
    border-radius: 2px;
    animation: scrollDot 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scrollDot {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

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

.services-section {
    background: var(--bg-secondary);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--primary-cyan);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 20px;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
}

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

.service-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-cyan-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: var(--service-card-shadow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(var(--primary-cyan-rgb), 0.2), rgba(var(--primary-cyan-dark-rgb), 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

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

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-cyan);
}

.service-link:hover {
    gap: 12px;
}

/* ============================================
   ABOUT SECTION WITH PARALLAX
   ============================================ */

.about-section {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.about-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 70% 50%, rgba(var(--primary-cyan-rgb), 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 80%, rgba(var(--primary-cyan-dark-rgb), 0.05) 0%, transparent 50%);
    z-index: 1;
}

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

.about-text .section-subtitle {
    text-align: left;
}

.about-text .section-title {
    text-align: left;
    font-size: 2.5rem;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.about-features {
    list-style: none;
    margin-bottom: 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.about-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(var(--primary-cyan-rgb), 0.2);
    color: var(--primary-cyan);
    border-radius: 50%;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.about-visual {
    position: relative;
}

.about-image-container {
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.about-image-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(var(--primary-cyan-rgb), 0.1) 0%, transparent 70%);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(var(--primary-cyan-rgb), 0.05);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-cyan);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* About Visual Content */
.about-visual-content {
    text-align: center;
    padding: 40px 0;
}

.about-visual-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.about-visual-title {
    color: var(--text-color);
    margin-bottom: 10px;
}

.about-visual-subtitle {
    color: var(--text-muted);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    background: var(--bg-secondary);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
}

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

.contact-info .section-subtitle {
    text-align: left;
}

.contact-info .section-title {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-description {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(var(--primary-cyan-rgb), 0.1);
    border: 1px solid rgba(var(--primary-cyan-rgb), 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

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

.contact-form-container {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
}

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

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

.form-group label {
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    background: var(--bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

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

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--bg);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .site-logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-cyan);
    border-color: var(--primary-cyan);
    color: var(--social-hover-text);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   PAGE TEMPLATE STYLES
   ============================================ */

.page-header {
    padding: 150px 0 80px;
    background: var(--bg-secondary);
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 50% 100%, rgba(var(--primary-cyan-rgb), 0.1) 0%, transparent 60%);
}

.page-title {
    position: relative;
    z-index: 1;
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-content {
    padding: 60px 0;
    background: var(--bg);
}

.page-content .container {
    max-width: 800px;
}

.page-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--mobile-menu-bg);
        border-top: 1px solid var(--border-color);
        padding: 20px;
        display: none;
    }
    .theme-toggle {
        margin-left: auto;
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title span {
        font-size: 1rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 25px;
    }
}

/* ============================================
   WORDPRESS REQUIRED CLASSES
   ============================================ */

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

.screen-reader-text:focus {
    clip: auto;
    white-space: normal;
    height: auto;
    width: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    padding: 10px;
}

.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

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

/* ============================================
   ANIMATIONS
   ============================================ */

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
