/* Global Styles & Variables */
:root {
    /* Main colors */
    --primary: #4a28d7;
    --primary-light: #6e52e3;
    --primary-dark: #3517b9;
    --secondary: #3ac3a8;
    --accent: #ff3d71;
    
    /* Text colors */
    --text-dark: #1a1a2e;
    --text-light: #f7f7ff;
    --text-muted: #6c757d;
    
    /* Background colors */
    --bg-dark: #0f0e17;
    --bg-light: #f9f9fa;
    --bg-muted: #e9ecef;
    
    /* UI colors */
    --success: #0acf97;
    --info: #39afd1;
    --warning: #ffbc00;
    --danger: #fa5c7c;
    
    /* Glass effect colors */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-bg-dark: rgba(15, 14, 23, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-shadow: rgba(0, 0, 0, 0.1);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, #6b58e9 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, #2ce6c8 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #ff85a2 100%);
    --gradient-dark: linear-gradient(135deg, var(--bg-dark) 0%, #2a2a3a 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    
    /* Sizes */
    --header-height: 80px;
    --footer-height: 300px;
    --border-radius-sm: 4px;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-circle: 50%;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px.vsc-initialized8px rgba(0, 0, 0, 0.1);
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);
    --shadow-inset: inset 0 2px 10px rgba(0, 0, 0, 0.1);

    /* Fonts */
    --font-primary: 'Poppins', 'Noto Sans JP', sans-serif;
    --font-secondary: 'Noto Sans JP', 'Poppins', sans-serif;
    
    /* Other */
    --z-back: -1;
    --z-normal: 1;
    --z-front: 10;
    --z-overlay: 100;
    --z-modal: 1000;
    --z-tooltip: 2000;
    
    /* Dark mode overrides */
    --body-bg: var(--bg-light);
    --body-color: var(--text-dark);
    --card-bg: #ffffff;
    --card-border: rgba(0, 0, 0, 0.05);
}

/* Dark mode */
body.dark-mode {
    --body-bg: var(--bg-dark);
    --body-color: var(--text-light);
    --card-bg: #1a1a2e;
    --card-border: rgba(255, 255, 255, 0.05);
    --glass-bg: rgba(15, 14, 23, 0.5);
    --glass-border: rgba(255, 255, 255, 0.05);
}

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

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

body {
    font-family: var(--font-primary);
    color: var(--body-color);
    background: var(--body-bg);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

body.loading {
    overflow: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

button, input, textarea {
    font-family: var(--font-primary);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: var(--z-normal);
}

section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    color: var(--primary);
    position: relative;
    z-index: 10;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: var(--z-modal);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-animation {
    position: relative;
    width: 100px;
    height: 100px;
}

.loader-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--accent);
}

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

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-back);
    background: var(--gradient-dark);
    opacity: 0.03;
    pointer-events: none;
}

.dark-mode .animated-bg {
    opacity: 0.2;
}

/* Custom Cursor */
.cursor-dot,
.cursor-dot-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: var(--z-tooltip);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
}

.cursor-dot-outline {
    width: 40px;
    height: 40px;
    background-color: rgba(74, 40, 215, 0.2);
}

/* Enable cursor effects only on desktop */
@media (hover: hover) and (pointer: fine) {
    body:not(.touch-device) .cursor-dot,
    body:not(.touch-device) .cursor-dot-outline {
        opacity: 1;
    }
    
    body:not(.touch-device) {
        cursor: none;
    }
    
    body:not(.touch-device) a,
    body:not(.touch-device) button,
    body:not(.touch-device) .btn,
    body:not(.touch-device) input,
    body:not(.touch-device) textarea,
    body:not(.touch-device) .clickable {
        cursor: none;
    }
}

/* Theme Toggle - Removed */

/* Glass Card Effect */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
    transition: all var(--transition-normal);
}

.glass-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 255, 0.05), 
        transparent
    );
    transform: skewX(-25deg);
    transition: all 0.75s ease;
}

.glass-card:hover::before {
    left: 125%;
}

