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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: #e2e8f0;
    background: #0f172a;
}

/* Header - Dark theme */
header {
    background: #0a0f1a;
    color: #ffffff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 3px solid #00a896;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1000;
}

/* Hide regular navigation */
header nav {
    display: none;
}

/* Logo styling - larger size */
.logo a {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo img {
    display: block;
    height: 80px;
    width: auto;
}

/* Header right section - language switcher + menu button */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Switcher in Header */
.header-language {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #1e293b;
    padding: 5px 12px;
    border-radius: 30px;
    border: 1px solid #334155;
}

.lang-btn {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 20px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.lang-btn:hover {
    color: #00a896;
    background: rgba(0,168,150,0.1);
}

.lang-btn.active {
    color: #0a0f1a;
    background: #00a896;
}

.lang-divider {
    color: #334155;
    font-size: 0.8rem;
}

/* Hamburger Menu Button */
.menu-toggle {
    cursor: pointer;
    font-size: 1.8rem;
    color: #00a896;
    transition: all 0.3s ease;
    z-index: 1001;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.menu-toggle:hover {
    color: #0284c7;
    background: rgba(0,168,150,0.1);
    transform: scale(1.05);
}

/* Slide-in Navigation Menu */
.slide-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #0a0f1a;
    box-shadow: -5px 0 25px rgba(0,0,0,0.3);
    z-index: 1002;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
    padding: 2rem 1.5rem;
}

.slide-nav.active {
    right: 0;
}

/* Nav Header */
.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #334155;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-close {
    cursor: pointer;
    font-size: 1.8rem;
    color: #00a896;
    transition: all 0.3s ease;
}

.nav-close:hover {
    color: #0284c7;
    transform: rotate(90deg);
}

/* Navigation Menu */
.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.nav-menu li {
    margin: 1rem 0;
}

.nav-menu li a {
    display: block;
    padding: 12px 15px;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.nav-menu li a i {
    margin-right: 12px;
    width: 25px;
    color: #00a896;
}

.nav-menu li a:hover {
    background: rgba(0,168,150,0.1);
    color: #00a896;
    transform: translateX(5px);
}

/* Contact Info in Nav */
.nav-contact {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #334155;
}

.nav-contact p {
    margin: 12px 0;
    color: #94a3b8;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-contact p i {
    width: 25px;
    color: #00a896;
    font-size: 1rem;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1001;
    display: none;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    display: block;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

main {
    flex: 1;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Hero Slideshow */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

/* First slide fades in on page load */
.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 90%;
    padding: 0 20px;
    text-align: center;
}

.hero-text {
    margin-bottom: 20px;
}

/* Animated Slogan - Montserrat font with INTENSE Neon Glow */
.animated-slogan {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    line-height: 1.3;
}

.company-name {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0,168,150,0.8),
                 0 0 20px rgba(0,168,150,0.6),
                 0 0 40px rgba(0,168,150,0.4),
                 0 0 80px rgba(0,168,150,0.3),
                 0 0 120px rgba(0,168,150,0.2),
                 0 0 160px rgba(0,168,150,0.1);
    animation: dropDown 0.6s ease-out forwards, neonFlicker 3s ease-in-out infinite;
    opacity: 0;
    transform: translateY(-50px);
    color: #ffffff;
}

.company-services {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0,168,150,0.5),
                 0 0 20px rgba(0,168,150,0.3),
                 0 0 40px rgba(0,168,150,0.2),
                 0 0 80px rgba(0,168,150,0.1);
    animation: dropDown 0.6s ease-out 0.3s forwards, neonFlicker 3.5s ease-in-out 0.3s infinite;
    opacity: 0;
    transform: translateY(-50px);
    color: #cbd5e1;
}

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

@keyframes neonFlicker {
    0% {
        text-shadow: 0 0 10px rgba(0,168,150,0.8), 0 0 20px rgba(0,168,150,0.6), 0 0 40px rgba(0,168,150,0.4), 0 0 80px rgba(0,168,150,0.3), 0 0 120px rgba(0,168,150,0.2);
    }
    20% {
        text-shadow: 0 0 5px rgba(0,168,150,0.3), 0 0 10px rgba(0,168,150,0.2);
    }
    30% {
        text-shadow: 0 0 15px rgba(0,168,150,0.9), 0 0 30px rgba(0,168,150,0.7), 0 0 60px rgba(0,168,150,0.5), 0 0 100px rgba(0,168,150,0.3);
    }
    40% {
        text-shadow: 0 0 8px rgba(0,168,150,0.6), 0 0 20px rgba(0,168,150,0.4);
    }
    60% {
        text-shadow: 0 0 12px rgba(0,168,150,0.7), 0 0 25px rgba(0,168,150,0.5), 0 0 50px rgba(0,168,150,0.3);
    }
    80% {
        text-shadow: 0 0 5px rgba(0,168,150,0.2), 0 0 10px rgba(0,168,150,0.1);
    }
    100% {
        text-shadow: 0 0 10px rgba(0,168,150,0.8), 0 0 20px rgba(0,168,150,0.6), 0 0 40px rgba(0,168,150,0.4), 0 0 80px rgba(0,168,150,0.3), 0 0 120px rgba(0,168,150,0.2);
    }
}

/* Slogan Container - Cormorant Garamond font */
.slogan-container {
    margin-top: 20px;
    overflow: hidden;
    min-height: 60px;
}

.falling-slogan {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    font-style: italic;
    color: #00a896;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    margin: 0;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(-30px);
}

.falling-slogan.animate-fall {
    animation: fallDown 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

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

/* Philosophy Section */
.philosophy-section {
    margin: 4rem 0;
    padding: 2rem;
}

.philosophy-container {
    background: #1e293b;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid #334155;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.philosophy-content h2 {
    color: #00a896;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

.philosophy-content h2 i {
    margin-right: 10px;
}

.philosophy-content > p {
    color: #94a3b8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.philosophy-item {
    text-align: center;
    padding: 1.5rem;
    background: #0f172a;
    border-radius: 12px;
    border: 1px solid #334155;
    transition: all 0.3s ease;
}

.philosophy-item:hover {
    border-color: #00a896;
    transform: translateY(-5px);
}

.philosophy-item i {
    font-size: 2.5rem;
    color: #00a896;
    margin-bottom: 1rem;
}

.philosophy-item h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.philosophy-item p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Services Introduction */
.services-intro {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
}

.services-intro h2 {
    color: #00a896;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.services-intro p {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Grid - Centered content */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: #1e293b;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 1px solid #334155;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
    border-color: #00a896;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-icon i {
    color: #00a896;
}

.service-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.service-features {
    list-style: none;
    padding-left: 0;
    text-align: center;
}

.service-features li {
    padding: 0.4rem 0;
    color: #cbd5e1;
    font-size: 0.9rem;
    position: relative;
    display: block;
    text-align: center;
}

.service-features li i {
    color: #00a896;
    margin-right: 8px;
}

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    margin: 3rem 0;
    border: 1px solid #334155;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #00a896;
}

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

.benefit {
    text-align: center;
    padding: 1.5rem;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-icon i {
    color: #00a896;
}

.benefit h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.benefit p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Payment Methods Section */
.payment-methods {
    margin: 4rem 0;
    padding: 2rem;
    animation: floatIn 0.8s ease-out;
}

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.payment-container {
    background: #1e293b;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid #334155;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-width: 1200px;
    margin: 0 auto;
}

.payment-container h2 {
    color: #00a896;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
}

.payment-container h2 i {
    margin-right: 10px;
}

.payment-subtitle {
    color: #94a3b8;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.payment-item {
    background: #0f172a;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #334155;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.payment-item:hover {
    transform: translateY(-5px);
    border-color: #00a896;
    box-shadow: 0 8px 20px rgba(0,168,150,0.15);
}

.payment-item i {
    font-size: 2.5rem;
    color: #00a896;
    margin-bottom: 0.5rem;
}

.payment-item span {
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Bitcoin specific styling */
.bitcoin-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #f7931a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    position: relative;
    overflow: hidden;
}

.bitcoin-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #f7931a, #ff6b35, #f7931a);
    background-size: 400% 400%;
    border-radius: 14px;
    z-index: -1;
    animation: gradientBorder 3s ease infinite;
}

@keyframes gradientBorder {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.bitcoin-item .bitcoin-logo {
    height: 40px;
    width: auto;
    margin-bottom: 0.5rem;
    display: block;
}

.bitcoin-item span {
    color: #0a0f1a;
    font-size: 0.9rem;
    font-weight: 600;
}

.bitcoin-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(247, 147, 26, 0.3);
}

.payment-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #334155;
}

.payment-footer p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin: 0.3rem 0;
}

