/* CSS Variables - Design System */
:root {
    /* Colors */
    --navy: 217 33% 12%;
    --navy-deep: 217 40% 8%;
    --primary: 217 33% 12%;
    --primary-light: 217 33% 20%;
    --primary-foreground: 0 0% 100%;
    --slate: 215 16% 47%;
    
    --background: 0 0% 100%;
    --foreground: 217 33% 12%;
    
    --card: 0 0% 100%;
    --card-foreground: 217 33% 12%;
    
    --muted: 210 40% 96.1%;
    --muted-foreground: 215.4 16.3% 46.9%;
    
    --accent: 43 96% 56%;
    --accent-foreground: 217 33% 12%;
    --accent-light: 43 96% 70%;
    --accent-muted: 43 96% 95%;
    
    --border: 214.3 31.8% 91.4%;
    --input: 214.3 31.8% 91.4%;
    --ring: 43 96% 56%;
    
    /* Shadows */
    --shadow-elegant: 0 20px 60px -15px hsla(217, 33%, 12%, 0.3);
    --shadow-card: 0 10px 40px -10px hsla(217, 33%, 12%, 0.15);
    --shadow-hover: 0 30px 60px -12px hsla(217, 33%, 12%, 0.25);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(217, 33%, 12%) 0%, hsl(217, 40%, 8%) 100%);
    --gradient-accent: linear-gradient(135deg, hsl(43, 96%, 56%) 0%, hsl(43, 96%, 70%) 100%);
    
    /* Border Radius */
    --radius: 0.75rem;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

button {
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border: none;
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: hsla(0, 0%, 100%, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid hsl(var(--border));
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary-foreground));
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
    background: transparent;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: hsl(var(--foreground));
}

.nav-btn {
    padding: 0.625rem 1.5rem;
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

.nav-btn:hover {
    background-color: hsl(var(--accent-light));
}

.nav-btn-mobile {
    padding: 0.5rem 1rem;
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    .nav-btn-mobile {
        display: none;
    }
    .logo-text {
        display: block;
    }
}

@media (max-width: 767px) {
    .logo-text {
        display: none;
    }
}

@media (min-width: 640px) {
    .logo-text {
        display: block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 5rem;
    overflow: hidden;
    background: var(--gradient-primary);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0zNiAxOGMzLjMxNCAwIDYgMi42ODYgNiA2cy0yLjY4NiA2LTYgNi02LTIuNjg2LTYtNiAyLjY4Ni02IDYtNnoiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIxIi8+PC9nPjwvc3ZnPg==');
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1152px;
    margin: 0 auto;
    text-align: center;
    animation: fadeIn 0.8s ease-in;
}

.hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: hsla(var(--accent), 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(4px);
    border: 1px solid hsla(var(--accent), 0.2);
    transition: var(--transition-smooth);
    color: hsl(var(--accent));
}

.hero-icon:hover {
    background-color: hsla(var(--accent), 0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    color: hsl(var(--primary-foreground));
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-description {
    max-width: 56rem;
    margin: 0 auto 2rem;
    color: white;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.875rem);
    color: hsla(var(--primary-foreground), 0.95);
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: hsla(var(--primary-foreground), 0.85);
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

.hero-btn-primary {
    width: 100%;
    padding: 1.75rem 2.5rem;
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-elegant);
    transition: var(--transition-smooth);
}

.hero-btn-primary:hover {
    background-color: hsl(var(--accent-light));
    transform: scale(1.05);
}

.hero-btn-secondary {
    width: 100%;
    padding: 1.75rem 2.5rem;
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-elegant);
    transition: var(--transition-smooth);
}


.hero-btn-secondary:hover {
    background-color: hsl(var(--accent-light));
    transform: scale(1.05);
}

/*
.hero-btn-secondary {
    width: 100%;
    padding: 1.75rem 2.5rem;
    border: 2px solid hsla(var(--primary-foreground), 0.4);
    color: hsl(var(--primary-foreground));
    background-color: black;
    backdrop-filter: blur(4px);
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 0.75rem;
    transition: var(--transition-smooth);
}
.hero-btn-secondary:hover {
    background-color: hsla(var(--primary-foreground), 0.1);
    border-color: hsla(var(--primary-foreground), 0.6);
}
*/

.hero-footer {
    padding-top: 3rem;
    border-top: 1px solid hsla(var(--primary-foreground), 0.2);
    max-width: 32rem;
    margin: 0 auto;
    color: white;
}

.hero-footer-title {
    color: hsla(var(--primary-foreground), 0.75);
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.hero-footer-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    color: hsla(var(--primary-foreground), 0.6);
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    .hero-btn-primary,
    .hero-btn-secondary {
        width: auto;
    }
}

/* Stats Section */
.stats-section {
    padding: 6rem 1.5rem;
    background-color: hsl(var(--muted));
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
}

.stats-header {
    text-align: center;
    margin-bottom: 5rem;
    animation: fadeIn 0.8s ease-in;
}

.stats-title {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
}

.stats-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: hsl(var(--muted-foreground));
    max-width: 48rem;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-card {
    background-color: hsl(var(--card));
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
    border: 1px solid hsl(var(--border));
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-0.5rem);
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-card);
    color: hsl(var(--accent-foreground));
}