.dark-mode .glass-card {
    background: var(--glass-bg-dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: var(--border-radius-lg);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    z-index: 1;
}

.btn i {
    margin-left: 10px;
    font-size: 1rem;
    transition: transform var(--transition-normal);
}

.btn:hover i {
    transform: translateX(5px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
    z-index: -1;
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(74, 40, 215, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(74, 40, 215, 0.5);
    transform: translateY(-3px);
    color: var(--text-light);
}

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

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--text-light);
    transform: translateY(-3px);
}

.btn-pricing {
    background: var(--gradient-primary);
    color: var(--text-light);
    width: 100%;
    padding: 15px 30px;
    margin-top: 20px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-pricing:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(74, 40, 215, 0.2);
    color: var(--text-light);
}

.btn-pricing i {
    margin-left: 10px;
    transition: transform var(--transition-normal);
}

.btn-pricing:hover i {
    transform: translateX(5px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

/* Utility Classes */
/* テキストグラデーションスタイル */
.gradient-line, .gradient-line-2, .gradient-line-3, .gradient-line-4 {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    position: relative;
    z-index: 10;
}

.gradient-line {
    background-image: linear-gradient(90deg, #3f51b5, #7986cb);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;
}

.gradient-line-2 {
    background-image: linear-gradient(90deg, #3949ab, #9575cd);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;
}

.gradient-line-3 {
    background-image: linear-gradient(90deg, #5e35b1, #ba68c8);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;
}

.gradient-line-4 {
    background-image: linear-gradient(90deg, #303f9f, #e53935);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;
    font-weight: 800;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    position: relative;
    z-index: 100;
}

.reveal-text {
    display: block;
    opacity: 0; /* Start with hidden text */
    transform: translateY(20px); /* Start slightly below final position */
    transition: all var(--transition-normal);
}

.reveal-text.active {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-overlay);
    transition: all var(--transition-normal);
    height: var(--header-height);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.header.scrolled::before {
    opacity: 1;
}

.header.scrolled {
    box-shadow: var(--shadow);
    height: 70px;
}

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

.logo {
    display: flex;
    align-items: center;
    z-index: 2;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--body-color);
}

.logo-wrapper i {
    color: var(--accent);
    font-size: 1.8rem;
    margin-right: 10px;
}

.company-title-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 20px;
    position: relative;
    max-width: 220px;
}

.header-company-name {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: 0.8px;
    position: relative;
    display: flex;
    align-items: baseline;
}

.labo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    padding: 0 3px;
}

.company-suffix {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.8;
    margin-left: 3px;
}

.title-accent-line {
    width: 30px;
    height: 2px;
    background: var(--primary);
    margin-bottom: 6px;
    position: relative;
    transition: width 0.3s ease;
}

.title-accent-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    width: 50px;
    height: 2px;
    background: rgba(74, 40, 215, 0.3);
}

.company-title-group:hover .title-accent-line {
    width: 80px;
}

/* Company Logo Styles */
.company-logo {
    height: 40px;
    width: auto;
    margin-right: 10px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    object-fit: contain;
}

.footer-company-logo {
    height: 50px;
    width: auto;
    margin-right: 15px;
    object-fit: contain;
    filter: none;
}

.logo-wrapper .highlight {
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    font-weight: 600;
    flex-wrap: wrap;
    white-space: normal;
    line-height: 1.2;
}

.highlight::before {
    content: "";
}

.logo-wrapper .highlight {
    color: #ff3d71;
    background: linear-gradient(135deg, #ff3d71 0%, #ff768e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.consulting-text {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    margin-left: 1px;
    letter-spacing: 0.2px;
    opacity: 0.9;
}

.nav {
    display: flex;
    align-items: center;
}

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

.nav ul li {
    margin-left: 30px;
    position: relative;
}

.nav ul li a {
    color: var(--body-color);
    font-weight: 500;
    transition: all var(--transition-normal);
    position: relative;
    padding: 5px 0;
}

.nav ul li a::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: var(--primary);
    overflow: hidden;
    transition: width var(--transition-normal);
}

.nav ul li a:hover::before {
    width: 100%;
}

.btn-contact {
    background: var(--gradient-primary);
    color: var(--text-light) !important;
    padding: 10px 20px !important;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 15px rgba(74, 40, 215, 0.3);
    transition: all var(--transition-normal);
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 40, 215, 0.5);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 2;
}

.hamburger {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--body-color);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

.menu-open .hamburger span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

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

.menu-open .hamburger span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
    background: var(--body-bg);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.05;
    z-index: -1;
}

.dark-mode .hero::before {
    opacity: 0.2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px; /* 上部に余白を追加 */
}

.hero-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--primary);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
    opacity: 0.03;
}

