/* ===================================
   CHONGYAN - Cadillac Inspired Luxury Design
   =================================== */

/* CSS Variables */
:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #c5a572;
    --accent-light: #e8d5a8;
    --accent-dark: #a68b5b;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-dark: #1a1a2e;
    --gradient-gold: linear-gradient(135deg, #c5a572 0%, #e8d5a8 50%, #c5a572 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --shadow-light: 0 10px 40px rgba(197, 165, 114, 0.1);
    --shadow-medium: 0 20px 60px rgba(197, 165, 114, 0.15);
    --shadow-heavy: 0 30px 80px rgba(0, 0, 0, 0.3);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--primary-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul, ol {
    list-style: none;
}

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

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

.about-svg,
.mission-svg,
.hero-svg,
.news-svg,
.news-card-svg,
.map-svg {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

.about-visual,
.mission-visual {
    max-width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 4rem; }
h2 { font-size: 3rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-color);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 30px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 2px;
    background: var(--gradient-gold);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.95) 0%, rgba(26, 26, 46, 0) 100%);
    transition: var(--transition-smooth);
    z-index: -1;
}

.header.header-scrolled {
    padding: 15px 0;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

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

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

.logo-svg {
    height: 50px;
    width: auto;
    transition: var(--transition-smooth);
}

.logo-svg text {
    transition: var(--transition-smooth);
}

.logo:hover .logo-svg {
    transform: scale(1.02);
}

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

.nav-list {
    display: flex;
    gap: 50px;
}

.nav-item a {
    position: relative;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 10px 0;
    color: var(--text-primary);
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

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

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

/* Hamburger Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
    transition: var(--transition-smooth);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

.hamburger::before {
    top: -10px;
}

.hamburger::after {
    bottom: -10px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-dark);
}

.hero-svg-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    z-index: 1;
    opacity: 0.3;
    overflow: hidden;
}

.hero-svg-container svg,
.hero-svg-container img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg svg {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(197, 165, 114, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(197, 165, 114, 0.05) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 40px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-tagline {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--accent-color);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: var(--gradient-gold);
    color: var(--text-dark);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

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

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

.btn-cta {
    background: var(--gradient-gold);
    color: var(--text-dark);
    padding: 20px 50px;
    font-size: 1.1rem;
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: var(--transition-smooth);
}

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

/* Page Hero */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    overflow: hidden;
    padding-top: 100px;
}

.page-hero-small {
    min-height: 40vh;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(197, 165, 114, 0.1) 0%, transparent 70%);
}

.page-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.page-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.breadcrumb ol {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--accent-color);
    transition: var(--transition-smooth);
}

.breadcrumb a:hover {
    color: var(--accent-light);
}

.breadcrumb .separator {
    color: var(--text-secondary);
}

.breadcrumb .active {
    color: var(--text-primary);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header.light .section-tag {
    color: var(--accent-light);
}

.section-header.light .section-title {
    color: var(--text-primary);
}

.section-header.light .section-description {
    color: var(--text-secondary);
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: var(--gradient-dark);
    position: relative;
}

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

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

.about-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(197, 165, 114, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(197, 165, 114, 0.1);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    background: rgba(197, 165, 114, 0.1);
    transform: translateX(5px);
}

.feature-item svg {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.95rem;
    font-weight: 500;
}

.about-visual {
    position: relative;
}

.about-svg {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(197, 165, 114, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(197, 165, 114, 0.4));
    }
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: var(--primary-color);
    position: relative;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

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

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(197, 165, 114, 0.05);
    border-color: rgba(197, 165, 114, 0.3);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 165, 114, 0.1);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--gradient-gold);
    transform: scale(1.1) rotate(10deg);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-color);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon svg {
    color: var(--text-dark);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Mission Section */
.mission-section {
    padding: 120px 0;
    background: var(--gradient-dark);
    position: relative;
}

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

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

.mission-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-values {
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(197, 165, 114, 0.03);
    border-radius: 15px;
    margin-bottom: 15px;
    border-left: 3px solid var(--accent-color);
    transition: var(--transition-smooth);
}

.value-item:hover {
    background: rgba(197, 165, 114, 0.08);
    transform: translateX(10px);
}

.value-item svg {
    width: 40px;
    height: 40px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.value-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.value-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.mission-visual {
    position: relative;
}

.mission-svg {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Core Values */
.core-values {
    padding: 120px 0;
    background: var(--primary-color);
}

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

.value-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-gold);
    transition: var(--transition-smooth);
}

.value-card:hover::after {
    width: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(197, 165, 114, 0.05);
    box-shadow: var(--shadow-medium);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 165, 114, 0.1);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
    background: var(--gradient-gold);
    transform: scale(1.1);
}

