/* Base styles and resets */
:root {
    --primary-color: #0088ff;
    --bg-color: #000;
    --text-color: #fff;
    --secondary-bg: #111;
    --accent-color: #0088ff;
    --header-height: 70px;
    --neon-glow: 0 0 5px rgba(0, 136, 255, 0.5), 0 0 20px rgba(0, 136, 255, 0.3);
    --gradient-primary: linear-gradient(135deg, #0088ff, #00c3ff);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(to bottom, #000000, #050505, #101010);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

h1, h2, h3 {
    margin-bottom: 20px;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: var(--neon-glow);
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.feature-content:hover h2::after {
    width: 100px;
}

p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
    transition: all 0.4s ease;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    z-index: 1;
    transition: all 0.6s ease;
}

.btn:hover::after {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 136, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 136, 255, 0.5);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    height: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: var(--neon-glow);
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
    bottom: 5px;
    right: -8px;
    box-shadow: var(--neon-glow);
}

nav ul {
    display: none;
}

.menu-toggle {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    color: var(--primary-color);
    text-shadow: var(--neon-glow);
}

/* Mobile navigation when active */
nav.active ul {
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.3s ease forwards;
}

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

nav.active ul li {
    margin: 12px 0;
    transform: translateX(-20px);
    opacity: 0;
    animation: slideInRight 0.3s ease forwards;
}

nav.active ul li:nth-child(1) { animation-delay: 0.1s; }
nav.active ul li:nth-child(2) { animation-delay: 0.2s; }
nav.active ul li:nth-child(3) { animation-delay: 0.3s; }
nav.active ul li:nth-child(4) { animation-delay: 0.4s; }
nav.active ul li:nth-child(5) { animation-delay: 0.5s; }

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

.btn-contact {
    background: var(--gradient-primary);
    padding: 10px 18px;
    border-radius: 50px;
    box-shadow: var(--neon-glow);
    position: relative;
    overflow: hidden;
}

.btn-contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transition: all 0.6s ease;
}

.btn-contact:hover::after {
    left: 100%;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 136, 255, 0.5);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('https://source.unsplash.com/random/1920x1080/?marketing') no-repeat center center/cover;
    margin-top: var(--header-height);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 136, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--bg-color), transparent);
    pointer-events: none;
}

.hero-content {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    position: relative;
}

.hero h1::before {
    content: '<';
    position: absolute;
    left: -30px;
    top: -10px;
    font-size: 2rem;
    opacity: 0.3;
    color: var(--primary-color);
}

.hero h1::after {
    content: '/>';
    position: absolute;
    right: -40px;
    bottom: -10px;
    font-size: 2rem;
    opacity: 0.3;
    color: var(--primary-color);
}