.dark-mode .hero-shape {
    opacity: 0.1;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-subtitle span {
    position: relative;
    display: inline-block;
}

.hero-subtitle span:nth-child(2n) {
    color: var(--primary);
    font-weight: 700;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    padding: 15px;
    text-align: center;
    transition: all var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

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

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-mockup {
    position: relative;
    width: 100%;
    perspective: 1000px;
}

.dashboard-img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: all var(--transition-normal);
}

.dashboard-mockup:hover .dashboard-img {
    transform: rotateY(0) rotateX(0);
}

.floating-element {
    position: absolute;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.floating-element i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: var(--primary);
}

.elem-1 {
    top: 10%;
    left: 0%;
    animation: float 3s ease-in-out infinite;
}

.elem-2 {
    top: 30%;
    right: -10%;
    animation: float 4s ease-in-out infinite 1s;
}

.elem-3 {
    bottom: 10%;
    left: -5%;
    animation: float 3.5s ease-in-out infinite 0.5s;
}

.elem-4 {
    top: 15%;
    right: 5%;
    animation: float 4.2s ease-in-out infinite 0.3s;
}

.elem-5 {
    bottom: 15%;
    right: -8%;
    animation: float 3.8s ease-in-out infinite 1.2s;
}

.elem-6 {
    bottom: 5%;
    left: 30%;
    animation: float 3.2s ease-in-out infinite 0.7s;
}

.elem-7 {
    top: 45%;
    left: 10%;
    animation: float 3.7s ease-in-out infinite 0.9s;
}

.elem-8 {
    top: 60%;
    left: 0%;
    animation: float 4.0s ease-in-out infinite 1.1s;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
    margin-bottom: 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: mouseWheel 1.5s ease-in-out infinite;
}

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

.arrow {
    position: relative;
    width: 20px;
    height: 20px;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
    margin: -5px 0;
    animation: arrowFade 1.5s ease-in-out infinite alternate;
}

.arrow span:nth-child(2) {
    animation-delay: 0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes arrowBounce {
    0% { transform: translateY(0); }
    50% { transform: translateY(10px); }
    100% { transform: translateY(0); }
}

@keyframes arrowFade {
    0% { opacity: 0.2; }
    100% { opacity: 1; }
}

/* Section Styles */
.section-heading {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-tag {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-top: 10px;
    position: relative;
    padding: 0 10px;
}

.section-tag::before, 
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--primary);
}

.section-tag::before {
    left: -35px;
}

.section-tag::after {
    right: -35px;
}

.section-heading h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-heading p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

#contact .section-heading p strong {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.15rem;
}

.section-divider {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.section-divider.top {
    top: -1px;
    transform: rotate(180deg);
}

.section-divider.bottom {
    bottom: -1px;
}

.section-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
    transform: rotateY(180deg);
}

.section-divider path {
    fill: var(--body-bg);
}

/* Services Section */
.services {
    position: relative;
    background: var(--bg-muted);
    z-index: 1;
}

.dark-mode .services {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-15px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: var(--border-radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-circle);
    z-index: -1;
    opacity: 0.5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 15px 0;
    transition: all var(--transition-normal);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 0;
    transition: all var(--transition-normal);
}

.card-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-primary);
    opacity: 0.05;
    transition: height var(--transition-normal);
    z-index: -1;
}

.service-card:hover .card-hover-effect {
    height: 100%;
}