.value-icon svg {
    width: 35px;
    height: 35px;
    color: var(--accent-color);
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon svg {
    color: var(--text-dark);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 120px 0;
    background: var(--secondary-color);
    position: relative;
}

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

.team-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-10px);
    background: rgba(197, 165, 114, 0.05);
    border-color: rgba(197, 165, 114, 0.3);
    box-shadow: var(--shadow-medium);
}

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-color);
    transition: var(--transition-smooth);
}

.team-card:hover .team-avatar {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(197, 165, 114, 0.3);
}

.team-avatar svg {
    width: 100%;
    height: 100%;
}

.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.team-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Environment Section */
.environment-section {
    padding: 120px 0;
    background: var(--gradient-dark);
}

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

.environment-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.environment-item:hover {
    transform: translateY(-10px);
    background: rgba(197, 165, 114, 0.05);
    border-color: rgba(197, 165, 114, 0.3);
}

.environment-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 165, 114, 0.1);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.environment-item:hover .environment-icon {
    background: var(--gradient-gold);
    transform: rotate(15deg);
}

.environment-icon svg {
    width: 35px;
    height: 35px;
    color: var(--accent-color);
    transition: var(--transition-smooth);
}

.environment-item:hover .environment-icon svg {
    color: var(--text-dark);
}

.environment-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.environment-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Quote Section */
.quote-section {
    padding: 100px 0;
    background: var(--secondary-color);
    text-align: center;
}

.quote-block {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.quote-mark {
    width: 60px;
    height: 60px;
    color: var(--accent-color);
    margin-bottom: 30px;
    opacity: 0.5;
}

.quote-block blockquote {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.quote-block cite {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(197, 165, 114, 0.15) 0%, transparent 50%);
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c5a572' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(197, 165, 114, 0.05);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 20px;
    padding: 50px;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 165, 114, 0.1);
    border-radius: 50%;
}

.newsletter-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-color);
}

.newsletter-text {
    flex: 1;
}

.newsletter-text h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.newsletter-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.newsletter-form input {
    padding: 15px 25px;
    border: 1px solid rgba(197, 165, 114, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 1rem;
    width: 300px;
    transition: var(--transition-smooth);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form input::placeholder {
    color: var(--text-secondary);
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: var(--gradient-dark);
}

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

.contact-info-header h2 {
    margin-bottom: 1rem;
}

.contact-info-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(197, 165, 114, 0.03);
    border-radius: 15px;
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}

.contact-detail-item:hover {
    background: rgba(197, 165, 114, 0.08);
    transform: translateX(10px);
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 165, 114, 0.1);
    border-radius: 50%;
}

.contact-detail-icon svg {
    width: 25px;
    height: 25px;
    color: var(--accent-color);
}

.contact-detail-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.contact-detail-content a,
.contact-detail-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-detail-content a:hover {
    color: var(--accent-color);
}

.contact-social h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

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

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 165, 114, 0.1);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--gradient-gold);
    transform: translateY(-5px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: var(--accent-color);
    transition: var(--transition-smooth);
}

