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

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

:root {
    --primary-color: #1a365d;
    --secondary-color: #2d5a87;
    --accent-color: #3182ce;
    --gold-color: #d69e2e;
    --text-dark: #1a202c;
    --text-light: #4a5568;
    --text-muted: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    --gradient-accent: linear-gradient(135deg, #3182ce 0%, #2b6cb0 100%);
    --gradient-gold: linear-gradient(135deg, #d69e2e 0%, #b7791f 100%);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 16px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 12px;
        height: 65px;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #1a365d 0%, #3182ce 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    box-shadow: 0 4px 20px rgba(26, 54, 93, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.navbar:hover .logo-icon::before {
    left: 100%;
}

.logo-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(26, 54, 93, 0.4);
}

.logo-text h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.logo-text span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f1419 0%, #1a365d 25%, #2d5a87 50%, #3182ce 75%, #4299e1 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(66, 153, 225, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(214, 158, 46, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: backgroundPulse 8s ease-in-out infinite;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(26, 54, 93, 0.1) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(49, 130, 206, 0.1) 0%, transparent 50%);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 32px;
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
    animation-delay: var(--delay);
    color: rgba(214, 158, 46, 0.6);
    text-shadow: 0 0 20px rgba(214, 158, 46, 0.3);
    filter: blur(0.5px);
}

.floating-icon:nth-child(1) { top: 15%; left: 8%; font-size: 28px; }
.floating-icon:nth-child(2) { top: 65%; right: 12%; font-size: 36px; }
.floating-icon:nth-child(3) { bottom: 25%; left: 15%; font-size: 30px; }
.floating-icon:nth-child(4) { top: 35%; right: 25%; font-size: 34px; }

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.15;
    }
    25% { 
        transform: translateY(-15px) rotate(2deg) scale(1.1); 
        opacity: 0.25;
    }
    50% { 
        transform: translateY(-25px) rotate(5deg) scale(1.05); 
        opacity: 0.2;
    }
    75% { 
        transform: translateY(-10px) rotate(-2deg) scale(1.08); 
        opacity: 0.18;
    }
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 80px);
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 100px 20px 40px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 90px 16px 30px;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 80px 12px 20px;
        gap: 24px;
    }
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(214, 158, 46, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(15px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 32px;
    border: 1px solid rgba(214, 158, 46, 0.3);
    box-shadow: 0 8px 32px rgba(214, 158, 46, 0.1);
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 8px 32px rgba(214, 158, 46, 0.1); }
    50% { box-shadow: 0 8px 32px rgba(214, 158, 46, 0.2); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        margin-bottom: 16px;
    }
}

.title-line {
    display: block;
    animation: slideInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.highlight {
    background: linear-gradient(135deg, #ffd700 0%, #d69e2e 50%, #b7791f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: textShine 4s ease-in-out infinite;
}

@keyframes textShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.3) 50%, transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

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

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

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.8s forwards;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    max-width: 100%;
}

@media (max-width: 768px) {
    .hero-description {
        margin-bottom: 24px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-description {
        margin-bottom: 20px;
    }
}

@keyframes fadeIn {
    to { opacity: 0.9; }
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out 1s forwards;
    opacity: 0;
    padding: 20px 0;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 16px;
        margin-bottom: 32px;
        padding: 16px 0;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 24px;
        padding: 12px 0;
    }
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-width: 100px;
    flex: 1;
    max-width: 150px;
}

@media (max-width: 768px) {
    .stat-item {
        padding: 12px 16px;
        min-width: 80px;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .stat-item {
        padding: 12px;
        min-width: auto;
        max-width: 200px;
        width: 100%;
    }
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(214, 158, 46, 0.2);
}

.stat-number {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #ffd700;
    display: block;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    margin-bottom: 4px;
    animation: counterGlow 2s ease-in-out infinite;
}

@media (max-width: 480px) {
    .stat-number {
        margin-bottom: 2px;
    }
}

@keyframes counterGlow {
    0%, 100% { text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3); }
    50% { text-shadow: 0 2px 20px rgba(255, 215, 0, 0.5); }
}

