/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #0E273C;
    color: #DDE6ED;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    color: #F9B248;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #7CE0D3;
    text-shadow: 0 0 10px #7CE0D3;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #F9B248 0%, #FF6C4D 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 178, 72, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 178, 72, 0.5);
    color: #FFFFFF;
}

.btn-secondary {
    background: linear-gradient(135deg, #7CE0D3 0%, #4ECDC4 100%);
    box-shadow: 0 4px 15px rgba(124, 224, 211, 0.3);
}

.btn-secondary:hover {
    box-shadow: 0 8px 25px rgba(124, 224, 211, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(14, 39, 60, 0.95);
    backdrop-filter: blur(10px);
    border-top: 2px solid #F9B248;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cookie-accept {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #F9B248 0%, #FF6C4D 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 178, 72, 0.4);
}

.btn-cookie-learn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #7CE0D3;
    color: #7CE0D3;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie-learn:hover {
    background: #7CE0D3;
    color: #0E273C;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(14, 39, 60, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(249, 178, 72, 0.2);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
}

.nav-logo img {
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: rotate(360deg);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-button {
    padding: 0.75rem 1.5rem;
    background: rgba(124, 224, 211, 0.1);
    color: #7CE0D3;
    border: 2px solid rgba(124, 224, 211, 0.3);
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.nav-button:hover {
    background: #7CE0D3;
    color: #0E273C;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(124, 224, 211, 0.4);
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact-item {
    text-align: right;
}

.contact-label {
    display: block;
    font-size: 0.9rem;
    color: #DDE6ED;
    margin-bottom: 0.25rem;
}

.contact-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: #F9B248;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Section Styles */
.section {
    padding: 5rem 0;
    position: relative;
}

.section:nth-child(even) {
    background: rgba(124, 224, 211, 0.05);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #F9B248 0%, #7CE0D3 100%);
    margin: 1rem auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #DDE6ED;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    padding: 8rem 0;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(249, 178, 72, 0.1) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23F9B248" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: float 20s linear infinite;
    z-index: -1;
}

@keyframes float {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #7CE0D3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(124, 224, 211, 0.5); }
    to { text-shadow: 0 0 30px rgba(124, 224, 211, 0.8); }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-top: 3rem;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

/* Card Styles */
.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(249, 178, 72, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 224, 211, 0.1), transparent);
    transition: left 0.5s ease;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-10px);
    border-color: #7CE0D3;
    box-shadow: 0 20px 40px rgba(124, 224, 211, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F9B248 0%, #FF6C4D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #FFFFFF;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #F9B248;
}

.card-text {
    color: #DDE6ED;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Services Section */
.service-card {
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 15px;
}

.service-image:hover img {
    transform: scale(1.1);
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 178, 72, 0.8) 0%, rgba(124, 224, 211, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.service-card:hover .service-image::after {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #7CE0D3 0%, #4ECDC4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0E273C;
    animation: pulse 2s infinite;
    position: relative;
    z-index: 2;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Testimonials */
.testimonial {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border-left: 4px solid #F9B248;
    position: relative;
}

.testimonial-quote {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.testimonial-author {
    color: #F9B248;
    font-weight: 600;
}

.testimonial-company {
    color: #7CE0D3;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(249, 178, 72, 0.2);
}

.faq-question {
    padding: 1.5rem;
    background: rgba(249, 178, 72, 0.1);
    font-weight: 600;
    color: #F9B248;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(249, 178, 72, 0.2);
}

.faq-answer {
    padding: 1.5rem;
    color: #DDE6ED;
    line-height: 1.7;
}

/* Form Styles */
.form-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(124, 224, 211, 0.3);
    max-width: 600px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    margin-bottom: 0.5rem;
    color: #F9B248;
    font-weight: 600;
}

.form-input, .form-select, .form-textarea {
    padding: 1rem;
    border: 2px solid rgba(124, 224, 211, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-select {
    background-color: rgba(14, 39, 60, 0.8);
    color: #FFFFFF;
}

.form-select option {
    background-color: #0E273C;
    color: #FFFFFF;
    padding: 0.5rem;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: #7CE0D3;
    box-shadow: 0 0 20px rgba(124, 224, 211, 0.3);
}

.form-input::placeholder {
    color: #DDE6ED;
    opacity: 0.7;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1rem;
}

.checkbox-input {
    margin-top: 0.25rem;
}

.checkbox-label {
    color: #DDE6ED;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-submit {
    margin-top: 2rem;
    width: 100%;
    padding: 1.25rem;
    font-size: 1.2rem;
}

/* Footer Styles */
.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(249, 178, 72, 0.2);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    color: #DDE6ED;
}

.footer-title {
    font-size: 2rem;
    color: #F9B248;
    margin-bottom: 1rem;
}

.footer-subtitle {
    color: #7CE0D3;
    margin-bottom: 1rem;
}

.footer-description {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-contact p {
    margin-bottom: 1rem;
}

.footer-contact a {
    color: #F9B248;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #DDE6ED;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #7CE0D3;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(124, 224, 211, 0.2);
    color: #DDE6ED;
}

/* Page Styles */
.page-header {
    padding: 4rem 0 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(249, 178, 72, 0.1) 0%, rgba(124, 224, 211, 0.1) 100%);
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.page-content h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #F9B248;
}

.page-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #7CE0D3;
}

.page-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.page-content ul, .page-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Thanks Page */
.thanks-container {
    text-align: center;
    padding: 5rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #7CE0D3 0%, #F9B248 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: #0E273C;
    animation: bounce 1s ease-in-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-menu {
        justify-content: center;
        order: 2;
    }
    
    .nav-contact {
        justify-content: center;
        order: 3;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .form-container {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-content {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-actions button,
    .cookie-actions a {
        width: 100%;
        text-align: center;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1rem;
    }
} 