.social-link:hover svg {
    color: var(--text-dark);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 20px;
    padding: 50px;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

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

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(197, 165, 114, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c5a572' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-group select option {
    background: var(--primary-color);
    color: var(--text-primary);
}

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

.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

.checkbox-label a {
    color: var(--accent-color);
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-full {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--primary-color);
}

.map-wrapper {
    background: rgba(197, 165, 114, 0.03);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.map-info {
    padding: 50px;
    text-align: center;
}

.map-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.map-info p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.map-placeholder {
    border-radius: 15px;
    overflow: hidden;
}

.map-placeholder svg {
    width: 100%;
    height: auto;
    display: block;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: var(--gradient-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    background: rgba(197, 165, 114, 0.05);
    border-color: rgba(197, 165, 114, 0.3);
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* News Section */
.news-section {
    padding: 60px 0 100px;
    background: var(--gradient-dark);
}

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

.news-featured {
    grid-row: span 2;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.news-featured:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.news-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.news-svg {
    width: 100%;
    height: 100%;
}

.news-category {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    background: var(--gradient-gold);
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

.news-category.featured {
    background: var(--accent-color);
}

.news-content {
    padding: 25px;
}

.news-content time {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.news-content h2 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.3;
}

.news-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.read-more:hover {
    gap: 15px;
    color: var(--accent-light);
}

.news-cards {
    display: contents;
}

.news-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

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

.news-card-image {
    position: relative;
    height: 120px;
    overflow: hidden;
}

.news-card-svg {
    width: 100%;
    height: 100%;
}

.news-card-content {
    padding: 15px;
}

.news-card-content time {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.news-card-content h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: var(--text-primary);
    line-height: 1.4;
}

.news-card-content p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Legal Content */
.legal-content {
    padding: 100px 0;
    background: var(--gradient-dark);
}

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

.legal-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.legal-nav {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 15px;
    padding: 30px;
}

.legal-nav h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.legal-nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-nav a {
    display: block;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    border-left: 2px solid transparent;
    padding-left: 15px;
}

.legal-nav a:hover {
    color: var(--accent-color);
    border-left-color: var(--accent-color);
    padding-left: 20px;
}

.legal-main {
    max-width: 900px;
}

.legal-section {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(197, 165, 114, 0.1);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.legal-section h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--accent-color);
}

.legal-section p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 20px;
}

.legal-section li {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 20px;
}

.legal-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

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

.legal-section a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--primary-color);
    border-top: 1px solid rgba(197, 165, 114, 0.1);
}

.footer-main {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo .logo-svg {
    height: 45px;
}

.footer-tagline {
    font-style: italic;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-primary);
}

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

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(197, 165, 114, 0.1);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.footer-legal-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

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

.footer-legal-links .separator {
    color: var(--text-secondary);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .about-grid,
    .mission-grid,
    .contact-grid {
        gap: 50px;
    }
    
    .services-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid,
    .environment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
        z-index: 999;
    }
    
    .nav.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .nav-item a {
        font-size: 1.5rem;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .about-grid,
    .mission-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .about-visual,
    .mission-visual {
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .legal-content .container {
        grid-template-columns: 1fr;
    }
    
    .legal-sidebar {
        position: relative;
        top: 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-form input {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-svg-container {
        max-width: 100%;
        max-height: 400px;
        opacity: 0.15;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .services-grid,
    .values-grid,
    .team-grid,
    .environment-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .quote-block blockquote {
        font-size: 1.3rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .map-info {
        padding: 30px;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-light);
}

/* Selection */
::selection {
    background: var(--accent-color);
    color: var(--text-dark);
}

/* ===================================
   NEW REDESIGNED STYLES
   =================================== */

/* Hero Section Redesign */
.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-dark);
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(197, 165, 114, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(197, 165, 114, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(26, 26, 46, 0.8) 100%);
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

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

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: rgba(197, 165, 114, 0.1);
    border: 1px solid rgba(197, 165, 114, 0.3);
    border-radius: 50px;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge svg {
    width: 18px;
    height: 18px;
    color: var(--accent-color);
}

.hero-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-title-line {
    display: block;
    color: var(--text-primary);
}

.hero-title-accent {
    display: block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-color), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

.hero-scroll-indicator span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--primary-color);
    border-top: 1px solid rgba(197, 165, 114, 0.1);
    border-bottom: 1px solid rgba(197, 165, 114, 0.1);
}

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

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(197, 165, 114, 0.05);
    border-color: rgba(197, 165, 114, 0.3);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 165, 114, 0.1);
    border-radius: 50%;
}

.stat-icon svg {
    width: 30px;
    height: 30px;
    color: var(--accent-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section Redesign */
.about-section {
    padding: 120px 0;
    background: var(--gradient-dark);
}

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

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.about-card:hover {
    transform: translateX(10px);
    background: rgba(197, 165, 114, 0.05);
    border-color: rgba(197, 165, 114, 0.3);
}

.about-card-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 165, 114, 0.1);
    border-radius: 50%;
}

.about-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
}

.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.about-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.about-main-svg {
    width: 100%;
    max-width: 400px;
    animation: slowRotate 30s linear infinite;
}

@keyframes slowRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.about-visual-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(197, 165, 114, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Products Section */
.products-section {
    padding: 120px 0;
    background: var(--primary-color);
}

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

.product-card {
    position: relative;
    padding: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 25px;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-10px);
    background: rgba(197, 165, 114, 0.05);
    border-color: rgba(197, 165, 114, 0.3);
    box-shadow: var(--shadow-medium);
}

.product-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    padding: 8px 20px;
    background: rgba(197, 165, 114, 0.1);
    border: 1px solid rgba(197, 165, 114, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-badge.featured {
    background: var(--gradient-gold);
    color: var(--text-dark);
    border: none;
}

.product-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 165, 114, 0.1);
    border-radius: 20px;
}

.product-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-color);
}