.stat-label {
    font-size: clamp(12px, 2vw, 15px);
    opacity: 0.9;
    margin-top: 4px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 480px) {
    .stat-label {
        margin-top: 2px;
    }
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 1.2s forwards;
    opacity: 0;
    justify-content: center;
}

@media (max-width: 1024px) {
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #d69e2e 50%, #b7791f 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: clamp(14px, 2.5vw, 17px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(214, 158, 46, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    min-height: 50px;
}

@media (max-width: 768px) {
    .btn-primary {
        padding: 14px 28px;
        min-height: 48px;
    }
}

@media (max-width: 480px) {
    .btn-primary {
        padding: 12px 24px;
        width: 100%;
        min-height: 44px;
        white-space: normal;
        text-align: center;
    }
}

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

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

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(214, 158, 46, 0.5);
    background: linear-gradient(135deg, #ffed4e 0%, #e6b800 50%, #cc9900 100%);
}

.btn-primary:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    font-size: clamp(14px, 2.5vw, 17px);
    white-space: nowrap;
    min-height: 50px;
}

@media (max-width: 768px) {
    .btn-secondary {
        padding: 14px 28px;
        min-height: 48px;
    }
}

@media (max-width: 480px) {
    .btn-secondary {
        padding: 12px 24px;
        width: 100%;
        min-height: 44px;
        white-space: normal;
        text-align: center;
    }
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease-out 1.4s forwards;
    opacity: 0;
    width: 100%;
}

@media (max-width: 1024px) {
    .hero-visual {
        order: -1;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero-visual {
        margin-bottom: 0;
    }
}

.visual-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: 100%;
    max-width: 400px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .visual-card {
        padding: 24px;
        max-width: 350px;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .visual-card {
        padding: 20px;
        max-width: 100%;
        margin: 0 auto;
    }
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(214, 158, 46, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.visual-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffd700 0%, #d69e2e 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 10px 30px rgba(214, 158, 46, 0.3);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.consultation-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: white;
}

.item-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #ffd700 0%, #d69e2e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: white;
    box-shadow: 0 4px 15px rgba(214, 158, 46, 0.3);
    animation: checkPulse 2s ease-in-out infinite;
}

@keyframes checkPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(214, 158, 46, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(214, 158, 46, 0.5); }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 3s infinite;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-50%) scale(1.1);
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(214, 158, 46, 0.6);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: arrowGlow 2s ease-in-out infinite;
}

@keyframes arrowGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { 
        transform: translateX(-50%) translateY(0); 
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    40% { 
        transform: translateX(-50%) translateY(-15px); 
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    }
    60% { 
        transform: translateX(-50%) translateY(-8px); 
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
}

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

.section-badge {
    display: inline-block;
    background: var(--gradient-accent);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--bg-light);
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 40px 0;
    }
}

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

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.service-card.featured {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
}

.service-card.featured::before {
    background: var(--gradient-gold);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.service-card.featured .service-icon {
    background: var(--gradient-gold);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-card.featured h3 {
    color: white;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

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

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-features i {
    color: var(--accent-color);
    font-size: 14px;
}

.service-card.featured .service-features i {
    color: var(--gold-color);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card.featured .service-link {
    color: var(--gold-color);
}

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

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 40px 0;
    }
}

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

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.about-content h3 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 24px;
    font-weight: 600;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

.expertise-areas {
    margin-bottom: 40px;
}

.expertise-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.expertise-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.expertise-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.expertise-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
}

.about-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    padding: 16px 32px;
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.about-visual {
    display: flex;
    justify-content: center;
}

.visual-container {
    width: 100%;
    max-width: 500px;
}

.achievement-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.achievement-card {
    background: var(--gradient-primary);
    color: white;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.achievement-card:nth-child(3) {
    grid-column: 1 / -1;
    background: var(--gradient-gold);
}

.achievement-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.achievement-label {
    font-size: 14px;
    opacity: 0.9;
}

.testimonial-preview {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.stars {
    color: var(--gold-color);
    margin-bottom: 16px;
    font-size: 18px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--bg-light);
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 40px 0;
    }
}

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

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.contact-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-header p {
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-items {
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-details span {
    font-size: 14px;
    color: var(--text-muted);
}

.emergency-notice {
    background: var(--gradient-gold);
    color: white;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.notice-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.notice-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.notice-content p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-light);
    margin-bottom: 32px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

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

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
}

.form-submit {
    align-self: flex-start;
    font-size: 16px;
}

/* Footer */
.footer {
    background: var(--gradient-primary);
    color: white;
    padding: 60px 0 0;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 0;
    }
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo .logo-icon {
    background: var(--gradient-gold);
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.footer-logo p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.footer-description p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
}

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

.link-group h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--gold-color);
}

