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

:root {
    --primary: #FF6B35;
    --secondary: #F7931E;
    --accent: #FFD23F;
    --blue: #06FFA5;
    --purple: #B19CD9;
    --dark: #2C1810;
    --light: #FFF8F0;
    --gray: #8B7355;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: linear-gradient(135deg, var(--light) 0%, #FFF5E6 100%);
    overflow-x: hidden;
}

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

/* Age Disclaimer */
.age-disclaimer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.disclaimer-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    animation: slideInScale 0.5s ease-out;
}

.disclaimer-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.disclaimer-text h3 {
    font-family: 'Orbitron', monospace;
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.disclaimer-text p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.disclaimer-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.disclaimer-buttons .btn {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.disclaimer-buttons .btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
}

.disclaimer-buttons .btn-secondary {
    background: #ccc;
    color: var(--dark);
}

.disclaimer-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
    color: white;
}

.logo-puzzle {
    font-size: 2rem;
    margin-right: 0.5rem;
    animation: rotate 4s infinite linear;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.puzzle-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--blue));
    transition: width 0.3s ease;
}

.nav-item:hover .puzzle-line {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Floating Background Elements */
.floating-puzzles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.puzzle-piece {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 15s infinite ease-in-out;
}

.piece-1 { top: 10%; left: 10%; animation-delay: 0s; }
.piece-2 { top: 20%; right: 15%; animation-delay: 3s; }
.piece-3 { bottom: 30%; left: 20%; animation-delay: 6s; }
.piece-4 { top: 60%; right: 10%; animation-delay: 9s; }
.piece-5 { bottom: 10%; left: 60%; animation-delay: 12s; }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--light) 0%, #FFF5E6 50%, #FFE8CC 100%);
    overflow: hidden;
}

.hero-background {
    background-image: url("/src/assets/banner.jpg");
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.falling-pieces {
    position: absolute;
    width: 100%;
    height: 100%;
}

.falling-piece {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: fall 8s infinite linear;
}

.falling-piece:nth-child(1) { left: 10%; animation-delay: 0s; }
.falling-piece:nth-child(2) { left: 30%; animation-delay: 1s; }
.falling-piece:nth-child(3) { left: 50%; animation-delay: 2s; }
.falling-piece:nth-child(4) { left: 70%; animation-delay: 3s; }
.falling-piece:nth-child(5) { left: 90%; animation-delay: 4s; }

.gear-animation {
    position: absolute;
    width: 100%;
    height: 100%;
}

.gear {
    position: absolute;
    font-size: 4rem;
    opacity: 0.1;
    animation: rotate 10s infinite linear;
}

.gear-1 { top: 20%; right: 10%; }
.gear-2 { bottom: 20%; left: 10%; animation-direction: reverse; }
.gear-3 { top: 50%; right: 50%; animation-duration: 15s; }

.hero-content {
    background-color: rgba(0, 0, 0, 0.658);
    border: 2px solid rgba(255, 255, 136, 0.877); 
    border-radius: 20px;

    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-word {
    color: rgb(255, 255, 149);
    display: inline-block;
    margin: 0 0.2rem;
    animation: bounceIn 0.8s ease-out forwards;
    opacity: 0;
}

.title-word:nth-child(1) { animation-delay: 0.1s; }
.title-word:nth-child(2) { animation-delay: 0.2s; }
.title-word:nth-child(3) { animation-delay: 0.3s; }
.title-word:nth-child(4) { animation-delay: 0.4s; }
.title-word:nth-child(6) { animation-delay: 0.6s; }
.title-word:nth-child(7) { animation-delay: 0.7s; }

.highlight {
    color: var(--primary);
    display: inline-block;
    animation: bounceIn 0.8s ease-out 0.5s forwards;
    opacity: 0;
}

.hero-subtitle {
    color: rgb(255, 255, 255);
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.8s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s forwards;
    opacity: 0;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.puzzle-btn {
    position: relative;
}

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

.puzzle-btn:hover .btn-glow {
    left: 100%;
}

/* About Us Section */
.about-us {
    padding: 6rem 0;
    background: white;
}

.about-content {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}
.disclaimer {
    height: 320px;
    width: 320px;

}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-block {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.about-block:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.about-block h3 {
    font-family: 'Orbitron', monospace;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.about-block p {
    color: var(--gray);
    line-height: 1.6;
}

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

.puzzle-timeline {
    position: relative;
    padding: 2rem 0;
}

.puzzle-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    font-size: 2rem;
    background: white;
    border: 4px solid var(--primary);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: pulse 2s infinite;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 0 2rem;
    min-width: 200px;
}

.timeline-content h4 {
    font-family: 'Orbitron', monospace;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--gray);
}

/* Why Choose Section */
.why-choose {
    padding: 6rem 0;
    background: var(--light);
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-block {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.benefit-block::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.benefit-block:hover::before {
    opacity: 0.05;
}

.benefit-block:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.block-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.benefit-block h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    position: relative;
    z-index: 1;
}

.benefit-block p {
    color: var(--gray);
    position: relative;
    z-index: 1;
}

.block-1:hover { animation: wobble 0.5s ease; }
.block-2:hover { animation: pulse 0.5s ease; }
.block-3:hover { animation: shake 0.5s ease; }
.block-4:hover { animation: bounce 0.5s ease; }

/* Games Preview */
.games-preview {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE8CC 100%);
}

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

.game-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px) rotate(-2deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.puzzle-piece-card {
    clip-path: polygon(0% 0%, 85% 0%, 100% 15%, 100% 100%, 15% 100%, 0% 85%);
    transition: clip-path 0.3s ease;
}

.puzzle-piece-card:hover {
    clip-path: polygon(0% 0%, 90% 0%, 100% 10%, 100% 100%, 10% 100%, 0% 90%);
}

.game-image {
    height: 320px;
    overflow: hidden;
}

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

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-info {
    padding: 1.5rem;
}

.game-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.game-info p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.play-btn {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

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

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

.view-all {
    text-align: center;
    margin-top: 3rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.checkerboard-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(255,107,53,0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,107,53,0.1) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255,107,53,0.1) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,107,53,0.1) 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    animation: checkerboard 20s linear infinite;
}

.footer-puzzles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.footer-puzzle {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: floatSlow 20s infinite ease-in-out;
}

.footer-puzzle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.footer-puzzle:nth-child(2) { top: 50%; right: 20%; animation-delay: 7s; }
.footer-puzzle:nth-child(3) { bottom: 30%; left: 60%; animation-delay: 14s; }

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

.footer-section h3,
.footer-section h4 {
    font-family: 'Orbitron', monospace;
    margin-bottom: 1rem;
    color: var(--accent);
}

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

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent);
}

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

