/* ANSLOW HOLDINGS LIMITED - Futuristic Neon Design with Glassmorphism */

:root {
    --primary-emerald: #10b981;
    --accent-teal: #14b8a6;
    --accent-gold: #f59e0b;
    --accent-amber: #fbbf24;
    --accent-cyan: #06b6d4;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-surface: #f1f5f9;
    --bg-card: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(226, 232, 240, 0.8);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-white);
    overflow-x: hidden;
    position: relative;
}

/* Animated gradient background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(6, 182, 212, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    z-index: -2;
    animation: gradientShift 15s ease infinite;
}

/* Decorative geometric shapes */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        /* Large circles */
        radial-gradient(circle 300px at 10% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
        radial-gradient(circle 250px at 90% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
        radial-gradient(circle 200px at 50% 10%, rgba(6, 182, 212, 0.05) 0%, transparent 50%),
        /* Grid pattern */
        linear-gradient(rgba(16, 185, 129, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.02) 1px, transparent 1px);
    background-size: 
        100% 100%,
        100% 100%,
        100% 100%,
        50px 50px,
        50px 50px;
    z-index: -1;
    pointer-events: none;
    animation: decorativeMove 30s ease infinite;
}

@keyframes decorativeMove {
    0%, 100% { opacity: 1; transform: translate(0, 0); }
    50% { opacity: 0.8; transform: translate(10px, 10px); }
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Decorative floating shapes */
.decorative-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.1;
}

.decorative-shape-1 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-emerald), transparent);
    top: 10%;
    right: 5%;
    animation: float 20s ease-in-out infinite;
}

.decorative-shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    bottom: 15%;
    left: 8%;
    animation: float 25s ease-in-out infinite reverse;
}

.decorative-shape-3 {
    width: 100px;
    height: 100px;
    background: var(--accent-cyan);
    transform: rotate(45deg);
    top: 50%;
    left: 3%;
    animation: float 18s ease-in-out infinite;
}

.decorative-shape-4 {
    width: 120px;
    height: 120px;
    border: 3px solid var(--accent-teal);
    border-radius: 20px;
    top: 30%;
    right: 10%;
    animation: float 22s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Header with Glassmorphism */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-emerald), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(16, 185, 129, 0.2);
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px var(--primary-emerald));
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-emerald), var(--accent-gold));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px var(--primary-emerald);
}

nav ul li a:hover {
    color: var(--text-primary);
    text-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

nav ul li a:hover::before {
    width: 100%;
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.burger span {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 5px rgba(16, 185, 129, 0.3);
    border-radius: 2px;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
    background: var(--primary-emerald);
    box-shadow: 0 0 10px var(--primary-emerald);
}

.burger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: var(--primary-emerald);
    box-shadow: 0 0 10px var(--primary-emerald);
}

/* Fullscreen Menu */
nav {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

nav.active ul {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
}

nav.active ul li a {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-emerald), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav.active ul li a::before {
    display: none;
}

/* Hero Section - Two Column Layout */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 6rem 0;
    background: var(--bg-white);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: fadeInLeft 1s ease;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.05);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    animation: fadeInRight 1s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-emerald) 0%, var(--accent-gold) 50%, var(--accent-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientFlow 5s ease infinite;
    letter-spacing: -1px;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 100%;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-emerald), var(--accent-cyan));
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.7), 0 0 60px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: var(--bg-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 2px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.btn-secondary:hover {
    background: rgba(245, 158, 11, 0.1);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.6), 0 0 60px rgba(245, 158, 11, 0.4);
    border-color: var(--primary-emerald);
}

/* Accordion Section with Glassmorphism */
.accordion-section {
    padding: 8rem 2rem;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-emerald), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    margin-bottom: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-emerald);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3), 0 0 40px rgba(16, 185, 129, 0.1);
}

.accordion-header {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(16, 185, 129, 0.05);
}

.accordion-header h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-emerald);
    filter: drop-shadow(0 0 5px var(--primary-emerald));
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: var(--accent-gold);
    filter: drop-shadow(0 0 5px var(--accent-gold));
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.accordion-body {
    padding: 0 2rem 2rem;
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Content Sections with Asymmetric Grid */
.content-section {
    padding: 8rem 2rem;
    position: relative;
}

.content-section:nth-child(even) {
    background: var(--bg-light);
    position: relative;
}

.content-section:nth-child(even)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-emerald), transparent);
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

/* Asymmetric grid for first section */
.content-section:first-of-type .section-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
}

.content-section:first-of-type .section-grid .card:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.content-section:first-of-type .section-grid .card:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.content-section:first-of-type .section-grid .card:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

/* Glassmorphism Cards with Hover Effects */
.card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 25px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-15px) rotateY(5deg);
    border-color: var(--primary-emerald);
    box-shadow: 
        0 20px 60px rgba(16, 185, 129, 0.4),
        0 0 80px rgba(16, 185, 129, 0.2),
        inset 0 0 30px rgba(16, 185, 129, 0.1);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px var(--primary-emerald));
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 20px var(--accent-gold));
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-emerald), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Image Section with Parallax Effect */
.image-section {
    position: relative;
    padding: 0;
    margin: 8rem 0;
    height: 600px;
    overflow: hidden;
    border-radius: 30px;
    margin-left: 2rem;
    margin-right: 2rem;
}