.payment-footer p i {
    color: #00a896;
    margin-right: 8px;
}

.payment-provider {
    color: #64748b;
    font-size: 0.8rem !important;
    margin-top: 0.5rem !important;
}

/* Call to Action Section */
.cta-section {
    text-align: center;
    background: #1e293b;
    padding: 3rem 2rem;
    border-radius: 16px;
    margin: 3rem 0 1rem;
    border: 1px solid #334155;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cta-section h2 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background: #00a896;
    color: #0a0f1a;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,168,150,0.3);
}

.cta-button:hover {
    background: #0284c7;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(2,132,199,0.4);
}

.cta-button i {
    margin-right: 8px;
}

/* Contact page layout */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.contact-form, .contact-info {
    flex: 1;
    min-width: 250px;
    background: #1e293b;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #334155;
    display: flex;
    flex-direction: column;
}

.contact-form:hover, .contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.contact-form h2, .contact-info h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-form h2 i, .contact-info h3 i {
    margin-right: 8px;
    color: #00a896;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-top: 0;
}

.contact-info h3:first-of-type {
    margin-top: 0;
}

.contact-info h3:not(:first-of-type) {
    margin-top: 1.5rem;
}

/* Input groups with icons */
.input-group {
    position: relative;
    margin: 10px 0;
}

