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

:root {
    /* Couleurs bleu ciel/glacé inspirées du logo */
    --rf-blue: #87CEEB;
    --rf-blue-dark: #6BB6D6;
    --rf-blue-light: #B0E0E6;
    --rf-blue-glow: #87CEEB;
    --rf-cyan: #48D1CC;
    --rf-cyan-light: #AFEEEE;
    --rf-blue-50: rgba(135, 206, 235, 0.1);
    --rf-blue-100: rgba(135, 206, 235, 0.2);
    --rf-blue-200: rgba(135, 206, 235, 0.3);
    
    /* Couleurs dark mode */
    --bg-primary: #0a0e1a;
    --bg-secondary: #0f1624;
    --bg-tertiary: #151b2e;
    --bg-card: #1a2332;
    --bg-card-hover: #1f2a3f;
    
    /* Textes */
    --text-primary: #ffffff;
    --text-secondary: #b8c5d6;
    --text-tertiary: #8b9cb8;
    
    /* Accents */
    --accent-cyan: #00d4ff;
    --accent-blue: #0066ff;
    --shadow-glow: rgba(135, 206, 235, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 0 20px rgba(135, 206, 235, 0.1);
    border-bottom: 1px solid rgba(135, 206, 235, 0.2);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    min-height: 100px;
    position: relative;
}

@media (min-width: 768px) {
    .nav {
        justify-content: space-between;
        height: 120px;
        min-height: 120px;
    }
}

@media (min-width: 1024px) {
    .nav {
        height: 140px;
        min-height: 140px;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    text-decoration: none;
}

@media (min-width: 768px) {
    .nav-logo {
        margin-left: -2rem;
    }
}

@media (min-width: 1024px) {
    .nav-logo {
        margin-left: -3rem;
    }
}

.logo-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

@media (min-width: 640px) {
    .logo-img {
        width: 240px;
        height: 240px;
    }
}

@media (min-width: 1024px) {
    .logo-img {
        width: 300px;
        height: 300px;
    }
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--rf-cyan);
    text-shadow: 0 0 10px rgba(135, 206, 235, 0.5);
}

@media (min-width: 640px) {
    .logo-text {
        font-size: 1.5rem;
    }
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--rf-cyan);
    text-shadow: 0 0 8px rgba(135, 206, 235, 0.6);
}