.link-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-group a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.link-group a:hover {
    color: var(--gold-color);
    padding-left: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 0;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 14px;
}

.footer-badges {
    display: flex;
    gap: 12px;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Disclaimer Notice */
.disclaimer-notice {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    z-index: 1000;
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.disclaimer-content {
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    position: relative;
}

.disclaimer-icon {
    color: var(--accent-color);
    font-size: 24px;
    flex-shrink: 0;
}

.disclaimer-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.disclaimer-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.disclaimer-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 16px;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.disclaimer-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

/* Navigation Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-cta {
        margin-top: 16px;
        justify-content: center;
    }
}

/* Section Responsive */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    .section-description {
        font-size: clamp(1rem, 2.5vw, 1.1rem);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .achievement-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .achievement-card:nth-child(3) {
        grid-column: 1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .disclaimer-notice {
        left: 16px;
        right: 16px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 70px;
        padding: 0 12px;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    .logo-text h2 {
        font-size: 18px;
    }
    
    .logo-text span {
        font-size: 11px;
    }
    
    .service-card,
    .contact-card,
    .form-card {
        padding: 20px;
        border-radius: 16px;
    }
    
    .hero-badge {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .consultation-item {
        font-size: 14px;
    }
}

/* Animation Classes */
[data-aos] {
    opacity: 0;
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* Legal Page Table of Contents */
.legal-toc {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}

.legal-toc h3 {
    color: var(--primary-color);
    margin: 0 0 16px 0;
    font-size: 1.2rem;
}

.legal-toc ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.legal-toc ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.legal-toc ul li:last-child {
    border-bottom: none;
}

.legal-toc a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-toc a:hover {
    color: var(--accent-color);
}

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

/* Consultation Modal Styles */
.consultation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.consultation-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    padding: 30px 30px 20px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

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

.consultation-form {
    padding: 30px;
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.date-time-picker {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.calendar-container {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border-color);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-nav {
    background: var(--accent-color);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.calendar-title {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    aspect-ratio: 1;
    border: none;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-day:hover {
    background: var(--accent-color);
    color: white;
    transform: scale(1.1);
}

.calendar-day.selected {
    background: var(--primary-color);
    color: white;
}

.calendar-day.disabled {
    background: #f5f5f5;
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.disabled:hover {
    background: #f5f5f5;
    color: #ccc;
    transform: none;
}

.calendar-day-header {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    padding: 8px 0;
    text-align: center;
}

.time-slots {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border-color);
}

.time-slots h4 {
    margin: 0 0 15px 0;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
}

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

.time-slot {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.time-slot:hover {
    border-color: var(--accent-color);
    background: rgba(49, 130, 206, 0.1);
    transform: translateY(-2px);
}

.time-slot.selected {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.selected-datetime {
    background: linear-gradient(135deg, #e6fffa 0%, #b2f5ea 100%);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    margin-top: 20px;
}

.selected-datetime p {
    margin: 0;
    color: var(--primary-color);
    font-size: 1rem;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        padding: 100px 30px 50px;
        gap: 40px;
    }
    
    .container {
        max-width: 95%;
        padding: 0 20px;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 90px 25px 40px;
    }
    
    .hero-visual {
        order: -1;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-item {
        min-width: 120px;
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 80px 20px 30px;
        gap: 30px;
    }
    
    .hero-badge {
        padding: 10px 20px;
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .hero-title {
        margin-bottom: 20px;
    }
    
    .hero-description {
        margin-bottom: 24px;
    }
    
    .hero-stats {
        margin-bottom: 32px;
        gap: 16px;
    }
    
    .stat-item {
        padding: 12px 16px;
        min-width: 100px;
        max-width: 130px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .visual-card {
        max-width: 100%;
        padding: 20px;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .consultation-item {
        font-size: 14px;
    }
    
    /* Modal Responsive */
    .modal-content {
        margin: 10px;
        max-height: 95vh;
        border-radius: 16px;
    }
    
    .modal-header {
        padding: 20px;
        border-radius: 16px 16px 0 0;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .consultation-form {
        padding: 20px;
    }
    
    .date-time-picker {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .time-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 70px 15px 25px;
        gap: 24px;
    }
    
    .hero-badge {
        padding: 8px 16px;
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        margin-bottom: 20px;
        font-size: 15px;
        line-height: 1.5;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        padding: 10px 12px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 15px;
        min-height: 48px;
    }
    
    .visual-card {
        padding: 16px;
        border-radius: 12px;
    }
    
    .card-header {
        margin-bottom: 16px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .consultation-item {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .item-icon {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    
    /* Modal Mobile */
    .consultation-modal {
        padding: 5px;
    }
    
    .modal-content {
        margin: 5px;
        max-height: 98vh;
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 15px;
        border-radius: 12px 12px 0 0;
    }
    
    .modal-header h2 {
        font-size: 1.1rem;
    }
    
    .consultation-form {
        padding: 15px;
    }
    
    .form-section {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .form-section h3 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .calendar-container,
    .time-slots {
        padding: 12px;
    }
    
    .calendar-nav {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .calendar-title {
        font-size: 1rem;
    }
    
    .calendar-day {
        font-size: 12px;
    }
    
    .time-slot {
        padding: 10px 12px;
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .hero-container {
        padding: 60px 10px 20px;
        gap: 20px;
    }
    
    .hero-badge {
        padding: 6px 12px;
        font-size: 12px;
        margin-bottom: 16px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .hero-stats {
        margin-bottom: 20px;
    }
    
    .stat-item {
        padding: 8px 10px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 16px;
        font-size: 14px;
        min-height: 44px;
    }
    
    .visual-card {
        padding: 12px;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .card-title {
        font-size: 1rem;
    }
    
    .consultation-item {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .item-icon {
        width: 18px;
        height: 18px;
        font-size: 9px;
    }
}

/* Landscape Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 20px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
        padding: 40px 20px 20px;
        gap: 30px;
        min-height: auto;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .stat-item {
        min-width: 80px;
        max-width: 100px;
        padding: 8px 12px;
    }
    
    .hero-actions {
        flex-direction: row;
        gap: 12px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: auto;
        padding: 10px 20px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-title,
    .hero-description,
    .btn-primary,
    .btn-secondary {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn-primary,
    .btn-secondary,
    .nav-cta,
    .time-slot,
    .calendar-day {
        min-height: 44px;
        min-width: 44px;
    }
    
    .hero-actions {
        gap: 16px;
    }
    
    .stat-item:hover,
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: none;
    }
}

/* Print Styles */
@media print {
    .hero {
        min-height: auto;
        background: white;
        color: black;
    }
    
    .hero-background,
    .floating-elements,
    .hero-actions,
    .navbar {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .hero-title,
    .hero-description {
        color: black;
    }
}

/* Container Max-Width Fix */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 1200px) {
    .container {
        max-width: 95%;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 8px;
    }
}

/* Modal Animation Keyframes */
@keyframes modalSlideOut {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
}

/* Legal Pages Styles */
.legal-page {
    padding: 120px 0 80px;
    background: var(--bg-light);
    min-height: 100vh;
}

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

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.legal-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0;
}

.legal-content {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    line-height: 1.7;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 40px 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 24px 0 16px 0;
}

.legal-content p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content ul li {
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-info {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin: 24px 0;
}

.contact-info p:first-child {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.disclaimer-notice-legal {
    background: #fef3cd;
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
}

.disclaimer-notice-legal h2 {
    color: #92400e;
    margin-top: 0;
}

.disclaimer-notice-legal p {
    color: #92400e;
    font-weight: 600;
}

.final-notice {
    background: #dbeafe;
    border: 1px solid #3b82f6;
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
}

.final-notice h2 {
    color: #1e40af;
    margin-top: 0;
}

.final-notice p {
    color: #1e40af;
    font-weight: 600;
}