/* Color Palette */
:root {
  --primary: #49c5b6;
  --dark: #000000;
  --white: #ffffff;

  --background: #000000;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);

  --text: #ffffff;
  --text-light: rgba(255, 255, 255, 0.72);
  --border: rgba(255, 255, 255, 0.12);

  --shadow: rgba(0, 0, 0, 0.55);
  --shadow-hover: rgba(73, 197, 182, 0.22);
  --focus-ring: 0 0 0 3px rgba(73, 197, 182, 0.25);

  --gradient-primary: linear-gradient(135deg, #49c5b6 0%, rgba(73, 197, 182, 0.6) 100%);
  --gradient-hero:
    radial-gradient(circle at 20% 20%, rgba(73, 197, 182, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 80% 60%, rgba(73, 197, 182, 0.10) 0%, transparent 55%),
    linear-gradient(180deg, #000000 0%, #000000 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
    overflow-x: hidden;
}

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

/* Accessibility */
.skip-link {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10002;
    padding: 10px 14px;
    border-radius: 12px;
    background: var(--primary);
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    transform: translateY(-120%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
    outline: none;
    box-shadow: var(--focus-ring);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.92);
    box-shadow: 0 -4px 20px var(--shadow);
    z-index: 10000;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 1px solid rgba(73, 197, 182, 0.6);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    color: var(--text);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.cookie-text p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-cookie-accept {
    background: var(--primary);
    color: var(--dark);
    border: none;
}

.btn-cookie-accept:hover {
    background: #3ba89a;
}

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

.btn-cookie-decline:hover {
    border-color: var(--text);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
    box-shadow: 0 2px 20px var(--shadow);
}

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

.brand {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    text-decoration: none;
}

.brand-name {
    color: var(--text);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.6px;
    font-family: 'Poppins', sans-serif;
}

.nav-logo h2 {
    color: var(--text);
    font-weight: 700;
    font-size: 1.8rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

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

.logo-accent {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85em;
    margin-left: 2px;
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

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

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

.nav-link:hover {
    color: var(--text);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: transparent;
    border: 0;
    padding: 8px;
    border-radius: 12px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text);
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

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

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

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(73, 197, 182, 0.28) 0%, transparent 55%),
                radial-gradient(circle at 70% 75%, rgba(73, 197, 182, 0.16) 0%, transparent 60%);
    animation: gradientShift 15s ease infinite;
}

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

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(73, 197, 182, 0.08);
    animation: float 8s ease-in-out infinite;
    backdrop-filter: blur(2px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg); 
    }
    33% { 
        transform: translateY(-30px) translateX(20px) rotate(120deg); 
    }
    66% { 
        transform: translateY(20px) translateX(-15px) rotate(240deg); 
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-text {
    color: var(--text);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(73, 197, 182, 0.35);
    animation: fadeInDown 0.8s ease 0.2s both;
}

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

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

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

.title-line:nth-child(1) { animation-delay: 0.3s; }
.title-line:nth-child(2) { animation-delay: 0.5s; }
.title-line:nth-child(3) { animation-delay: 0.7s; }

.highlight {
    background: linear-gradient(135deg, rgba(73, 197, 182, 1) 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

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

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeIn 1s ease 0.9s forwards;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 1s ease 1.1s forwards;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(73, 197, 182, 0.22);
    background: rgba(73, 197, 182, 0.92);
}

.btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

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

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(73, 197, 182, 0.45);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(73, 197, 182, 0.10);
    border-color: rgba(73, 197, 182, 0.75);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease 1.3s forwards;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    position: relative;
    height: 600px;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(73, 197, 182, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: 0;
}

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

.floating-card {
    position: absolute;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.55);
    animation: floatCard 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.floating-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.card-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 5%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 15%;
    left: 20%;
    animation-delay: 3s;
}

@keyframes floatCard {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(3deg); 
    }
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--primary);
}

.card-icon i {
    display: block;
}

.card-text {
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.card-subtext {
    font-size: 0.85rem;
    color: var(--text-light);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

.arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.arrow span {
    width: 8px;
    height: 8px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    animation: arrowBounce 1.5s infinite;
}

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

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

@keyframes arrowBounce {
    0%, 100% { opacity: 0.3; transform: rotate(45deg) translateY(0); }
    50% { opacity: 1; transform: rotate(45deg) translateY(-5px); }
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(73, 197, 182, 0.14);
    color: var(--text);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border: 1px solid rgba(73, 197, 182, 0.25);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.service-card {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(73, 197, 182, 0.9);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

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

.service-icon {
    margin-bottom: 1.5rem;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(73, 197, 182, 0.14);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    border: 1px solid rgba(73, 197, 182, 0.28);
}

.icon-wrapper i {
    font-size: 1.8rem;
}

.service-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px var(--shadow-hover);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.service-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.service-link:hover {
    gap: 10px;
    color: var(--text);
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(73, 197, 182, 0.06) 0%, #000 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 0.85rem;
}

.feature-text {
    color: var(--text);
    font-weight: 500;
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    min-height: 500px;
    background: var(--surface-2);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 3rem;
    box-shadow: 0 20px 60px var(--shadow-hover);
    border: 1px solid rgba(73, 197, 182, 0.25);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: var(--background);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow);
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-hover);
    border-color: var(--primary);
}

.testimonial-rating {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: rgba(73, 197, 182, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    border: 1px solid rgba(73, 197, 182, 0.35);
}

.author-name {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.author-role {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(73, 197, 182, 0.06) 0%, #000 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(73, 197, 182, 0.14);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    border: 1px solid rgba(73, 197, 182, 0.28);
}

.contact-icon i {
    font-size: 1.3rem;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    background: var(--surface-2);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px var(--shadow);
    border: 2px solid var(--border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font-family: 'Inter', sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.52);
}

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

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

.form-group select {
    cursor: pointer;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.footer-section h3 {
    font-size: 1.8rem;
    letter-spacing: -0.5px;
}

.footer-section h3 .logo-accent {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85em;
    margin-left: 2px;
    opacity: 0.9;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-links a i {
    display: block;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

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

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--background);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 1rem;
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image {
        height: 400px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-buttons .btn {
        flex: 1;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

/* Policy Pages Styles */
.policy-page {
    padding: 120px 0 60px;
    background: var(--background);
    min-height: 100vh;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 2rem;
    background: var(--surface-2);
    border-radius: 24px;
    box-shadow: 0 10px 40px var(--shadow);
    color: var(--text);
    border: 1px solid rgba(73, 197, 182, 0.25);
}

.policy-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.policy-date {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
}

.policy-content {
    background: var(--surface);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 4px 20px var(--shadow);
    margin-bottom: 2rem;
    border: 1px solid var(--border);
}

.policy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border);
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.policy-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
    margin: 1.5rem 0 1rem;
}

.policy-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.policy-section a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.policy-section a:hover {
    text-decoration: underline;
    color: var(--text);
}

.cookie-table {
    display: grid;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.cookie-item {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-item h3 {
    color: var(--text);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.cookie-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-info {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.contact-info strong {
    color: var(--text);
}

.policy-footer {
    text-align: center;
    padding: 2rem 0;
}

.policy-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.policy-footer a:hover {
    text-decoration: underline;
}

/* New Enhanced Styles for Updated Markup */

/* Service Card Enhanced Styles */
.service-card__header {
    margin-bottom: 1.5rem;
}

.service-card__body {
    flex: 1;
}

.service-card__footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.service-card--featured {
    border: 2px solid rgba(73, 197, 182, 0.3);
    background: linear-gradient(135deg, rgba(73, 197, 182, 0.08) 0%, rgba(73, 197, 182, 0.02) 100%);
}

.service-card--featured::before {
    height: 4px;
    background: var(--gradient-primary);
}

.icon-wrapper--animated {
    animation: iconPulse 3s ease-in-out infinite;
}

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

.service-link--arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-link--arrow i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.service-link--arrow:hover i {
    transform: translateX(4px);
}

/* Testimonial Enhanced Styles */
.testimonial-card--highlight {
    border: 2px solid rgba(73, 197, 182, 0.4);
    background: linear-gradient(135deg, rgba(73, 197, 182, 0.06) 0%, rgba(73, 197, 182, 0.02) 100%);
    position: relative;
}

.testimonial-card--highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: var(--primary);
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.testimonial-card:hover .testimonial-rating i {
    transform: scale(1.15);
}

.testimonial-text {
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.author-avatar--gradient {
    background: var(--gradient-primary);
    color: var(--dark);
    font-weight: 800;
    border: 2px solid rgba(73, 197, 182, 0.5);
    box-shadow: 0 4px 12px rgba(73, 197, 182, 0.25);
}

/* Contact Enhanced Styles */
.contact-item--email,
.contact-item--phone,
.contact-item--address {
    transition: transform 0.3s ease;
}

.contact-item--email:hover,
.contact-item--phone:hover,
.contact-item--address:hover {
    transform: translateX(8px);
}

.contact-icon--primary {
    background: var(--gradient-primary);
    color: var(--dark);
    box-shadow: 0 4px 12px rgba(73, 197, 182, 0.25);
    border: none;
}

.contact-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.contact-value {
    color: var(--text-light);
    line-height: 1.6;
}

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

.contact-value a:hover {
    color: var(--text);
    text-decoration: underline;
}

.contact-form--modern {
    background: linear-gradient(135deg, rgba(73, 197, 182, 0.04) 0%, rgba(73, 197, 182, 0.01) 100%);
    border: 2px solid rgba(73, 197, 182, 0.2);
}

.form--contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group--floating {
    position: relative;
}

.form-group--floating .form-label {
    position: absolute;
    left: 18px;
    top: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    pointer-events: none;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.8);
    padding: 0 6px;
    border-radius: 4px;
}

.form-group--floating .form-input:focus ~ .form-label,
.form-group--floating .form-input:not(:placeholder-shown) ~ .form-label {
    top: -10px;
    left: 12px;
    font-size: 0.75rem;
    color: var(--primary);
    background: var(--background);
}

.form-group--textarea {
    position: relative;
}

.form-group--textarea .form-label {
    position: absolute;
    left: 18px;
    top: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    pointer-events: none;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.8);
    padding: 0 6px;
    border-radius: 4px;
}

.form-group--textarea .form-textarea:focus ~ .form-label,
.form-group--textarea .form-textarea:not(:placeholder-shown) ~ .form-label {
    top: -10px;
    left: 12px;
    font-size: 0.75rem;
    color: var(--primary);
    background: var(--background);
}

.form-group--select {
    position: relative;
}

.form-group--select .form-label {
    position: absolute;
    left: 18px;
    top: -10px;
    font-size: 0.75rem;
    color: var(--primary);
    background: var(--background);
    padding: 0 6px;
    border-radius: 4px;
    pointer-events: none;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font-family: 'Inter', sans-serif;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.52);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: var(--focus-ring);
    background: rgba(255, 255, 255, 0.05);
}

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

.form-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='%2349c5b6' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 40px;
}

.form-actions {
    margin-top: 0.5rem;
}

.btn--submit {
    width: 100%;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1.05rem;
    font-weight: 600;
}

.btn--submit i {
    transition: transform 0.3s ease;
}

.btn--submit:hover i {
    transform: translateX(4px) translateY(-2px);
}

/* Responsive adjustments for new classes */
@media (max-width: 768px) {
    .service-card__header,
    .service-card__body,
    .service-card__footer {
        margin-bottom: 1rem;
    }

    .testimonial-card--highlight {
        border-width: 1px;
    }

    .contact-item--email:hover,
    .contact-item--phone:hover,
    .contact-item--address:hover {
        transform: none;
    }

    .form-group--floating .form-label,
    .form-group--textarea .form-label {
        position: static;
        display: block;
        margin-bottom: 0.5rem;
        background: transparent;
        padding: 0;
    }

    .form-group--floating .form-input:focus ~ .form-label,
    .form-group--floating .form-input:not(:placeholder-shown) ~ .form-label,
    .form-group--textarea .form-textarea:focus ~ .form-label,
    .form-group--textarea .form-textarea:not(:placeholder-shown) ~ .form-label {
        position: static;
        top: auto;
        left: auto;
    }
}