.nav-cta {
    background-color: var(--rf-cyan);
    color: var(--bg-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(135, 206, 235, 0.4);
}

.nav-cta:hover {
    background-color: var(--rf-blue-light);
    box-shadow: 0 0 25px rgba(135, 206, 235, 0.6);
    transform: translateY(-2px);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: absolute;
    right: 1rem;
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-secondary);
    transition: all 0.3s ease;
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu */
@media (max-width: 767px) {
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-secondary);
        padding: 1rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 0 20px rgba(135, 206, 235, 0.1);
        border-top: 1px solid rgba(135, 206, 235, 0.2);
    }

    .nav-menu.active .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        width: 100%;
        border-radius: 0.5rem;
    }

    .nav-menu.active .nav-link:hover {
        background-color: var(--rf-blue-50);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

@media (min-width: 640px) {
    .hero {
        padding-top: 120px;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 140px;
    }
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(135, 206, 235, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

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

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-title-accent {
    display: block;
    color: var(--rf-cyan);
    margin-top: 0.5rem;
    text-shadow: 0 0 20px rgba(135, 206, 235, 0.6), 0 0 40px rgba(135, 206, 235, 0.3);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.75;
}

@media (min-width: 640px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

.hero-image {
    position: relative;
    height: 400px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 0 40px rgba(135, 206, 235, 0.3);
    border: 1px solid rgba(135, 206, 235, 0.3);
}

@media (min-width: 1024px) {
    .hero-image {
        height: 500px;
    }
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--rf-cyan);
    color: var(--bg-primary);
    box-shadow: 0 10px 15px -3px rgba(135, 206, 235, 0.4), 0 0 20px rgba(135, 206, 235, 0.3);
}

.btn-primary:hover {
    background-color: var(--rf-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(135, 206, 235, 0.6), 0 0 30px rgba(135, 206, 235, 0.5);
}

.btn-secondary {
    border: 2px solid var(--rf-cyan);
    color: var(--rf-cyan);
    background-color: transparent;
    box-shadow: 0 0 15px rgba(135, 206, 235, 0.2);
}

.btn-secondary:hover {
    background-color: var(--rf-cyan);
    color: var(--bg-primary);
    box-shadow: 0 0 25px rgba(135, 206, 235, 0.5);
}

.btn-white {
    background-color: var(--rf-cyan);
    color: var(--bg-primary);
    width: 100%;
    box-shadow: 0 0 20px rgba(135, 206, 235, 0.4);
}

.btn-white:hover {
    background-color: var(--rf-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(135, 206, 235, 0.6);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

@media (min-width: 1024px) {
    section {
        padding: 6rem 0;
    }
}

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

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
  }
}

.section-title-white {
    color: var(--white);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 42rem;
    margin: 0 auto;
}

.section-description-white {
    color: rgba(255, 255, 255, 0.9);
}

/* Services Section */
.services {
    background-color: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

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

.service-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 0 20px rgba(135, 206, 235, 0.1);
    border: 1px solid rgba(135, 206, 235, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 0 40px rgba(135, 206, 235, 0.3);
    border-color: rgba(135, 206, 235, 0.5);
}

.service-image {
    width: 100%;
    height: 192px;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--rf-cyan);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(135, 206, 235, 0.5);
}

.service-note {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    font-style: italic;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.75;
}

/* Gallery Section */
.gallery {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.gallery-item {
    position: relative;
    height: 256px;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 0 20px rgba(135, 206, 235, 0.1);
    border: 1px solid rgba(135, 206, 235, 0.2);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 0 40px rgba(135, 206, 235, 0.4);
    border-color: rgba(135, 206, 235, 0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tarifs Section */
.tarifs {
    background-color: var(--bg-primary);
}

.tarifs-image-wrapper {
    max-width: 64rem;
    margin: 0 auto 3rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 0 40px rgba(135, 206, 235, 0.2);
    height: 384px;
    background-color: var(--bg-card);
    border: 1px solid rgba(135, 206, 235, 0.2);
}

.tarifs-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tarifs-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

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

.tarif-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 0 20px rgba(135, 206, 235, 0.1);
    border: 2px solid rgba(135, 206, 235, 0.3);
    transition: all 0.3s ease;
}

.tarif-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 0 40px rgba(135, 206, 235, 0.3);
    border-color: rgba(135, 206, 235, 0.6);
}

.tarif-card-featured {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.2) 0%, rgba(72, 209, 204, 0.3) 100%);
    border-color: var(--rf-cyan);
    transform: scale(1.05);
    color: var(--text-primary);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 0 50px rgba(135, 206, 235, 0.4);
}

@media (min-width: 768px) {
    .tarif-card-featured {
        transform: scale(1.05);
    }
}

.tarif-badge {
    background-color: var(--rf-cyan);
    color: var(--bg-primary);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 0 15px rgba(135, 206, 235, 0.5);
}

.tarif-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tarif-duration {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.tarif-card-featured .tarif-duration {
    color: var(--text-primary);
}

.tarif-price-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tarif-price-old {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-tertiary);
    text-decoration: line-through;
}

.tarif-card-featured .tarif-price-old {
    color: rgba(255, 255, 255, 0.5);
}

.tarif-price {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--rf-cyan);
    text-shadow: 0 0 10px rgba(135, 206, 235, 0.5);
}

.tarif-card-featured .tarif-price {
    color: var(--rf-cyan);
    text-shadow: 0 0 15px rgba(135, 206, 235, 0.7);
}

.tarif-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.tarif-card-featured .tarif-description {
    color: var(--text-primary);
}

.tarif-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.tarif-card-featured .tarif-features {
    color: var(--text-primary);
}

.tarifs-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background-color: var(--rf-blue-50);
    border-radius: 0.5rem;
    border-left: 4px solid var(--rf-cyan);
    box-shadow: 0 0 20px rgba(135, 206, 235, 0.2);
}

.tarifs-note p {
    color: var(--text-primary);
    font-weight: 500;
    margin: 0;
}

.btn-tarif {
    width: 100%;
    margin-top: 1.5rem;
    background-color: var(--rf-cyan);
    color: var(--bg-primary);
    padding: 0.875rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(135, 206, 235, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-tarif:hover {
    background-color: var(--rf-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(135, 206, 235, 0.6);
}

.btn-tarif-featured {
    background-color: var(--rf-cyan);
    box-shadow: 0 0 20px rgba(135, 206, 235, 0.5);
}

.btn-tarif-featured:hover {
    box-shadow: 0 0 30px rgba(135, 206, 235, 0.7);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--bg-card);
    margin: auto;
    padding: 2rem;
    border: 2px solid var(--rf-cyan);
    border-radius: 1rem;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 0 50px rgba(135, 206, 235, 0.4);
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
    color: var(--text-secondary);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--rf-cyan);
    transform: rotate(90deg);
}

.modal-title {
    color: var(--text-primary);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.modal-subtitle span {
    color: var(--rf-cyan);
    font-weight: 600;
}

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

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

.reservation-form label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.reservation-form input,
.reservation-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background-color: var(--bg-secondary);
    border: 1px solid rgba(135, 206, 235, 0.3);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.reservation-form input:focus,
.reservation-form textarea:focus {
    outline: none;
    border-color: var(--rf-cyan);
    background-color: var(--bg-tertiary);
    box-shadow: 0 0 15px rgba(135, 206, 235, 0.3);
}

.reservation-form input[type="date"],
.reservation-form input[type="time"] {
    color-scheme: dark;
}

.reservation-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background-color: var(--bg-secondary);
    border: 1px solid rgba(135, 206, 235, 0.3);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.reservation-form select:focus {
    outline: none;
    border-color: var(--rf-cyan);
    background-color: var(--bg-tertiary);
    box-shadow: 0 0 15px rgba(135, 206, 235, 0.3);
}

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

.price-display {
    padding: 1rem;
    background-color: var(--rf-blue-50);
    border-radius: 0.5rem;
    border: 1px solid var(--rf-cyan);
    text-align: center;
}

.price-display p {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.price-display span {
    color: var(--rf-cyan);
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(135, 206, 235, 0.5);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(135, 206, 235, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.contact-form-wrapper {
    background-color: rgba(26, 35, 50, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(135, 206, 235, 0.3);
    box-shadow: 0 0 30px rgba(135, 206, 235, 0.2);
}

@media (min-width: 640px) {
    .contact-form-wrapper {
        padding: 3rem;
    }
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background-color: rgba(10, 14, 26, 0.5);
    border: 1px solid rgba(135, 206, 235, 0.3);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rf-cyan);
    background-color: rgba(10, 14, 26, 0.7);
    box-shadow: 0 0 15px rgba(135, 206, 235, 0.3);
}

.form-group textarea {
    resize: none;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.contact-info-item {
    text-align: center;
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--rf-cyan);
    text-shadow: 0 0 10px rgba(135, 206, 235, 0.5);
}

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

.contact-info-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    color: var(--text-secondary);
}

.contact-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--rf-cyan);
    text-shadow: 0 0 8px rgba(135, 206, 235, 0.6);
    text-decoration: underline;
}

.contact-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    background-color: rgba(135, 206, 235, 0.1);
    border: 1px solid rgba(135, 206, 235, 0.3);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: rgba(135, 206, 235, 0.2);
    border-color: var(--rf-cyan);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(135, 206, 235, 0.4);
}

.social-icon {
    font-size: 1.5rem;
    color: var(--rf-cyan);
    text-shadow: 0 0 10px rgba(135, 206, 235, 0.6);
}

.social-link:hover .social-icon {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(135, 206, 235, 0.8);
}

/* Footer */
.footer {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(135, 206, 235, 0.2);
}

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--rf-cyan);
    text-shadow: 0 0 10px rgba(135, 206, 235, 0.5);
}

.footer-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-text {
    color: var(--text-secondary);
    line-height: 1.75;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--rf-cyan);
    text-shadow: 0 0 8px rgba(135, 206, 235, 0.6);
}

.footer-social-links {
    margin-top: 0.5rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link i {
    color: var(--rf-cyan);
    font-size: 1.25rem;
    text-shadow: 0 0 8px rgba(135, 206, 235, 0.5);
}

.footer-social-link:hover {
    color: var(--rf-cyan);
    text-shadow: 0 0 8px rgba(135, 206, 235, 0.6);
}

.footer-social-link:hover i {
    transform: scale(1.1);
    text-shadow: 0 0 12px rgba(135, 206, 235, 0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(135, 206, 235, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--text-tertiary);
}