/* Features Section */
.features {
    position: relative;
    overflow: hidden;
}

.features-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 40, 215, 0.03) 0%, rgba(58, 195, 168, 0.03) 100%);
    transform: skewY(-5deg);
    transform-origin: top left;
    z-index: -1;
}

.dark-mode .features-bg {
    background: linear-gradient(135deg, rgba(74, 40, 215, 0.1) 0%, rgba(58, 195, 168, 0.1) 100%);
}

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

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    transition: all var(--transition-normal);
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--text-light);
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.features-visual {
    position: relative;
}

.visual-container {
    position: relative;
    perspective: 1000px;
}

.analytics-visual {
    position: relative;
    transform: rotateY(10deg) rotateX(-5deg);
    transition: all var(--transition-normal);
}

.visual-container:hover .analytics-visual {
    transform: rotateY(0) rotateX(0);
}

.analytics-img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        rgba(74, 40, 215, 0.3) 0%,
        transparent 70%
    );
    pointer-events: none;
    opacity: 0.7;
    mix-blend-mode: screen;
}

.dots-pattern {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(var(--primary) 1px, transparent 1px);
    background-size: 10px 10px;
    z-index: -1;
}

/* Parallax Effect */
.parallax-element {
    transition: transform 0.1s ease-out;
}

/* Pricing Section */
.pricing {
    position: relative;
    background: var(--bg-muted);
    z-index: 1;
}

.dark-mode .pricing {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    position: relative;
    overflow: visible;
}

.pricing-card:hover {
    transform: translateY(-15px);
}

.pricing-card.featured {
    transform: scale(1.05);
    z-index: 2;
    border-color: var(--primary-light);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.pricing-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent);
    color: var(--text-light);
    padding: 5px 15px;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.pricing-card-inner {
    padding: 40px 30px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.pricing-header::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.price {
    margin-bottom: 10px;
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
}

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

.pricing-features ul {
    margin: 30px 0;
}

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

.pricing-features li i {
    color: var(--primary);
    margin-right: 10px;
}

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    margin-top: 40px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* FAQ Section */
.faq {
    position: relative;
}

.faq-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 40, 215, 0.03) 0%, rgba(58, 195, 168, 0.03) 100%);
    transform: skewY(5deg);
    transform-origin: top right;
    z-index: -1;
}

.dark-mode .faq-bg {
    background: linear-gradient(135deg, rgba(74, 40, 215, 0.1) 0%, rgba(58, 195, 168, 0.1) 100%);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: white;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 700;
    align-self: flex-start;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact {
    position: relative;
    background: var(--bg-muted);
    z-index: 1;
}

.dark-mode .contact {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
}

.contact-form-container {
    padding: 20px;
}

.form-iframe-container {
    overflow: hidden;
    position: relative;
}

.form-iframe-container iframe {
    border-radius: var(--border-radius-lg);
    transform: scale(0.98);
    transform-origin: top center;
    box-shadow: none;
    background: transparent;
}

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

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

.required {
    color: var(--accent);
}

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.textarea-icon {
    top: 20px;
    transform: none;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    background: transparent;
    color: var(--body-color);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 40, 215, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 15px;
}

.contact-info {
    position: relative;
}

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

.contact-info-item {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    transition: all var(--transition-normal);
}

.contact-info-item:hover {
    transform: translateX(-10px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: var(--text-light);
}

.contact-info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-detail {
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 5px;
}

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

.floating-youtube {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: #ff0000;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-youtube:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.3);
}

.pulse-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-circle);
    background: rgba(255, 0, 0, 0.2);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://cdn.pixabay.com/photo/2021/04/11/16/02/gradient-6170176_640.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-company-col, .footer-service-col {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.footer-company-col {
    margin-bottom: 10px;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 12px 0;
    position: relative;
}

.footer-divider::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-light);
}

.footer-logo i {
    color: #ff0000;
    font-size: 2rem;
    margin-right: 15px;
}

.footer-company-name {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0;
    color: var(--text-light);
    letter-spacing: 0.8px;
    display: flex;
    align-items: baseline;
}