.image-section img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(248, 250, 252, 0.9));
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-align: center;
    padding: 3rem;
}

.image-overlay h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.image-overlay p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

/* Slider Section */
.slider-section {
    padding: 8rem 2rem;
    position: relative;
}

.slider-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-xl);
    margin-bottom: 0;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-slide {
    min-width: 100%;
    position: relative;
}

.slider-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.slider-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95), transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-primary);
    padding: 4rem 3rem 3rem;
}

.slider-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-emerald), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid var(--primary-emerald);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 2rem;
    color: var(--primary-emerald);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.slider-nav:hover {
    background: rgba(16, 185, 129, 0.2);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.8);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding: 1rem 0;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 2px solid var(--primary-emerald);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-emerald);
    box-shadow: 0 0 20px var(--primary-emerald);
    transform: scale(1.3);
}

/* Contact Section - Enhanced */
.contact-section {
    padding: 8rem 2rem;
    position: relative;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 50%, var(--bg-light) 100%);
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.contact-intro {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 1.5rem;
}

.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-emerald);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-emerald), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.contact-details {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    margin-top: 1rem;
}

.contact-details h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
}

.contact-item {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.contact-item a,
.contact-item span {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--primary-emerald);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    position: sticky;
    top: 100px;
}

.contact-container {
    background: var(--bg-card);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-xl);
}

.form-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--glass-border);
}

.form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    font-weight: 700;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: var(--bg-light);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 15px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.required {
    color: var(--primary-emerald);
    font-weight: 700;
}

.form-footer {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.form-note a {
    color: var(--primary-emerald);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.form-note a:hover {
    color: var(--accent-gold);
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(5px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-emerald);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 180px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--bg-light), var(--bg-surface));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 5rem 2rem 2rem;
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-emerald), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p,
.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    line-height: 2.2;
    display: block;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-emerald);
    text-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-top: 2px solid var(--primary-emerald);
    color: var(--text-primary);
    padding: 2rem 2rem;
    box-shadow: var(--shadow-xl);
    z-index: 10000;
    display: none;
}

.cookie-popup.show {
    display: block;
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
    color: var(--text-secondary);
}

.cookie-text a {
    color: var(--primary-emerald);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.cookie-text a:hover {
    color: var(--accent-gold);
    text-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-cookie-accept {
    background: linear-gradient(135deg, var(--primary-emerald), var(--accent-cyan));
    color: var(--text-primary);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.btn-cookie-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.8);
}

.btn-cookie-decline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--glass-border);
}

.btn-cookie-decline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-gold);
}

/* Policy Pages */
.policy-page {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.9;
    min-height: 70vh;
}

.policy-page h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-emerald), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-page h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
}

.policy-page h3 {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.policy-page p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.policy-page ul,
.policy-page ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.policy-page li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.policy-page a {
    color: var(--primary-emerald);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.policy-page a:hover {
    color: var(--accent-gold);
    text-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

/* Thanks Page */
.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

.thanks-content {
    max-width: 700px;
}

.thanks-content h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    background: linear-gradient(135deg, var(--primary-emerald), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-weight: 900;
    animation: gradientFlow 3s ease infinite;
}

.thanks-content p {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease;
}

/* Stagger Animation for Cards */
.section-grid .card:nth-child(1) { animation-delay: 0.1s; }
.section-grid .card:nth-child(2) { animation-delay: 0.2s; }
.section-grid .card:nth-child(3) { animation-delay: 0.3s; }
.section-grid .card:nth-child(4) { animation-delay: 0.4s; }
.section-grid .card:nth-child(5) { animation-delay: 0.5s; }
.section-grid .card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 1024px) {
    .content-section:first-of-type .section-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .content-section:first-of-type .section-grid .card:nth-child(1),
    .content-section:first-of-type .section-grid .card:nth-child(2),
    .content-section:first-of-type .section-grid .card:nth-child(3) {
        grid-column: 1;
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .decorative-shape {
        opacity: 0.05;
    }
    
    .decorative-shape-1,
    .decorative-shape-2,
    .decorative-shape-3,
    .decorative-shape-4 {
        width: 80px;
        height: 80px;
    }

    .header-container {
        padding: 0 1.5rem;
    }

    nav {
        display: none;
    }

    nav.active {
        display: flex;
    }

    nav ul {
        gap: 0;
    }

    .burger {
        display: flex;
    }

    .hero {
        padding: 4rem 0;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .hero-image-wrapper {
        height: 400px;
        order: 1;
    }

    .hero-content {
        text-align: center;
        order: 2;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .btn-cookie {
        flex: 1;
    }

    .slider-nav {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .slider-prev {
        left: 15px;
    }

    .slider-next {
        right: 15px;
    }

    .image-section {
        margin-left: 1rem;
        margin-right: 1rem;
        height: 400px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-wrapper {
        position: static;
    }

    .contact-container {
        padding: 2.5rem 2rem;
    }

    .contact-info-card,
    .contact-details {
        padding: 1.5rem;
    }

    .accordion-section,
    .content-section,
    .slider-section,
    .contact-section {
        padding: 5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .card {
        padding: 2rem;
    }

    .contact-container {
        padding: 2rem 1.5rem;
    }

    .contact-info-card h3 {
        font-size: 1.3rem;
    }

    .contact-details h4 {
        font-size: 1.3rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
