/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Color Library */
:root {
    --primary-purple: #402e7e;
    --primary-orange: #f6861f;
    --primary-pink: #b43f90;
    --gradient-primary: linear-gradient(135deg, #b43f90 0%, #f6861f 100%);
    --gradient-reverse: linear-gradient(135deg, #f6861f 0%, #b43f90 100%);
}

/* Color Utility Classes */
.text-primary-purple { color: var(--primary-purple) !important; }
.text-primary-orange { color: var(--primary-orange) !important; }
.text-primary-pink { color: var(--primary-pink) !important; }

.bg-primary-purple { background-color: var(--primary-purple) !important; }
.bg-primary-orange { background-color: var(--primary-orange) !important; }
.bg-primary-pink { background-color: var(--primary-pink) !important; }

.bg-gradient-primary { background: var(--gradient-primary) !important; }
.bg-gradient-reverse { background: var(--gradient-reverse) !important; }

.border-primary-purple { border-color: var(--primary-purple) !important; }
.border-primary-orange { border-color: var(--primary-orange) !important; }
.border-primary-pink { border-color: var(--primary-pink) !important; }

/* Button Color Variants */
.btn-purple {
    background-color: var(--primary-purple);
    color: #fff;
    border-color: var(--primary-purple);
}

.btn-purple:hover {
    background-color: #2d1f5a;
    border-color: #2d1f5a;
    color: #fff;
}

.btn-orange {
    background-color: var(--primary-orange);
    color: #fff;
    border-color: var(--primary-orange);
}

.btn-orange:hover {
    background-color: #e6730a;
    border-color: #e6730a;
    color: #fff;
}

.btn-pink {
    background-color: var(--primary-pink);
    color: #fff;
    border-color: var(--primary-pink);
}

.btn-pink:hover {
    background-color: #9e3578;
    border-color: #9e3578;
    color: #fff;
}

.btn-gradient {
    background: var(--gradient-primary);
    color: #fff;
    border: none !important;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn-gradient:hover {
    background: var(--gradient-reverse);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(180, 63, 144, 0.3);
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-gradient:hover::before {
    left: 100%;
}

/* Outline Button Variants */
.btn-outline-purple {
    color: var(--primary-purple);
    border-color: var(--primary-purple);
    background-color: transparent;
}

.btn-outline-purple:hover {
    background-color: var(--primary-purple);
    color: #fff;
}

.btn-outline-orange {
    color: var(--primary-orange);
    border-color: var(--primary-orange);
    background-color: transparent;
}

.btn-outline-orange:hover {
    background-color: var(--primary-orange);
    color: #fff;
}

.btn-outline-pink {
    color: var(--primary-pink);
    border-color: var(--primary-pink);
    background-color: transparent;
}

.btn-outline-pink:hover {
    background-color: var(--primary-pink);
    color: #fff;
}

body {
    font-family: 'Alan Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #031f39;
    background-color: #f8f9fa;
}

body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: #031f39;
    padding: 20px 0;
    backdrop-filter: none;
}

.header.scrolled {
    background-color: #f7f4ee;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Styles */
.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.header.scrolled .logo-img {
    height: 60px;
}

/* Navigation Styles */
.navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-family: 'Alan Sans', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s ease;
    position: relative;
}

/* Make navigation links dark when header is scrolled */
.header.scrolled .nav-link {
    color: #333;
}

.nav-link:hover {
    color: #007bff;
}

.header.scrolled .nav-link:hover {
    color: #007bff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #007bff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 3px 20px;
    text-decoration: none;
    border-radius: 10px;
    font-family: 'Alan Sans', 'Inter', sans-serif;
    font-weight: 900;
    font-size: 17px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-outline {
    color: #fff;
    border-color: #fff;
    background-color: transparent;
}

.btn-outline:hover {
    background-color: #fff;
    color: #031f39;
}

/* Make buttons dark when header is scrolled */
.header.scrolled .btn-outline {
    color: #333;
    border-color: #333;
    background-color: transparent;
}

.header.scrolled .btn-outline:hover {
    background-color: #333;
    color: #fff;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: var(--gradient-reverse);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(180, 63, 144, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-large {
    padding: 15px 30px;
    font-size: 16px;
}

/* Main Content */
main {
    margin-top: 80px; /* Account for fixed header */
}

/* Hero Section */
.hero {
    background-color: #031f39;
    color: #fff;
    min-height: calc(100vh - 80px);
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    width: 100%;
    padding: 40px 0;
}

.hero .hero-description {
    font-size: 1.6rem;
    margin-bottom: 40px;
    color: #fff;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

/* Hero Background Image */
.hero-bg {
    background-image: url('../img/bg-hero.svg');
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-title {
    font-family: 'Alan Sans', 'Inter', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}


.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Domain Checker Card */
.domain-checker-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.domain-checker-card h3 {
    font-family: 'Alan Sans', 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #031f39;
    margin-bottom: 15px;
    text-align: center;
}

.domain-checker-card p {
    font-size: 1.1rem;
    color: #031f39;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.5;
}

.domain-checker-form {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.domain-input-wrapper {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.domain-checker-form .btn {
    padding: 15px 20px;
    height: auto;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none !important;
    outline: none;
}

.domain-input {
    width: 100%;
    padding: 15px 20px;
    padding-right: 120px; /* Space for result button */
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Alan Sans', 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #fff;
}

/* Domain Result Button */
.domain-result-button {
    display: none;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    font-family: 'Alan Sans', 'Inter', sans-serif;
    border: 2px solid;
    background: transparent;
    height: 36px;
    transition: all 0.3s ease;
    z-index: 10;
}

.domain-result-button.result-safe {
    color: #28a745;
    border-color: #28a745;
}

.domain-result-button.result-blocked {
    color: #dc3545;
    border-color: #dc3545;
}

.domain-result-button.result-error {
    color: #ffc107;
    border-color: #ffc107;
}

.domain-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(246, 134, 31, 0.1);
}


.domain-input::placeholder {
    color: #999;
}


.result-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.result-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.result-icon {
    color: inherit;
}

.result-icon svg {
    width: 24px;
    height: 24px;
    color: inherit;
    fill: currentColor;
}

.result-icon i {
    font-size: 16px;
    color: inherit;
}


.result-text {
    flex: 1;
    line-height: 1.4;
}

/* Registration Title */
.registration-title {
    margin-top: 50px;
    text-align: center;
}

.registration-title h2 {
    font-family: 'Alan Sans', 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

/* Features List */
.features-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--primary-orange);
    font-size: 20px;
}

.feature-text {
    color: #fff;
    font-family: 'Alan Sans', 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Section Styles */
section {
    padding: 80px 0;
}

section h2 {
    font-family: 'Alan Sans', 'Inter', sans-serif;
    font-size: 3rem;
    margin-bottom: 30px;
    text-align: center;
    color: #031f39;
}

section p {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #031f39;
}

/* About Section */
.about {
    background-color: #f7f4ee;
}

/* Features Main Section */
.features-main {
    background-color: #031f39;
    padding: 80px 0;
}

.features-main h2 {
    color: #fff;
}

.features-main .section-description {
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-orange);
}

.feature-card:hover::before {
    width: 8px;
}

.feature-card .feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(180, 63, 144, 0.3);
}

.feature-card .feature-icon i {
    color: #fff;
    font-size: 24px;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-family: 'Alan Sans', 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.feature-content p {
    color: #031f39;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.section-description {
    font-family: 'Alan Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Open Sans', sans-serif;
    font-size: 1.6rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
    color: #031f39;
    line-height: 1.6;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
    position: relative;
}

.process-flow::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50px;
    bottom: 50px;
    width: 2px;
    background: var(--primary-purple);
    z-index: 0;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -28px;
    width: 10px;
    height: 10px;
    background: var(--primary-purple);
    border-radius: 50%;
    z-index: 1;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-number {
    background: var(--gradient-primary);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Alan Sans', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-family: 'Alan Sans', 'Inter', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-purple);
    font-weight: 600;
    text-align: left !important;
}

.step-content p {
    color: #031f39;
    font-size: 1.1rem;
    margin: 0;
    text-align: left !important;
}

/* Video Container */
.video-container {
    margin-top: 60px;
    text-align: center;
}

.video-container h3 {
    font-family: 'Alan Sans', 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #031f39;
    margin-bottom: 30px;
    text-align: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 15px;
}

/* Services Section */
.services {
    background-color: #f8f9fa;
}

/* Pricing Section */
#pricing {
    background-color: #fffdf8;
}

/* Currency Toggle */
.currency-toggle-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.currency-toggle {
    display: flex;
    background: #f0f0f0;
    border-radius: 25px;
    padding: 4px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.currency-toggle input[type="radio"] {
    display: none;
}

.currency-toggle label {
    padding: 12px 24px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Alan Sans', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #666;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.currency-toggle input[type="radio"]:checked + label {
    background: var(--primary-orange);
    color: #fff;
    box-shadow: 0 2px 8px rgba(246, 134, 31, 0.3);
}

.currency-toggle input[type="radio"]:not(:checked) + label:hover {
    color: var(--primary-orange);
    background: rgba(246, 134, 31, 0.1);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pricing-recommended {
    border-color: var(--primary-orange);
    transform: scale(1.05);
}

.pricing-recommended:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.pricing-header h3 {
    font-family: 'Alan Sans', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #031f39;
    margin: 0;
}

.pricing-header-recommended {
    background: var(--primary-orange);
    color: #fff;
    padding: 15px 20px;
    margin: -30px -25px 20px -25px;
    border-radius: 15px 15px 0 0;
}

.pricing-header-recommended h3 {
    color: #fff;
}

.plan-badge {
    background: #031f39;
    color: #fff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.plan-badge.recommended {
    background: #fff;
    color: var(--primary-orange);
}

.pricing-price {
    text-align: center;
    margin-bottom: 25px;
}

.price-amount {
    font-family: 'Alan Sans', 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #031f39;
}

.price-period {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

.price-annual {
    font-size: 0.9rem;
    color: #999;
    margin: 5px 0 0 0;
}

.pricing-button {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-button .btn {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-description {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.pricing-includes {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 15px;
    font-style: italic;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 8px 0;
    color: #031f39;
    font-size: 1rem;
    position: relative;
    padding-left: 25px;
}

.pricing-features li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-size: 1rem;
}

.arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.pricing-button .btn:hover .arrow {
    transform: translateX(3px);
}

/* Pricing Button Styles */
.pricing-button .btn-outline {
    color: var(--primary-orange);
    border-color: var(--primary-orange);
    background-color: transparent;
}

.pricing-button .btn-outline:hover {
    background-color: var(--primary-orange);
    color: #fff;
}

.pricing-button .btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
}

.pricing-button .btn-primary:hover {
    background: var(--gradient-reverse);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(180, 63, 144, 0.3);
}

/* Contact Section */
.contact {
    background-color: #fff;
}

/* More Section */
.more-section {
    background-color: #031f39;
    color: #fff;
    padding: 40px 0 0 0; /* No bottom padding to eliminate gap with footer */
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.more-section .hero-content {
    padding: 40px 0 0 0; /* Remove bottom padding to eliminate gap with footer */
}

.more-section .hero-description {
    font-size: 1.6rem;
    margin-bottom: 40px;
    color: #fff;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.more-section-actions {
    text-align: center;
    margin-bottom: 40px;
}

.more-section-actions .btn-outline {
    color: #fff;
    border-color: #fff;
    background-color: transparent;
}

.more-section-actions .btn-outline:hover {
    background-color: #fff;
    color: #031f39;
}

.more-section-actions .fa-arrow-right {
    font-size: 1rem;
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.more-section-actions .btn:hover .fa-arrow-right {
    transform: translateX(3px);
}

.footer-app-image {
    text-align: center;
    margin-top: 40px;
}

.footer-app-img {
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 30px 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.header.scrolled .hamburger-line {
    background-color: #333;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Contact Form Styles */
.contact {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.required {
    color: #dc3545;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(246, 134, 31, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-style: italic;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    line-height: 1.5;
}

.form-submit {
    text-align: center;
    margin-top: 10px;
}

.form-submit .btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
    justify-content: center;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.form-submit .btn:hover .btn-icon {
    transform: translateX(3px);
}

/* Form Validation Styles */
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid,
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

.form-group input:valid:not(:placeholder-shown),
.form-group select:valid,
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #28a745;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(3, 31, 57, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding-top: 100px;
}

/* Mobile Nav Close Button */
.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.close-icon {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    margin: 30px 0;
}

.mobile-nav-link {
    color: #fff;
    text-decoration: none;
    font-family: 'Alan Sans', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #007bff;
}

.mobile-nav-actions {
    text-align: center;
    margin-top: 50px;
}

.mobile-nav-actions .btn {
    display: block;
    margin: 15px auto;
    width: 200px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
    
    .price-amount {
        font-size: 2.2rem;
    }
    
    .pricing-header h3 {
        font-size: 1.3rem;
    }
    
    .pricing-features li {
        font-size: 0.9rem;
    }
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
    
    .pricing-header-recommended {
        margin: -25px -20px 20px -20px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navigation {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .hero {
        min-height: calc(100vh - 100px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    /* About section tablet responsive */
    section h2 {
        font-size: 2.5rem;
    }
    
    .section-description {
        font-size: 1.4rem;
    }
    
    /* Features section tablet responsive */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 50px;
        max-width: 800px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-card .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-card .feature-icon i {
        font-size: 20px;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
    }
    
    .feature-content p {
        font-size: 0.95rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    /* Domain checker responsive */
    .domain-checker-card {
        margin-top: 30px;
        padding: 30px 20px;
        min-height: 180px;
        max-width: 1200px;
    }
    
    .domain-checker-card h3 {
        font-size: 1.5rem;
    }
    
    .domain-checker-card p {
        font-size: 1rem;
    }
    
    .domain-checker-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .domain-input-wrapper {
        min-width: 100%;
        width: 100%;
    }
    
    .domain-input {
        width: 100%;
        padding-right: 20px; /* Reset padding on mobile */
    }
    
    .domain-result-button {
        position: static;
        transform: none;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
        height: auto;
        padding: 12px 16px;
    }
    
    .domain-checker-form .btn {
        padding: 15px 20px;
        min-height: 52px;
    }
    
    /* Registration title tablet responsive */
    .registration-title {
        margin-top: 40px;
    }
    
    /* Features list tablet responsive */
    .features-list {
        gap: 30px;
        margin-top: 25px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .feature-text {
        font-size: 0.95rem;
    }
    
    main {
        margin-top: 100px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Pricing section tablet responsive */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pricing-card {
        padding: 20px 15px;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .pricing-header h3 {
        font-size: 1.2rem;
    }
    
    .pricing-features li {
        font-size: 0.85rem;
    }
    
    /* Currency toggle tablet responsive */
    .currency-toggle label {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .pricing-recommended {
        transform: none;
    }
    
    .pricing-recommended:hover {
        transform: translateY(-5px);
    }
    
    /* More Section Tablet Responsive */
    .more-section-actions {
        margin-bottom: 35px;
    }
    
    .footer-app-image {
        margin-top: 30px;
    }
    
    .footer-app-img {
        max-width: 80%;
        width: auto;
        height: auto;
    }
    
    /* Contact Form Mobile Styles */
    .contact {
        padding: 60px 0;
    }
    
    .contact-form-container {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .form-submit .btn {
        padding: 15px 30px;
        font-size: 1rem;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: calc(100vh - 100px);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .more-section .hero-description {
        font-size: 1rem;
    }
    
    .more-section-actions {
        margin-bottom: 30px;
    }
    
    .footer-app-image {
        margin-top: 20px;
    }
    
    .footer-app-img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    
    /* Domain checker mobile responsive */
    .domain-checker-card {
        margin-top: 20px;
        padding: 25px 15px;
        min-height: 160px;
        max-width: 1200px;
    }
    
    .domain-checker-card h3 {
        font-size: 1.3rem;
    }
    
    .domain-checker-card p {
        font-size: 0.95rem;
    }
    
    .domain-input {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .domain-checker-form .btn {
        padding: 12px 15px;
        min-height: 48px;
    }
    
    /* Registration title mobile responsive */
    .registration-title {
        margin-top: 30px;
    }
    
    /* Features list mobile responsive */
    .features-list {
        gap: 20px;
        margin-top: 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-items: center;
        align-items: start;
    }
    
    .feature-item {
        gap: 10px;
        justify-content: flex-start;
        width: 100%;
    }
    
    .feature-text {
        font-size: 0.9rem;
    }
    
    /* About section mobile responsive */
    section h2 {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1.2rem;
    }
    
    /* Features section mobile responsive */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
        max-width: 100%;
    }
    
    .feature-card {
        padding: 20px 15px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .feature-card .feature-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }
    
    .feature-card .feature-icon i {
        font-size: 20px;
    }
    
    .feature-content h3 {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .feature-content p {
        font-size: 0.9rem;
        text-align: center;
    }
    
    /* Video responsive */
    .video-container {
        margin-top: 40px;
    }
    
    .video-container h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .video-wrapper iframe {
        height: 250px;
    }
    
    .mobile-nav-link {
        font-size: 20px;
    }
    
    .mobile-nav-actions .btn {
        width: 150px;
    }
    
    /* Pricing section mobile responsive */
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        margin-top: 40px;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
    
    .pricing-header-recommended {
        margin: -25px -20px 20px -20px;
    }
    
    .pricing-recommended {
        transform: none;
    }
    
    .pricing-recommended:hover {
        transform: translateY(-5px);
    }
    
    .price-amount {
        font-size: 2.2rem;
    }
    
    .pricing-header h3 {
        font-size: 1.4rem;
    }
    
    .pricing-features li {
        font-size: 0.95rem;
        padding: 8px 0;
        padding-left: 20px;
    }
    
    .pricing-description {
        font-size: 1rem;
    }
    
    .pricing-includes {
        font-size: 0.9rem;
    }
    
    .plan-badge {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
    
    /* Currency toggle mobile responsive */
    .currency-toggle label {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* Floating WhatsApp Contact */
.floating-whatsapp {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    min-width: 60px;
    min-height: 60px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-link:hover .whatsapp-icon {
    color: #fff;
}

.whatsapp-icon {
    font-size: 35px;
    color: #fff;
    display: inline-block;
    line-height: 1;
}

/* Floating Telegram Contact */
.floating-telegram {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}


.telegram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    min-width: 60px;
    min-height: 60px;
    box-shadow: 0 8px 25px rgba(246, 134, 31, 0.3);
}

.telegram-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(246, 134, 31, 0.4);
}


.telegram-link:hover .telegram-icon {
    color: #fff;
}

.telegram-icon {
    font-size: 35px;
    color: #fff;
    display: inline-block;
    line-height: 1;
}

/* Smooth floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Mobile responsive for floating buttons */
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 80px;
        right: 20px;
    }
    
    .whatsapp-link {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
        border-radius: 50%;
    }
    
    .whatsapp-icon {
        font-size: 18px;
    }
    
    .floating-telegram {
        bottom: 20px;
        right: 20px;
    }
    
    .telegram-link {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
        border-radius: 50%;
    }
    
    .telegram-icon {
        font-size: 18px;
    }
}

/* Disclaimer Styles */
.disclaimer-text {
    margin-top: 10px;
    font-size: 0.9rem;
}

.disclaimer-text a {
    color: #ff8c00 !important;
    text-decoration: underline !important;
    cursor: pointer;
    transition: color 0.3s ease;
}

.disclaimer-text a:hover {
    color: #ffa500 !important;
}

/* Modal Styles */
.modal {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #fff;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #e0e0e0;
    background-color: #f8f9fa;
    border-radius: 15px 15px 0 0;
}

.modal-header h3 {
    margin: 0;
    font-family: 'Alan Sans', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #031f39;
}

.modal-close {
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: #333;
    background-color: #f0f0f0;
}

.modal-body {
    padding: 25px;
}

.modal-body p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    text-align: left;
}

/* Mobile responsive for modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-width: none;
        margin: 20px;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header h3 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-body p {
        font-size: 0.95rem;
    }
}