.footer-labo {
    color: var(--primary-light);
    padding: 0 3px;
}

.footer-suffix {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    opacity: 1;
    margin-left: 2px;
}

.footer-accent-line {
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    margin: 0 0 12px 0;
    position: relative;
}

.footer-accent-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 32px;
    width: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.footer-logo h4 {
    font-size: 1.2rem;
    margin-bottom: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ff3d71 0%, #ff768e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-consulting {
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    margin-left: 2px;
}

.footer-logo h4::before {
    content: "";
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    transition: all var(--transition-normal);
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-links-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

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

.footer-links-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-normal);
}

.footer-links-column ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.no-hover:hover {
    color: rgba(255, 255, 255, 0.7) !important;
    padding-left: 0 !important;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    cursor: pointer;
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    border: 1px solid var(--glass-border);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-light);
}

/* Construction Popup */
.construction-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(5px);
}

.construction-popup.show {
    opacity: 1;
    visibility: visible;
    display: flex;
    justify-content: center;
    align-items: center;
}

.construction-popup-content {
    width: 90%;
    max-width: 500px;
    padding: 0;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    animation: popup-scale 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.construction-popup-header {
    background: var(--gradient-primary);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    position: relative;
}

.construction-popup-header i {
    font-size: 1.8rem;
    margin-right: 15px;
    animation: rotate-icon 3s linear infinite;
}

.construction-popup-header h3 {
    margin: 0;
    flex: 1;
    font-size: 1.5rem;
    font-weight: 700;
}

.close-popup {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.close-popup:hover {
    background: rgba(255, 255, 255, 0.2);
}

.construction-popup-body {
    padding: 30px;
    text-align: center;
}

.construction-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.construction-icons i {
    font-size: 2.5rem;
    color: var(--primary);
}

.construction-icons i:nth-child(1) {
    animation: spin 3s linear infinite;
}

.construction-icons i:nth-child(2) {
    animation: bounce 2s ease infinite;
    color: var(--accent);
}

.construction-icons i:nth-child(3) {
    animation: spin 3s linear infinite reverse;
    color: var(--secondary);
}

.construction-popup-body p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--body-color);
}

.company-info-content {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 10px;
}

.company-info-section {
    margin-bottom: 20px;
}

.company-info-section h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.company-info-section p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: white;
}

.company-info-section ol, .company-info-section ul {
    list-style-type: decimal;
    padding-left: 20px;
    margin-bottom: 0;
    color: white;
}

.company-info-section ul {
    list-style-type: disc;
}

.company-info-section ol li {
    margin-bottom: 5px;
    line-height: 1.5;
}

.construction-progress {
    margin-top: 15px;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    height: 100%;
    width: 75%;
    background: var(--gradient-primary);
    border-radius: 10px;
    position: relative;
    animation: progress-animation 2s ease-out forwards;
}

.progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: progress-shine 2s linear infinite;
}

@keyframes popup-scale {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes progress-animation {
    0% { width: 0; }
    100% { width: 75%; }
}

@keyframes progress-shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

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

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

@keyframes rotate-icon {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-10deg); }
    100% { transform: rotate(0deg); }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .floating-element {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .stats-cards {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .visual-container {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        transform: scale(1);
        grid-column: 1 / 3;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-15px);
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .floating-youtube {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 30px auto 0;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--glass-bg);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: all 0.4s ease;
    }
    
    .menu-open .nav {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    
    .nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav ul li {
        margin-left: 0;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pricing-card.featured {
        grid-column: auto;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .back-to-top {
        bottom: 100px;
        right: 20px;
    }
    
    .theme-toggle {
        bottom: 30px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .gradient-line, .gradient-line-2, .gradient-line-3, .gradient-line-4 {
        font-size: 2rem;
        margin-bottom: 0.3rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-cards {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 30px auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-heading {
        margin-bottom: 40px;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .elem-1 {
        display: none;
    }
    
    .elem-2 {
        display: none;
    }
}

/* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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