.input-group i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    z-index: 1;
}

.input-group textarea ~ i {
    top: 20px;
    transform: none;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid #334155;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #0f172a;
    color: #e2e8f0;
}

.input-group input:focus, 
.input-group textarea:focus {
    outline: none;
    border-color: #00a896;
    box-shadow: 0 0 0 3px rgba(0,168,150,0.2);
    background: #1e293b;
}

.input-group textarea {
    padding-top: 12px;
    resize: vertical;
}

/* CAPTCHA Row with Font Awesome */
.captcha-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 10px 0;
    flex-wrap: wrap;
}

.captcha-image-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 5px 10px;
}

.captcha-image-wrapper img {
    margin: 0;
    border: none;
    height: 40px;
    width: auto;
    border-radius: 6px;
}

.captcha-refresh {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    color: #00a896;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.captcha-refresh:hover {
    background: #334155;
    color: #0284c7;
    transform: rotate(180deg);
}

.captcha-refresh i {
    font-size: 1.1rem;
}

.captcha-input {
    flex: 1;
    min-width: 150px;
    margin: 0;
}

.captcha-input input {
    margin: 0;
}

/* Submit button styling */
.submit-btn {
    background: linear-gradient(135deg, #00a896 0%, #0284c7 100%);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0,168,150,0.3);
}

.submit-btn i {
    font-size: 1.1rem;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #0284c7 0%, #00a896 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,168,150,0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Contact info icons */
.contact-info p i {
    width: 25px;
    color: #00a896;
    margin-right: 8px;
}

.contact-info p {
    color: #94a3b8;
}

/* Google Maps inside contact-info */
.google-maps {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.google-maps iframe {
    width: 100%;
    height: 250px;
    border: 0;
    display: block;
}

/* Policy Pages Styles */
.policy-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    background: #1e293b;
    border-radius: 16px;
    border: 1px solid #334155;
    width: 100%;
}

.policy-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #00a896;
}

.policy-header h1 {
    color: #00a896;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.policy-header h1 i {
    margin-right: 10px;
}

.policy-date {
    color: #94a3b8;
    font-size: 0.9rem;
}

.policy-section {
    margin-bottom: 2rem;
}

.policy-section h2 {
    color: #00a896;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #334155;
}

.policy-section p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
}