.stat-number {
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.stat-label {
    color: hsl(var(--muted-foreground));
    font-weight: 600;
    font-size: 1.125rem;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Team Section */
.team-section {
    padding: 6rem 1.5rem;
    background-color: hsl(var(--background));
    overflow: hidden;
}

.team-container {
    max-width: 1280px;
    margin: 0 auto;
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.team-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: hsl(var(--muted-foreground));
    max-width: 48rem;
    margin: 0 auto;
}

.team-carousel-wrapper {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.team-carousel {
    display: flex;
    gap: 2rem;
    animation: scroll 40s linear infinite;
}

.team-carousel:hover {
    animation-play-state: paused;
}

.team-member {
    flex-shrink: 0;
    width: 288px;
    background-color: hsl(var(--card));
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid hsl(var(--border));
    text-align: center;
    transition: var(--transition-smooth);
}

.team-member:hover {
    box-shadow: var(--shadow-elegant);
    transform: scale(1.05);
}

.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  background-color: #f3f4f6;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    background-color: hsl(var(--accent-muted));
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: hsl(var(--accent-foreground));
}

.team-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.team-role {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-288px * 7 - 14rem));
    }
}

/* Services Section */
.services-section {
    padding: 6rem 1.5rem;
    background-color: hsl(var(--background));
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
}

.services-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2.5rem;
    background: var(--gradient-accent);
    border-radius: 1rem;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-elegant);
    text-align: center;
    flex-direction: column;
}

.services-banner-icon {
    color: hsl(var(--accent-foreground));
}

.services-banner-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: hsl(var(--accent-foreground));
    margin-bottom: 0.5rem;
}

.services-banner-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: hsl(var(--accent-foreground));
    opacity: 0.9;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background-color: hsl(var(--card));
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
    border: 1px solid hsl(var(--border));
    transition: var(--transition-smooth);
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-0.25rem);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--gradient-accent);
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    color: hsl(var(--accent-foreground));
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.service-description {
    color: hsl(var(--muted-foreground));
    line-height: 1.75;
}

.services-info {
    background-color: hsl(var(--muted));
    padding: 3rem;
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
}

.services-info-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 2rem;
    text-align: center;
}

.services-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/*
.services-info-section {
}
*/

.services-info-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.services-info-list {
    list-style: none;
    color: hsl(var(--muted-foreground));
    line-height: 2;
}

.services-info-list li:before {
    content: "→ ";
    color: hsl(var(--accent));
    font-weight: bold;
    margin-right: 0.5rem;
}