.scroll-text {
    margin-bottom: 1rem;
    overflow: hidden;
    white-space: nowrap;
}

.scroll-text p {
    display: inline-block;
    animation: scroll 20s linear infinite;
    color: var(--accent);
}

/* Game Page Styles */
.game-container {
    min-height: 100vh;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--light) 0%, #FFF5E6 100%);
}

.game-header {
    text-align: center;
    padding: 2rem 0;
}

.game-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.back-btn {
    background: var(--primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

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

.puzzle-frame {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.puzzle-frame::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    border-radius: 25px;
    z-index: -1;
}

.game-iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 15px;
}

/* Animations */
@keyframes slideInScale {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

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

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

@keyframes fall {
    0% { transform: translateY(-100vh) rotate(0deg); }
    100% { transform: translateY(100vh) rotate(360deg); }
}

@keyframes bounceIn {
    0% { 
        opacity: 0;
        transform: scale(0.3) translateY(50px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

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

@keyframes wobble {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px) rotate(-2deg); }
    75% { transform: translateX(5px) rotate(2deg); }
    100% { transform: translateX(0); }
}

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

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

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

@keyframes checkerboard {
    0% { background-position: 0 0, 0 20px, 20px -20px, -20px 0px; }
    100% { background-position: 40px 40px, 40px 60px, 60px 20px, 20px 40px; }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 0.2; }
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .game-iframe {
        height: 400px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .disclaimer-content {
        margin: 1rem;
        padding: 2rem;
    }
    
    .disclaimer-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .game-iframe {
        height: 350px;
    }
}

/* Page-specific styles */
.page-container {
    min-height: 100vh;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--light) 0%, #FFF5E6 100%);
}

.page-header {
    text-align: center;
    padding: 3rem 0;
}

.page-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.content-section {
    padding: 2rem;
}

.content-section h2 {
    font-family: 'Orbitron', monospace;
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.content-section p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.games-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e1e1;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

.submit-btn {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}