.policy-section ul li {
    color: #cbd5e1;
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.policy-section ul li:before {
    content: "▹";
    color: #00a896;
    position: absolute;
    left: 0;
}

/* Cookie Table - Full Width */
.cookie-table {
    overflow-x: auto;
    margin: 1rem 0;
    width: 100%;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: #0f172a;
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table th {
    background: #00a896;
    color: #0a0f1a;
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 10px 12px;
    color: #cbd5e1;
    border-bottom: 1px solid #334155;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: flex;
}

body.modal-open {
    overflow: hidden;
}

.modal-container {
    max-width: 500px;
    width: 90%;
    padding: 20px;
    animation: modalSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.modal-content {
    background: #1e293b;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid #334155;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.modal-content.success {
    border-color: #00a896;
}

.modal-content.error {
    border-color: #ef4444;
}

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

.modal-content.success .modal-icon {
    color: #00a896;
}

.modal-content.error .modal-icon {
    color: #ef4444;
}

.modal-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.modal-message {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal-btn {
    background: #00a896;
    color: #0a0f1a;
    padding: 12px 30px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.modal-btn:hover {
    background: #0284c7;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(2,132,199,0.4);
}

.modal-content.error .modal-btn {
    background: #ef4444;
    color: white;
}

.modal-content.error .modal-btn:hover {
    background: #dc2626;
    box-shadow: 0 6px 16px rgba(239,68,68,0.4);
}

/* Slide-in Animations */
.slide-in-left,
.slide-in-right {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.slide-in-right {
    transform: translateX(60px);
}

.slide-in-left.visible,
.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays for service cards */
.service-card.slide-in-left:nth-child(1) { transition-delay: 0.1s; }
.service-card.slide-in-right:nth-child(2) { transition-delay: 0.2s; }
.service-card.slide-in-left:nth-child(3) { transition-delay: 0.3s; }
.service-card.slide-in-right:nth-child(4) { transition-delay: 0.4s; }
.service-card.slide-in-left:nth-child(5) { transition-delay: 0.5s; }
.service-card.slide-in-right:nth-child(6) { transition-delay: 0.6s; }

/* Benefit items stagger */
.benefit.slide-in-left:nth-child(1) { transition-delay: 0.1s; }
.benefit.slide-in-right:nth-child(2) { transition-delay: 0.2s; }
.benefit.slide-in-left:nth-child(3) { transition-delay: 0.3s; }
.benefit.slide-in-right:nth-child(4) { transition-delay: 0.4s; }

/* Payment items stagger */
.payment-item.slide-in-left:nth-child(1) { transition-delay: 0.05s; }
.payment-item.slide-in-right:nth-child(2) { transition-delay: 0.1s; }
.payment-item.slide-in-left:nth-child(3) { transition-delay: 0.15s; }
.payment-item.slide-in-right:nth-child(4) { transition-delay: 0.2s; }
.payment-item.slide-in-left:nth-child(5) { transition-delay: 0.25s; }
.payment-item.slide-in-right:nth-child(6) { transition-delay: 0.3s; }
.payment-item.slide-in-left:nth-child(7) { transition-delay: 0.35s; }
.payment-item.slide-in-right:nth-child(8) { transition-delay: 0.4s; }

/* Section-level animations */
.services-intro.slide-in-left { transition-delay: 0.1s; }
.why-choose-us.slide-in-left { transition-delay: 0.1s; }
.payment-methods.slide-in-left { transition-delay: 0.1s; }
.cta-section.slide-in-left { transition-delay: 0.1s; }

/* Costs Page Styles */
.costs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    background: #1e293b;
    border-radius: 16px;
    border: 1px solid #334155;
    width: 100%;
}

.costs-intro p {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-subtitle {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.pricing-card {
    background: #0f172a;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #334155;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #00a896;
    box-shadow: 0 8px 20px rgba(0,168,150,0.1);
}

.pricing-header {
    border-bottom: 1px solid #334155;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.pricing-header h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-range {
    color: #00a896;
    font-size: 1.5rem;
    font-weight: 700;
}

.pricing-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.pricing-body ul li {
    color: #cbd5e1;
    padding: 0.3rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-body ul li i {
    color: #00a896;
    font-size: 0.8rem;
}

.pricing-note {
    background: #1e293b;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    color: #94a3b8;
    font-size: 0.85rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border-left: 3px solid #00a896;
}

.pricing-note i {
    color: #00a896;
    margin-top: 2px;
}

/* Pricing Table */
.table-wrapper {
    overflow-x: auto;
    margin: 1rem 0;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: #0f172a;
    border-radius: 8px;
    overflow: hidden;
}

.pricing-table thead th {
    background: #00a896;
    color: #0a0f1a;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
}

.pricing-table tbody td {
    padding: 10px 16px;
    color: #cbd5e1;
    border-bottom: 1px solid #334155;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr:hover {
    background: #1e293b;
}

/* Marketing Grid */
.marketing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 1.5rem 0;
}

.marketing-card {
    background: #0f172a;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #334155;
}

.marketing-card h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.marketing-card h3 i {
    color: #00a896;
    margin-right: 8px;
}

.marketing-item {
    margin-bottom: 1.2rem;
    padding: 1rem;
    background: #1e293b;
    border-radius: 8px;
}

.marketing-item h4 {
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.marketing-price {
    color: #00a896;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.marketing-item ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
}

.marketing-item ul li {
    color: #94a3b8;
    font-size: 0.85rem;
    padding: 0.2rem 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.marketing-item ul li i {
    color: #00a896;
    font-size: 0.7rem;
}

.example-box {
    border: 1px solid #00a896;
    background: rgba(0,168,150,0.05);
}

.example-box ul li {
    color: #e2e8f0;
}

/* Social Media Section - Full width, 3 columns on desktop */
.social-section-wrapper {
    width: 100% !important;
    margin: 1.5rem 0 !important;
}

.social-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
    width: 100% !important;
}

.social-grid .marketing-card {
    background: #0f172a !important;
    border-radius: 12px !important;
    padding: 1.5rem !important;
    border: 1px solid #334155 !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.social-grid .marketing-card h3 {
    color: #ffffff !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
}

.social-grid .marketing-card h3 i {
    color: #00a896 !important;
    margin-right: 8px !important;
}

.social-grid .marketing-item {
    margin-bottom: 1rem !important;
    padding: 1rem !important;
    background: #1e293b !important;
    border-radius: 8px !important;
    flex: 1 !important;
}

.social-grid .marketing-item:last-child {
    margin-bottom: 0 !important;
}

.social-grid .marketing-item h4 {
    color: #e2e8f0 !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.3rem !important;
}

.social-grid .marketing-price {
    color: #00a896 !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
}

.social-grid .marketing-item ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0.5rem 0 0 0 !important;
}

.social-grid .marketing-item ul li {
    color: #94a3b8 !important;
    font-size: 0.9rem !important;
    padding: 0.2rem 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.social-grid .marketing-item ul li i {
    color: #00a896 !important;
    font-size: 0.7rem !important;
}

/* Costs CTA */
.costs-cta {
    text-align: center;
    padding: 2rem;
    background: #0f172a;
    border-radius: 12px;
    border: 1px solid #334155;
}

.costs-cta h2 {
    color: #00a896;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.costs-cta p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

/* Stagger delays for pricing cards */
.pricing-card.slide-in-left:nth-child(1) { transition-delay: 0.1s; }
.pricing-card.slide-in-right:nth-child(2) { transition-delay: 0.2s; }
.pricing-card.slide-in-left:nth-child(3) { transition-delay: 0.3s; }
.pricing-card.slide-in-right:nth-child(4) { transition-delay: 0.4s; }

.marketing-card.slide-in-left { transition-delay: 0.1s; }
.marketing-card.slide-in-right { transition-delay: 0.2s; }

/* Footer */
footer {
    background: #0a0f1a;
    color: #e2e8f0;
    text-align: center;
    padding: 2rem 2rem 1rem;
    margin-top: 2rem;
    border-top: 1px solid #334155;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    text-align: left;
}

.footer-section h4 {
    color: #00a896;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section h4 i {
    margin-right: 8px;
}

.footer-section p {
    margin: 8px 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #94a3b8;
}

.footer-section p i {
    color: #00a896;
    width: 25px;
    margin-right: 8px;
}

/* Footer link styling */
.footer-section a {
    color: #00a896;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #0284c7;
    text-decoration: underline;
}

/* Email and phone specific styling */
#email-address a {
    color: #00a896;
    text-decoration: none;
}

#email-address a:hover {
    color: #0284c7;
    text-decoration: underline;
}

#phone-number {
    color: #94a3b8;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #334155;
    font-size: 0.85rem;
    color: #64748b;
}

.footer-bottom i.fa-heart {
    color: #00a896;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #00a896;
    text-decoration: none;
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: #0284c7;
    text-decoration: underline;
}

/* Success/error message styling */
.success-message {
    color: #00a896;
    background: #1e293b;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
    border: 1px solid #00a896;
}

.success-message i {
    margin-right: 8px;
}

.error-message {
    color: #ef4444;
    background: #1e293b;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
    border: 1px solid #ef4444;
}

/* Container utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Legal Notice Page - Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
    background: #0f172a;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #334155;
}

.info-item {
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
}

.info-item strong {
    color: #00a896;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.info-item span {
    color: #e2e8f0;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
    }
    
    .logo img {
        height: 60px;
    }
    
    .header-right {
        gap: 12px;
    }
    
    .header-language {
        padding: 4px 10px;
    }
    
    .lang-btn {
        font-size: 0.8rem;
        padding: 3px 6px;
    }
    
    .menu-toggle {
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }
    
    .slide-nav {
        max-width: 85%;
    }
    
    .hero {
        min-height: 550px;
    }
    
    .company-name {
        font-size: 1.8rem;
    }
    
    .company-services {
        font-size: 1rem;
        font-weight: 300;
    }
    
    .falling-slogan {
        font-size: 1.2rem;
    }
    
    .slogan-container {
        min-height: 45px;
    }
    
    .services-intro h2 {
        font-size: 1.8rem;
    }
    
    .services-intro p {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .why-choose-us {
        padding: 2rem 1rem;
    }
    
    .why-choose-us h2 {
        font-size: 1.6rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .cta-section h2 {
        font-size: 1.4rem;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 1rem;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-form, .contact-info {
        padding: 1.5rem;
    }
    
    .captcha-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .captcha-image-wrapper {
        justify-content: center;
    }
    
    .submit-btn {
        padding: 12px 24px;
    }
    
    .google-maps iframe {
        height: 200px;
    }
    
    .policy-container {
        padding: 1.5rem;
    }
    
    .policy-header h1 {
        font-size: 1.8rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    .payment-container {
        padding: 1.5rem;
    }
    
    .payment-container h2 {
        font-size: 1.5rem;
    }
    
    .payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .payment-item {
        min-height: 80px;
        padding: 1rem;
    }
    
    .payment-item i {
        font-size: 2rem;
    }
    
    .bitcoin-item .bitcoin-logo {
        height: 30px;
    }
    
    .modal-container {
        width: 95%;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
    }
    
    .modal-icon {
        font-size: 3rem;
    }
    
    .modal-title {
        font-size: 1.2rem;
    }
    
    .modal-message {
        font-size: 0.9rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .marketing-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: 1fr !important;
    }
    
    .costs-container {
        padding: 1.5rem;
    }
    
    .pricing-range {
        font-size: 1.2rem;
    }
    
    .marketing-price {
        font-size: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .info-item {
        padding: 0.3rem;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-container {
        padding: 1.5rem;
    }
    
    .philosophy-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    main {
        padding: 15px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .header-right {
        gap: 8px;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .company-name {
        font-size: 1.4rem;
    }
    
    .company-services {
        font-size: 0.85rem;
        font-weight: 300;
    }
    
    .falling-slogan {
        font-size: 1rem;
    }
    
    .slogan-container {
        min-height: 35px;
    }
    
    .services-intro h2 {
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .benefit h3 {
        font-size: 1.1rem;
    }
    
    .submit-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .google-maps iframe {
        height: 180px;
    }
    
    .policy-header h1 {
        font-size: 1.4rem;
    }
    
    .policy-section h2 {
        font-size: 1.1rem;
    }
    
    .payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.8rem;
    }
    
    .payment-item {
        min-height: 70px;
        padding: 0.8rem;
    }
    
    .payment-item i {
        font-size: 1.5rem;
    }
    
    .payment-item span {
        font-size: 0.75rem;
    }
    
    .bitcoin-item .bitcoin-logo {
        height: 25px;
    }
    
    .modal-container {
        padding: 10px;
        width: 95%;
    }
    
    .modal-content {
        padding: 1.5rem 1rem;
    }
    
    .modal-icon {
        font-size: 2.5rem;
    }
    
    .modal-title {
        font-size: 1rem;
    }
    
    .modal-message {
        font-size: 0.85rem;
    }
    
    .modal-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .costs-container {
        padding: 1rem;
    }
    
    .pricing-card {
        padding: 1rem;
    }
    
    .marketing-card {
        padding: 1rem;
    }
}

/* Print styles */
@media print {
    header, footer, .cta-section, .google-maps, .contact-form button, .submit-btn, .menu-toggle, .slide-nav, .menu-overlay, .modal-overlay {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: black;
        background: white;
    }
    
    .service-card {
        break-inside: avoid;
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .hero {
        width: 100%;
        margin: 0;
        min-height: auto;
    }
    
    .hero-slideshow {
        position: relative;
    }
    
    .hero-slide {
        position: relative;
        opacity: 1;
    }
    
    .hero-slide:not(:first-child) {
        display: none;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: #00a896;
    color: #0a0f1a;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1e293b;
}

::-webkit-scrollbar-thumb {
    background: #00a896;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0284c7;
}

/* Additional professional touches */
.service-card, .contact-form, .contact-info {
    backdrop-filter: blur(0px);
}

.cta-button:active, .submit-btn:active {
    transform: translateY(0);
}

input, textarea {
    font-family: 'Poppins', sans-serif;
}

/* Placeholder styling */
::placeholder {
    color: #64748b;
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid #00a896;
    outline-offset: 2px;
}

/* Social Media Three Column Grid - Completely Independent */
.social-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
    width: 100%;
}

.social-card {
    background: #0f172a;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #334155;
    text-align: center;
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: #00a896;
    box-shadow: 0 8px 20px rgba(0,168,150,0.1);
}

.social-card h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.social-price {
    color: #00a896;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.social-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-card ul li {
    color: #94a3b8;
    font-size: 0.9rem;
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.social-card ul li i {
    color: #00a896;
    font-size: 0.7rem;
}

/* Responsive for social grid */
@media (max-width: 1024px) {
    .social-grid-three {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .social-grid-three {
        grid-template-columns: 1fr;
    }
    
    .social-card {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .social-card {
        padding: 1rem;
    }
    
    .social-card h3 {
        font-size: 1rem;
    }
    
    .social-price {
        font-size: 1.1rem;
    }
    
    .social-card ul li {
        font-size: 0.85rem;
    }
}

/* Google Maps inside contact-info - Night Mode */
.google-maps {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    position: relative;
}

.google-maps iframe {
    width: 100%;
    height: 250px;
    border: 0;
    display: block;
    filter: brightness(0.6) saturate(0.7) contrast(1.3);
    transition: filter 0.4s ease, transform 0.3s ease;
}

.google-maps iframe:hover {
    filter: brightness(0.85) saturate(0.9) contrast(1.1);
}

/* Dark overlay on map */
.google-maps::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 26, 0.35);
    pointer-events: none;
    border-radius: 12px;
    z-index: 1;
    transition: background 0.4s ease;
}

.google-maps:hover::after {
    background: rgba(10, 15, 26, 0.12);
}

/* Subtle gradient overlay from top */
.google-maps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, rgba(10, 15, 26, 0.5), transparent);
    pointer-events: none;
    z-index: 2;
    border-radius: 12px 12px 0 0;
}

/* Hover glow effect */
.google-maps:hover {
    box-shadow: 0 4px 20px rgba(0,168,150,0.15);
}

/* Map icon styling */
.google-maps > i {
    position: absolute;
    top: 12px;
    right: 16px;
    z-index: 3;
    color: #00a896;
    font-size: 1.2rem;
    opacity: 0.7;
    pointer-events: none;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .google-maps iframe {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .google-maps iframe {
        height: 180px;
    }
}
/* Landing Page Styles - Fully Responsive */
.landing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

.landing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: #1e293b;
    border-radius: 16px;
    border: 1px solid #334155;
}

.landing-header h1 {
    color: #00a896;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.landing-header h1 i {
    margin-right: 10px;
}

.landing-header p {
    color: #94a3b8;
    font-size: 1.1rem;
}

.landing-content {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.quote-form-wrapper {
    flex: 2;
    min-width: 300px;
    background: #1e293b;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #334155;
}

.landing-sidebar {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: #1e293b;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid #334155;
}

.sidebar-card h3 {
    color: #00a896;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.sidebar-card h3 i {
    margin-right: 8px;
}

.sidebar-card p {
    color: #94a3b8;
    line-height: 1.6;
}

.sidebar-card ul {
    list-style: none;
    padding: 0;
}

.sidebar-card ul li {
    color: #cbd5e1;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card ul li i {
    color: #00a896;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00a896 !important;
}

.small-text {
    font-size: 0.85rem;
    color: #64748b !important;
    margin-top: 0.5rem;
}

/* Form Styles - Mobile Friendly */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-group.half {
    flex: 1;
    min-width: 200px;
}

.form-group label {
    display: block;
    color: #e2e8f0;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group .required {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #334155;
    border-radius: 8px;
    background: #0f172a;
    color: #e2e8f0;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00a896;
    box-shadow: 0 0 0 3px rgba(0,168,150,0.2);
}

.form-group select option {
    background: #0f172a;
    color: #e2e8f0;
}

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

/* Select dropdown arrow fix */
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

/* Landing Page Responsive */
@media (max-width: 1024px) {
    .landing-container {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .landing-container {
        padding: 1rem;
    }
    
    .landing-header {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .landing-header h1 {
        font-size: 1.8rem;
    }
    
    .landing-header p {
        font-size: 1rem;
    }
    
    .landing-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .quote-form-wrapper {
        padding: 1.5rem;
        min-width: unset;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group.half {
        min-width: unset;
        flex: none;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .landing-sidebar {
        min-width: unset;
    }
    
    .sidebar-card {
        padding: 1.2rem;
    }
    
    .phone-number {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .landing-container {
        padding: 0.75rem;
    }
    
    .landing-header {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .landing-header h1 {
        font-size: 1.4rem;
    }
    
    .landing-header p {
        font-size: 0.9rem;
    }
    
    .quote-form-wrapper {
        padding: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .form-group select {
        background-position: right 8px center;
        padding-right: 28px;
    }
    
    .sidebar-card {
        padding: 1rem;
    }
    
    .sidebar-card h3 {
        font-size: 1rem;
    }
    
    .sidebar-card ul li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
    
    .phone-number {
        font-size: 1.1rem;
    }
    
    .small-text {
        font-size: 0.75rem;
    }
}
/* Submit button on landing page */
.quote-form-wrapper .submit-btn {
    background: linear-gradient(135deg, #00a896 0%, #0284c7 100%);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0,168,150,0.3);
}

.quote-form-wrapper .submit-btn:hover {
    background: linear-gradient(135deg, #0284c7 0%, #00a896 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,168,150,0.4);
}

@media (max-width: 480px) {
    .quote-form-wrapper .submit-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}