.product-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.product-card > p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.product-features svg {
    width: 20px;
    height: 20px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.product-stores {
    display: flex;
    gap: 15px;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(197, 165, 114, 0.05);
    border: 1px solid rgba(197, 165, 114, 0.2);
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.store-badge:hover {
    background: rgba(197, 165, 114, 0.1);
    border-color: var(--accent-color);
}

.store-badge svg {
    width: 18px;
    height: 18px;
}

/* Advertising Section */
.advertising-section {
    padding: 120px 0;
    background: var(--gradient-dark);
}

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

.ad-formats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.ad-format {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.ad-format:hover {
    transform: translateY(-5px);
    background: rgba(197, 165, 114, 0.05);
    border-color: rgba(197, 165, 114, 0.3);
}

.ad-format-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 165, 114, 0.1);
    border-radius: 50%;
}

.ad-format-icon svg {
    width: 35px;
    height: 35px;
    color: var(--accent-color);
}

.ad-format h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.ad-format p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.ad-platforms {
    text-align: center;
    padding: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 20px;
}

.ad-platforms h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.platform-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.platform-logo {
    padding: 15px 30px;
    background: rgba(197, 165, 114, 0.05);
    border: 1px solid rgba(197, 165, 114, 0.2);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.platform-logo:hover {
    background: rgba(197, 165, 114, 0.1);
    border-color: var(--accent-color);
    transform: scale(1.05);
}

/* CTA Section Redesign */
.cta-section {
    position: relative;
    padding: 150px 0;
    background: var(--gradient-dark);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.cta-pattern {
    width: 100%;
    height: 100%;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
}

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

/* Service Page Styles */
.services-overview {
    padding: 100px 0;
    background: var(--gradient-dark);
}

.services-grid-large {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-large-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 60px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 30px;
    transition: var(--transition-smooth);
}

.service-large-card:hover {
    background: rgba(197, 165, 114, 0.03);
    border-color: rgba(197, 165, 114, 0.2);
}

.service-large-card.reverse {
    direction: rtl;
}

.service-large-card.reverse > * {
    direction: ltr;
}

.service-large-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-visual-svg {
    width: 100%;
    max-width: 300px;
    animation: float 6s ease-in-out infinite;
}

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

.service-large-content {
    position: relative;
}

.service-number {
    display: block;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(197, 165, 114, 0.1);
    line-height: 1;
    margin-bottom: -20px;
}

.service-large-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.service-large-content > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.service-features svg {
    width: 18px;
    height: 18px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.service-stores {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.store-available {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(197, 165, 114, 0.05);
    border: 1px solid rgba(197, 165, 114, 0.2);
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--accent-color);
}

.store-available svg {
    width: 16px;
    height: 16px;
}

/* Ad Monetization Section */
.ad-monetization-section {
    padding: 100px 0;
    background: var(--primary-color);
}

.ad-formats-showcase,
.ad-platforms-showcase {
    margin-bottom: 60px;
}

.showcase-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 40px;
}

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

.ad-format-card {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.ad-format-card:hover {
    transform: translateY(-5px);
    background: rgba(197, 165, 114, 0.05);
    border-color: rgba(197, 165, 114, 0.3);
}

.ad-format-card .ad-format-icon {
    margin-bottom: 20px;
}

.ad-format-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.ad-format-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.platform-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.platform-card:hover {
    transform: translateY(-5px);
    background: rgba(197, 165, 114, 0.05);
    border-color: rgba(197, 165, 114, 0.3);
}

.platform-logo-svg {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
}

.platform-logo-svg svg {
    width: 100%;
    height: 100%;
}

.platform-name {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Publishing Section */
.publishing-section {
    padding: 100px 0;
    background: var(--gradient-dark);
}

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

.publishing-card {
    padding: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 25px;
    transition: var(--transition-smooth);
}

.publishing-card:hover {
    transform: translateY(-5px);
    background: rgba(197, 165, 114, 0.05);
    border-color: rgba(197, 165, 114, 0.3);
}

.publishing-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.store-icon {
    width: 50px;
    height: 50px;
    color: var(--accent-color);
}

.publishing-card-header h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.publishing-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.publishing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.publishing-features svg {
    width: 20px;
    height: 20px;
    color: var(--accent-color);
    flex-shrink: 0;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--primary-color);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(197, 165, 114, 0.2);
}

.process-step {
    position: relative;
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.step-number {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.step-content {
    padding: 0 10px;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.step-connector {
    display: none;
}

/* Page Hero Redesign */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    overflow: hidden;
    padding-top: 100px;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.page-title {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.page-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Responsive Design Updates */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .ad-formats,
    .ad-format-cards,
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .service-large-card {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .service-large-card.reverse {
        direction: ltr;
    }
    
    .service-large-visual {
        order: -1;
    }
    
    .process-timeline {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .process-step {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .ad-formats,
    .ad-format-cards,
    .platform-grid,
    .publishing-grid {
        grid-template-columns: 1fr;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .about-card {
        flex-direction: column;
        text-align: center;
    }
    
    .about-card-icon {
        margin: 0 auto;
    }
    
    .product-stores,
    .service-stores {
        flex-direction: column;
    }
    
    .process-step {
        flex: 1 1 100%;
    }
}