@media (min-width: 768px) {
    .services-banner {
        flex-direction: row;
        text-align: left;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Crypto Info Section */
.crypto-section {
    padding: 6rem 1.5rem;
    background-color: hsl(var(--muted));
}

.crypto-container {
    max-width: 1280px;
    margin: 0 auto;
}

.crypto-header {
    text-align: center;
    margin-bottom: 4rem;
}

.crypto-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.crypto-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: hsl(var(--muted-foreground));
}

.crypto-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.crypto-card {
    background-color: hsl(var(--card));
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
    border: 1px solid hsl(var(--border));
    transition: var(--transition-smooth);
}

.crypto-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-0.25rem);
}

.crypto-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--gradient-accent);
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    color: hsl(var(--accent-foreground));
}

.crypto-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.crypto-card-text {
    color: hsl(var(--muted-foreground));
    line-height: 1.75;
}

.crypto-highlight {
    background: var(--gradient-primary);
    padding: 3rem;
    border-radius: 1rem;
    color: hsl(var(--primary-foreground));
}

.crypto-highlight-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.crypto-highlight-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.crypto-highlight-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: hsl(var(--accent));
}

.crypto-highlight-text {
    line-height: 1.75;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .crypto-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .crypto-highlight-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* FAQ Section */
.faq-section {
    padding: 6rem 1.5rem;
    background-color: hsl(var(--background));
}

.faq-container {
    max-width: 1024px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.faq-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: hsl(var(--muted-foreground));
}

.faq-accordion {
    margin-bottom: 3rem;
}

.faq-item {
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    box-shadow: var(--shadow-card);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background-color: transparent;
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    text-align: left;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background-color: hsl(var(--muted));
}

.faq-icon {
    flex-shrink: 0;
    color: hsl(var(--accent));
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.75;
}

.faq-cta {
    text-align: center;
    padding: 3rem;
    background-color: hsl(var(--muted));
    border-radius: 1rem;
}

.faq-cta-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
}

.faq-cta-button {
    padding: 1rem 2.5rem;
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.faq-cta-button:hover {
    background-color: hsl(var(--accent-light));
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    padding: 6rem 1.5rem;
    background-color: hsl(var(--background));
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: hsl(var(--muted-foreground));
    max-width: 32rem;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: hsl(var(--foreground));
    background-color: hsl(var(--background));
    transition: var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: hsl(var(--accent));
    box-shadow: 0 0 0 3px hsla(var(--accent), 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-error.visible {
    display: block;
}

.form-submit {
    width: 100%;
    padding: 1rem 2rem;
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: var(--radius);
    transition: var(--transition-smooth);
}

.form-submit:hover {
    background-color: hsl(var(--accent-light));
}

.form-note {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    text-align: center;
}

.contact-info-card {
    background-color: hsl(var(--card));
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid hsl(var(--border));
    margin-bottom: 2rem;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: hsl(var(--accent-muted));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--accent-foreground));
}

.contact-info-label {
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.25rem;
}

.contact-info-value {
    color: hsl(var(--muted-foreground));
}

.contact-highlights {
    background-color: hsl(var(--accent-muted));
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid hsla(var(--accent), 0.2);
}

.contact-highlights-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.contact-highlights-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: hsla(var(--foreground), 0.8);
}

.contact-highlight-icon {
    color: hsl(var(--accent));
    font-weight: 700;
    margin-top: 0.25rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Footer */
.footer {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    padding: 3rem 1.5rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-text {
    color: hsla(var(--primary-foreground), 0.8);
    font-size: 0.875rem;
    line-height: 1.75;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: hsla(var(--primary-foreground), 0.8);
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: hsl(var(--accent));
}

.footer-contact {
    color: hsla(var(--primary-foreground), 0.8);
    font-size: 0.875rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid hsla(var(--primary-foreground), 0.2);
    text-align: center;
    font-size: 0.875rem;
    color: hsla(var(--primary-foreground), 0.7);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: hsl(var(--foreground));
    color: hsl(var(--background));
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-elegant);
    z-index: 100;
    transition: bottom 0.3s ease;
    max-width: 90%;
    text-align: center;
}

.toast.show {
    bottom: 2rem;
}

.toast.success {
    background-color: #10b981;
}

.toast.error {
    background-color: #ef4444;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}