.hero p {
    margin-bottom: 35px;
    font-size: 1.1rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: -10px;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.5;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

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

.arrow-down {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.arrow-down span {
    display: block;
    width: 15px;
    height: 15px;
    border-bottom: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    transform: rotate(45deg);
    animation: arrowDown 1.5s infinite;
    opacity: 0;
}

.arrow-down span:nth-child(1) {
    animation-delay: 0s;
}

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

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

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

/* Tag styling */
.tag {
    display: inline-block;
    padding: 5px 10px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* Button link styling */
.btn-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.btn-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

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

.btn-link:hover {
    color: #00a0ff;
}

.btn-link:hover i {
    transform: translateX(5px);
}

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

/* Pulse animation for CTA button */
.pulse-btn {
    position: relative;
}

.pulse-btn.pulse::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--gradient-primary);
    border-radius: 50px;
    z-index: -1;
    animation: pulse-animation 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Feature Sections */
.feature {
    background-color: var(--secondary-bg);
    position: relative;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at right, rgba(0, 136, 255, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.feature:nth-child(odd) {
    background-color: var(--bg-color);
}

.feature:nth-child(odd)::before {
    background: radial-gradient(circle at left, rgba(0, 136, 255, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.feature-image {
    order: 1;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    transition: all 0.5s ease;
}

.feature-image svg {
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
    transition: all 0.5s ease;
}

.feature:hover .feature-image svg {
    transform: translateY(-10px);
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4)) brightness(1.05);
}

.feature-content {
    order: 2;
    transition: all 0.3s ease;
}

.feature.reverse .feature-content {
    order: 2;
}

.feature.reverse .feature-image {
    order: 1;
}

.feature-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.feature-content li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.feature-content li:hover {
    transform: translateX(5px);
}

.feature-content li::before {
    content: "→";
    position: absolute;
    left: 0;
    font-weight: bold;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.feature-content li:hover::before {
    transform: translateX(5px);
    text-shadow: var(--neon-glow);
}

/* CTA Section */
.cta {
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('https://source.unsplash.com/random/1920x1080/?business') no-repeat center center/cover;
    padding: 100px 0;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 136, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: var(--neon-glow);
    display: inline-block;
}

.cta h2::after {
    left: 25%;
    width: 50%;
    bottom: -15px;
}

.cta:hover h2::after {
    width: 70%;
    left: 15%;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

.trust-elements {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 60px 0;
    justify-content: center;
    align-items: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.stars {
    color: #ffdd00;
    margin-bottom: 15px;
    font-size: 1.3rem;
    filter: drop-shadow(0 0 3px rgba(255, 221, 0, 0.5));
}

.trust-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: var(--neon-glow);
}

.testimonial {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 20px;
    font-size: 8rem;
    font-family: serif;
    color: var(--primary-color);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-author {
    margin-top: 30px;
    text-align: right;
    position: relative;
}

.testimonial-author::before {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-primary);
}

/* Footer */
footer {
    background-color: #050505;
    padding: 80px 0 20px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.3;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-info, .footer-nav, .footer-social {
    margin-bottom: 30px;
}

.footer-nav h3, .footer-social h3 {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.footer-nav h3::after, .footer-social h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-nav ul li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-nav ul li a {
    position: relative;
    padding-left: 15px;
    transition: all 0.3s ease;
}

.footer-nav ul li a::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

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

.footer-nav ul li a:hover::before {
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.social-icons a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 136, 255, 0.3);
}

.social-icons a:hover::before {
    opacity: 1;
}

.social-icons a:hover i {
    transform: scale(1.2);
}

.social-icons a i {
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Media Queries */
@media (min-width: 768px) {
    h1 {
        font-size: 4rem;
    }
    
    h2 {
        font-size: 2.8rem;
    }
    
    .hero h1 {
        font-size: 3.8rem;
    }
    
    nav ul {
        display: flex;
        gap: 25px;
        align-items: center;
    }
    
    nav ul li a {
        position: relative;
    }
    
    nav ul li a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--gradient-primary);
        transition: all 0.3s ease;
    }
    
    nav ul li a:hover::after {
        width: 100%;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .feature .feature-image {
        order: 1;
    }
    
    .feature .feature-content {
        order: 2;
    }
    
    .feature.reverse .feature-image {
        order: 2;
    }
    
    .feature.reverse .feature-content {
        order: 1;
    }
    
    .trust-elements {
        flex-direction: row;
        justify-content: space-around;
        gap: 20px;
    }
    
    .trust-item {
        flex: 1;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .container {
        padding: 0 40px;
    }
    
    section {
        padding: 120px 0;
    }
    
    .hero-content {
        text-align: left;
        margin: 0;
    }
    
    .hero h1::before {
        left: -50px;
    }
    
    .hero h1::after {
        right: initial;
        left: 80%;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.feature, .cta, .hero-content {
    animation: fadeIn 1s ease-out forwards;
}

.feature-image {
    animation: float 6s ease-in-out infinite;
}

/* Fancy cursor effect for desktop */
@media (min-width: 992px) {
    .fancy-cursor {
        position: fixed;
        width: 30px;
        height: 30px;
        border: 2px solid var(--primary-color);
        border-radius: 50%;
        pointer-events: none;
        transform: translate(-50%, -50%);
        z-index: 9999;
        transition: all 0.1s ease;
        opacity: 0.5;
    }
    
    .fancy-cursor::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 5px;
        height: 5px;
        background-color: var(--primary-color);
        border-radius: 50%;
        opacity: 0.8;
    }
}

/* Glowing accents */
.glow-accent {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 136, 255, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.accent-1 {
    top: 20%;
    left: 10%;
    animation: pulse 8s infinite alternate;
}

.accent-2 {
    bottom: 30%;
    right: 5%;
    animation: pulse 12s infinite alternate-reverse;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.5);
    }
    100% {
        opacity: 0.3;
        transform: scale(1);
    }
}

/* Reveal animations */
.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Newsletter form */
.newsletter {
    margin-top: 30px;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    border-radius: 5px 0 0 5px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
    padding: 0 20px;
    background: var(--gradient-primary);
    border: none;
    color: white;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #0077e6, #00aeff);
}

.success-message {
    color: #0088ff;
    padding: 10px 0;
    animation: fadeIn 0.5s ease forwards;
}

/* Quote mark styling */
.quote-mark {
    position: absolute;
    top: -30px;
    left: 20px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.footer-info .logo span, .logo span {
    background: linear-gradient(135deg, #00c3ff, #0088ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (min-width: 768px) {
    .hero-stats {
        justify-content: flex-start;
    }
    
    .newsletter-form {
        max-width: 300px;
    }
}

/* Booking Calendar Popup */
.booking-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.booking-popup-content {
    position: relative;
    background-color: var(--bg-color);
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.booking-popup.active .booking-popup-content {
    transform: translateY(0);
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.close-popup:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(0, 136, 255, 0.5);
}

@media (max-width: 768px) {
    .booking-popup-content {
        width: 95%;
        padding: 20px;
    }
    
    .close-popup {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
} 