/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: rgb(29, 30, 32);
    background-color: rgb(250, 251, 255);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2.2rem; }
h4 { font-size: 1.8rem; }
h5 { font-size: 1.4rem; }
h6 { font-size: 1.2rem; }

p {
    margin-bottom: 1rem;
    color: rgb(109, 112, 129);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Enhanced Buttons with Hostinger Colors */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.btn::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:hover::before {
    left: 100%;
}

.btn-primary {
    background: rgb(103, 61, 230);
    color: rgb(255, 255, 255);
    box-shadow: 0 4px 15px rgba(103, 61, 230, 0.3);
}

.btn-primary:hover {
    background: rgb(80, 37, 209);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(103, 61, 230, 0.4);
}

.btn-secondary {
    background: rgb(255, 255, 255);
    color: rgb(103, 61, 230);
    border: 2px solid rgb(103, 61, 230);
    box-shadow: 0 4px 15px rgba(103, 61, 230, 0.1);
}

.btn-secondary:hover {
    background: rgb(103, 61, 230);
    color: rgb(255, 255, 255);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(103, 61, 230, 0.3);
}

/* Header Styles */
.main-header {
    background: rgb(255, 255, 255);
    box-shadow: 0 2px 20px rgba(29, 30, 32, 0.1);
    position: relative;
    z-index: 1000;
    border-bottom: 3px solid rgb(103, 61, 230);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 2rem;
    font-weight: 800;
    color: rgb(103, 61, 230);
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgb(103, 61, 230), rgb(66, 133, 244));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    font-size: 1.2rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    color: rgb(29, 30, 32);
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: rgb(103, 61, 230);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: rgb(103, 61, 230);
    background: rgba(103, 61, 230, 0.1);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgb(255, 255, 255);
    box-shadow: 0 10px 30px rgba(29, 30, 32, 0.15);
    border-radius: 15px;
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 2px solid rgb(216, 218, 224);
    z-index: 1001;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.8rem 1.5rem;
    color: rgb(29, 30, 32);
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 0.5rem;
}

.dropdown-link:hover {
    background: rgb(250, 251, 255);
    color: rgb(103, 61, 230);
    transform: translateX(5px);
}

.user-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.user-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.login-btn {
    color: rgb(103, 61, 230);
    border-color: rgb(103, 61, 230);
}

.login-btn:hover {
    background: rgb(103, 61, 230);
    color: rgb(255, 255, 255);
}

.signup-btn {
    background: rgb(103, 61, 230);
    color: rgb(255, 255, 255);
}

.signup-btn:hover {
    background: rgb(80, 37, 209);
    transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: rgb(103, 61, 230);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgb(255, 255, 255);
    z-index: 9999;
    padding: 2rem;
    overflow-y: auto;
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgb(216, 218, 224);
}

.mobile-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: rgb(103, 61, 230);
    cursor: pointer;
}

.mobile-nav-menu {
    list-style: none;
}

.mobile-nav-item {
    margin-bottom: 1rem;
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    color: rgb(29, 30, 32);
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgb(250, 251, 255);
}

.mobile-nav-link:hover {
    background: rgb(103, 61, 230);
    color: rgb(255, 255, 255);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgb(255, 255, 255);
    border-radius: 8px;
    margin-top: 0.5rem;
}

.mobile-submenu.active {
    max-height: 300px;
}

.mobile-submenu-link {
    display: block;
    padding: 1rem 1.5rem;
    color: rgb(109, 112, 129);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.mobile-submenu-link:hover {
    color: rgb(103, 61, 230);
    background: rgba(250, 251, 255, 0.8);
}

.mobile-user-actions {
    padding: 1.5rem;
    border-top: 2px solid rgb(216, 218, 224);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgb(250, 251, 255);
}

.mobile-user-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

/* Hero Section with Hostinger Colors */
.hero-section {
    background: linear-gradient(135deg, rgb(103, 61, 230) 0%, rgb(80, 37, 209) 100%);
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(46.33% 46.11% at 50% 50%, rgba(182, 178, 255, 0.8) 0%, rgba(235, 234, 255, 0.22) 49.5%, rgba(255, 255, 255, 0));
    background-size: 100% 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: rgb(255, 255, 255);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: rgb(255, 255, 255);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(29, 30, 32, 0.3);
    animation: float 6s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

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

/* Domain Search Section */
.domain-search-section {
    background: rgb(255, 255, 255);
    padding: 4rem 0;
    box-shadow: 0 -10px 30px rgba(29, 30, 32, 0.1);
    position: relative;
    z-index: 3;
    margin-top: -3rem;
    border-radius: 30px 30px 0 0;
}

.domain-search-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.domain-search-title {
    color: rgb(29, 30, 32);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.domain-search-form {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    background: rgb(255, 255, 255);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(29, 30, 32, 0.1);
    border: 2px solid rgb(216, 218, 224);
}

.domain-input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgb(216, 218, 224);
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgb(255, 255, 255);
}

.domain-input:focus {
    outline: none;
    border-color: rgb(103, 61, 230);
    box-shadow: 0 0 0 4px rgba(103, 61, 230, 0.1);
    transform: translateY(-2px);
}

.domain-buttons {
    display: flex;
    gap: 1rem;
}

.domain-prices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.domain-price-card {
    background: rgb(255, 255, 255);
    border: 2px solid rgb(216, 218, 224);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.domain-price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(250, 251, 255, 0.8), transparent);
    transition: left 0.5s;
}

.domain-price-card:hover::before {
    left: 100%;
}

.domain-price-card:hover {
    border-color: rgb(103, 61, 230);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(103, 61, 230, 0.2);
}

.domain-extension {
    font-weight: 700;
    color: rgb(29, 30, 32);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.domain-price {
    color: rgb(66, 133, 244);
    font-weight: 700;
    font-size: 1rem;
}

/* Hosting Plans Section - FIXED */
.hosting-plans-section {
    padding: 5rem 0;
    background: rgb(250, 251, 255);
    margin: 0; /* Remove any margin that might cause gaps */
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: rgb(29, 30, 32);
    font-weight: 800;
    font-size: 3rem;
}

.hosting-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 1.2rem 2.5rem;
    background: rgb(255, 255, 255);
    border: 2px solid rgb(216, 218, 224);
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgb(29, 30, 32);
    font-size: 1rem;
}

.tab-button.active {
    background: rgb(103, 61, 230);
    color: rgb(255, 255, 255);
    border-color: rgb(103, 61, 230);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(103, 61, 230, 0.3);
}

.tab-button:hover:not(.active) {
    background: rgb(250, 251, 255);
    border-color: rgb(103, 61, 230);
    transform: translateY(-2px);
}

.billing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.billing-label {
    font-weight: 600;
    color: rgb(29, 30, 32);
    font-size: 1.1rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 35px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(216, 218, 224);
    transition: 0.3s;
    border-radius: 20px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 27px;
    width: 27px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(29, 30, 32, 0.2);
}

input:checked + .slider {
    background-color: rgb(103, 61, 230);
}

input:checked + .slider:before {
    transform: translateX(35px);
}

.save-badge {
    background: rgb(0, 131, 97);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Enhanced Hosting Plans with Expandable Features - FIXED */
.hosting-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 0; /* Remove any margin that might cause gaps */
}

.plan-card {
    background: rgb(255, 255, 255);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(29, 30, 32, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
    margin: 0; /* Remove any margin that might cause gaps */
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: rgb(216, 218, 224);
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(29, 30, 32, 0.15);
}

.plan-card.popular {
    border-color: rgb(103, 61, 230);
    transform: scale(1.05);
    background: rgb(255, 255, 255);
}

.plan-card.popular::before {
    background: rgb(103, 61, 230);
}

.plan-card.popular::after {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(103, 61, 230);
    color: rgb(255, 255, 255);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(103, 61, 230, 0.3);
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgb(29, 30, 32);
    margin-bottom: 1.5rem;
    text-align: center;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: rgb(103, 61, 230);
    margin-bottom: 1.5rem;
    text-align: center;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.plan-price .currency {
    font-size: 1.5rem;
    color: rgb(103, 61, 230);
    font-weight: 700;
}

.plan-price .price {
    font-size: 3rem;
    font-weight: 800;
    color: rgb(103, 61, 230);
}

.plan-price .period {
    font-size: 1rem;
    color: rgb(109, 112, 129);
    font-weight: 400;
}

.plan-price-period {
    font-size: 1rem;
    color: rgb(109, 112, 129);
    font-weight: 400;
}

.plan-features {
    list-style: none;
    margin: 2.5rem 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    color: rgb(109, 112, 129);
    border-bottom: 1px solid rgb(216, 218, 224);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: rgb(0, 131, 97);
    font-size: 1rem;
    width: 20px;
}

.plan-button {
    width: 100%;
    justify-content: center;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Expandable Features Section */
.expandable-features {
    margin-top: 1.5rem;
    border-top: 2px solid rgb(216, 218, 224);
    padding-top: 1.5rem;
}

.expand-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: none;
    border: 2px solid rgb(216, 218, 224);
    color: rgb(103, 61, 230);
    font-weight: 600;
    cursor: pointer;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 100%;
    margin: 1rem 0;
}

.expand-toggle:hover {
    background: rgb(103, 61, 230);
    color: white;
    border-color: rgb(103, 61, 230);
}

.expand-toggle i {
    transition: transform 0.3s ease;
}

.expand-toggle.active i {
    transform: rotate(180deg);
}

.additional-features {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid rgb(216, 218, 224);
}

.additional-features.expanded {
    max-height: 500px;
}

.additional-features ul {
    list-style: none;
    margin-top: 1rem;
}

.additional-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    color: rgb(109, 112, 129);
    font-size: 0.9rem;
}

.additional-features li i {
    color: rgb(0, 131, 97);
    font-size: 0.8rem;
    width: 16px;
}

/* Feature item styling for plan cards */
.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    color: rgb(109, 112, 129);
    border-bottom: 1px solid rgb(216, 218, 224);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    color: rgb(0, 131, 97);
    font-size: 1rem;
    width: 20px;
}

/* Enhanced Footer Styles with Hostinger Colors */
.main-footer {
    background: linear-gradient(135deg, rgb(29, 30, 32) 0%, rgb(22, 23, 24) 100%);
    color: rgb(255, 255, 255);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    margin-top: 0; /* Remove any margin that might cause gaps */
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, rgb(103, 61, 230) 0%, rgb(66, 133, 244) 25%, rgb(0, 131, 97) 50%, rgb(255, 97, 39) 75%, rgb(103, 61, 230) 100%);
}

.footer-content {
    position: relative;
    z-index: 2;
}

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

.footer-section h4 {
    color: rgb(255, 255, 255);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: rgb(103, 61, 230);
    border-radius: 2px;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-logo h3 {
    color: rgb(255, 255, 255);
    margin-bottom: 0.8rem;
    font-size: 2rem;
}

.footer-logo p {
    color: rgb(216, 218, 224);
    font-size: 1rem;
    font-style: italic;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgb(216, 218, 224);
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.contact-item:hover {
    background: rgba(103, 61, 230, 0.1);
    transform: translateX(5px);
}

.contact-item i {
    color: rgb(66, 133, 244);
    width: 20px;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgb(216, 218, 224);
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 6px;
    display: block;
}

.footer-links a:hover {
    color: rgb(66, 133, 244);
    background: rgba(103, 61, 230, 0.1);
    transform: translateX(5px);
}

.support-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.support-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.support-btn::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;
}

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

.whatsapp-btn {
    background: rgb(0, 131, 97);
    color: rgb(255, 255, 255);
    border-color: rgb(0, 131, 97);
}

.whatsapp-btn:hover {
    background: rgb(0, 83, 44);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 131, 97, 0.4);
}

.call-btn {
    background: rgb(66, 133, 244);
    color: rgb(255, 255, 255);
    border-color: rgb(66, 133, 244);
}

.call-btn:hover {
    background: rgb(1, 115, 169);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.4);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgb(103, 61, 230);
    border-radius: 50%;
    color: rgb(255, 255, 255);
    transition: all 0.3s ease;
    border: 2px solid rgba(216, 218, 224, 0.3);
}

.social-links a:hover {
    background: rgb(66, 133, 244);
    color: rgb(255, 255, 255);
    transform: translateY(-3px) scale(1.1);
    border-color: rgb(66, 133, 244);
}

.footer-bottom {
    border-top: 2px solid rgba(216, 218, 224, 0.3);
    padding-top: 2rem;
    background: rgba(22, 23, 24, 0.8);
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    color: rgb(216, 218, 224);
    font-size: 1rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgb(216, 218, 224);
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.footer-bottom-links a:hover {
    color: rgb(66, 133, 244);
    background: rgba(103, 61, 230, 0.1);
}

/* Additional styles for home page sections */
.compare-section {
    padding: 5rem 0;
    background: rgb(255, 255, 255);
    margin: 0; /* Remove any margin that might cause gaps */
}

.compare-table-container {
    overflow-x: auto;
    box-shadow: 0 10px 30px rgba(29, 30, 32, 0.1);
    border-radius: 20px;
    border: 2px solid rgb(216, 218, 224);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: rgb(255, 255, 255);
    border-radius: 20px;
    overflow: hidden;
}

.compare-table th,
.compare-table td {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgb(216, 218, 224);
}

.compare-table th {
    background: rgb(103, 61, 230);
    font-weight: 700;
    color: rgb(255, 255, 255);
    font-size: 1.2rem;
}

.compare-table .highlight {
    background: rgb(250, 251, 255);
    color: rgb(103, 61, 230);
    font-weight: 700;
}

.text-success { color: rgb(0, 131, 97); font-size: 1.2rem; }
.text-danger { color: rgb(255, 97, 39); font-size: 1.2rem; }

.hosting-summary-section {
    padding: 5rem 0;
    background: rgb(250, 251, 255);
    margin: 0; /* Remove any margin that might cause gaps */
}

.summary-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.summary-features {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgb(103, 61, 230);
    font-weight: 600;
    padding: 0.8rem 1.2rem;
    background: rgba(103, 61, 230, 0.1);
    border-radius: 25px;
    border: 2px solid rgba(103, 61, 230, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgb(103, 61, 230);
    color: rgb(255, 255, 255);
    transform: translateY(-3px);
}

.feature-item i {
    font-size: 1.2rem;
}

.summary-image {
    position: relative;
    text-align: center;
}

.summary-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(29, 30, 32, 0.2);
}

/* Server Specifications Section with Background Effect */
.server-specs-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(29, 30, 32, 0.95) 0%, rgba(22, 23, 24, 0.95) 100%), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="server-pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><rect width="100" height="100" fill="%23000"/><circle cx="20" cy="20" r="2" fill="%2300ff00" opacity="0.3"/><circle cx="80" cy="20" r="2" fill="%23ff0000" opacity="0.3"/><circle cx="50" cy="50" r="1" fill="%230080ff" opacity="0.5"/><rect x="10" y="70" width="80" height="4" fill="%23333" opacity="0.7"/><rect x="10" y="80" width="60" height="4" fill="%23333" opacity="0.7"/></pattern></defs><rect width="100%" height="100%" fill="url(%23server-pattern)"/></svg>');
    background-size: 200px 200px, cover;
    background-attachment: fixed;
    color: rgb(255, 255, 255);
    position: relative;
    overflow: hidden;
    margin: 0; /* Remove any margin that might cause gaps */
}

.server-specs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(103, 61, 230, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(66, 133, 244, 0.3) 0%, transparent 50%);
    animation: serverGlow 8s ease-in-out infinite alternate;
}

@keyframes serverGlow {
    0% { opacity: 0.5; }
    100% { opacity: 0.8; }
}

.server-specs-content {
    position: relative;
    z-index: 2;
}

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

.spec-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.spec-card:hover::before {
    left: 100%;
}

.spec-card:hover {
    transform: translateY(-8px);
    border-color: rgba(103, 61, 230, 0.5);
    box-shadow: 0 20px 40px rgba(103, 61, 230, 0.2);
}

.spec-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgb(103, 61, 230), rgb(66, 133, 244));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(103, 61, 230, 0.3);
}

.spec-card h4 {
    color: rgb(255, 255, 255);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.spec-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

/* Customer Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background: rgb(255, 255, 255);
    margin: 0; /* Remove any margin that might cause gaps */
}

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

.review-card {
    background: rgb(250, 251, 255);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(29, 30, 32, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(250, 251, 255, 0.8), transparent);
    transition: left 0.5s;
}

.review-card:hover::before {
    left: 100%;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: rgb(103, 61, 230);
    box-shadow: 0 20px 40px rgba(103, 61, 230, 0.15);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgb(103, 61, 230), rgb(66, 133, 244));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.review-info h5 {
    color: rgb(29, 30, 32);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.review-info p {
    color: rgb(109, 112, 129);
    font-size: 0.9rem;
    margin: 0;
}

.review-rating {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.review-rating i {
    color: rgb(255, 193, 7);
    font-size: 1.1rem;
}

.review-text {
    color: rgb(109, 112, 129);
    line-height: 1.6;
    font-style: italic;
}

/* Video Reviews Section */
.video-reviews-section {
    padding: 5rem 0;
    background: rgb(250, 251, 255);
    margin: 0; /* Remove any margin that might cause gaps */
}

.video-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.video-review-card {
    background: rgb(255, 255, 255);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(29, 30, 32, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.video-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(29, 30, 32, 0.15);
}

.video-container {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: rgb(29, 30, 32);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-review-title {
    color: rgb(29, 30, 32);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.video-review-subtitle {
    color: rgb(109, 112, 129);
    font-size: 0.9rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: rgb(255, 255, 255);
    margin: 0; /* Remove any margin that might cause gaps */
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgb(250, 251, 255);
    border-radius: 15px;
    border: 2px solid rgb(216, 218, 224);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgb(103, 61, 230);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgb(103, 61, 230);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgb(109, 112, 129);
    font-weight: 600;
}

/* Newsletter Section */
.newsletter-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgb(103, 61, 230) 0%, rgb(66, 133, 244) 100%);
    color: rgb(255, 255, 255);
    text-align: center;
    margin: 0; /* Remove any margin that might cause gaps */
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: rgb(29, 30, 32);
}

.newsletter-input:focus {
    outline: none;
    background: rgb(255, 255, 255);
}

.newsletter-btn {
    padding: 1rem 2rem;
    background: rgb(255, 255, 255);
    color: rgb(103, 61, 230);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .summary-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hosting-plans {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .plan-card.popular {
        transform: none;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .domain-search-form {
        flex-direction: column;
    }
    
    .domain-buttons {
        flex-direction: column;
    }
    
    .hosting-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .billing-toggle {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hosting-plans {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .plan-card {
        padding: 2rem;
    }
    
    .plan-price {
        font-size: 2.5rem;
    }
    
    .spec-card {
        padding: 2rem;
    }
    
    .review-card {
        padding: 2rem;
    }
    
    .video-review-card {
        padding: 1rem;
    }
    
    .video-container {
        height: 180px;
    }
}

/* Fix for any remaining gaps */
section {
    margin: 0;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Ensure no gaps between sections */
.hero-section + .domain-search-section {
    margin-top: -3rem;
}

/* Remove any default margins that might cause gaps */
.hosting-plans-section,
.compare-section,
.hosting-summary-section,
.server-specs-section,
.reviews-section,
.video-reviews-section,
.about-section,
.newsletter-section,
.main-footer {
    margin-top: 0;
    margin-bottom: 0;
}



/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
    loading: lazy;
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.02);
}

/* Lazy loading for background images */
.lazy-bg {
    background-image: none;
    transition: background-image 0.3s ease;
}

.lazy-bg.loaded {
    background-image: var(--bg-image);
}

/* Smooth animations */
* {
    transition: all 0.3s ease;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Critical CSS loading optimization */
.above-fold {
    display: block;
}

.below-fold {
    display: none;
}

.below-fold.loaded {
    display: block;
}

/* Preload critical resources */
.preload-critical {
    font-display: swap;
}

/* Optimize font loading */
@font-face {
    font-family: 'Montserrat';
    font-display: swap;
    src: local('Montserrat');
}

@font-face {
    font-family: 'Open Sans';
    font-display: swap;
    src: local('Open Sans');
}

/* Minimize reflows and repaints */
.gpu-accelerated {
    transform: translateZ(0);
    will-change: transform;
}

/* Optimize animations */
.smooth-animation {
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #673de6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Skeleton loading for content */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Optimize critical rendering path */
.critical-css {
    display: inline-block;
    vertical-align: top;
}

/* Minimize layout shifts */
.aspect-ratio-16-9 {
    aspect-ratio: 16 / 9;
}

.aspect-ratio-4-3 {
    aspect-ratio: 4 / 3;
}

.aspect-ratio-1-1 {
    aspect-ratio: 1 / 1;
}


/* Enhanced User Experience Styles */

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #673de6;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
}

/* Screen Reader Only Content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Enhanced Focus Styles */
*:focus {
    outline: 2px solid #673de6;
    outline-offset: 2px;
}

.btn:focus,
.nav-link:focus,
.user-btn:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(103, 61, 230, 0.3);
}

/* Enhanced Button States */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    user-select: none;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.btn.loading {
    color: transparent;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Enhanced Form Styles */
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
}

.form-input:focus {
    border-color: #673de6;
    box-shadow: 0 0 0 3px rgba(103, 61, 230, 0.1);
}

.form-input.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-input.success {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.error-message {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #dc3545;
}

.success-message {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #28a745;
}

/* Floating Label Effect */
.floating-label {
    position: relative;
}

.floating-label .form-input {
    padding-top: 20px;
    padding-bottom: 8px;
}

.floating-label .form-label {
    position: absolute;
    top: 12px;
    left: 16px;
    font-size: 1rem;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.floating-label .form-input:focus + .form-label,
.floating-label .form-input:not(:placeholder-shown) + .form-label {
    top: 4px;
    font-size: 0.75rem;
    color: #673de6;
}

/* Enhanced Tooltips */
.tooltip {
    position: absolute;
    background: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.875rem;
    white-space: nowrap;
    z-index: 1000;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.tooltip::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border: 5px solid transparent;
    border-top-color: #333;
}

.tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Cards */
.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid #f0f0f0;
}

/* Enhanced Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #333;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Enhanced Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-warning {
    background: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}

.alert-info {
    background: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

.alert-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.alert-close {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.alert-close:hover {
    opacity: 1;
}

/* Enhanced Progress Bars */
.progress {
    width: 100%;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #673de6, #7c3aed);
    border-radius: 4px;
    transition: width 0.3s ease;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progress-shine 2s ease-in-out infinite;
}

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

/* Enhanced Breadcrumbs */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
    font-size: 0.875rem;
    color: #666;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    color: #999;
    margin-left: 0.5rem;
}

.breadcrumb-link {
    color: #673de6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #5a2fd8;
}

/* Enhanced Tabs */
.tabs {
    border-bottom: 2px solid #f0f0f0;
}

.tab-list {
    display: flex;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tab-item {
    position: relative;
}

.tab-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #666;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-link:hover {
    color: #673de6;
    background: rgba(103, 61, 230, 0.05);
}

.tab-link.active {
    color: #673de6;
    border-bottom-color: #673de6;
}

.tab-content {
    padding: 2rem 0;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Enhanced Dropdowns */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: #fff;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.dropdown-toggle:hover {
    border-color: #673de6;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-height: 200px;
    overflow-y: auto;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: rgba(103, 61, 230, 0.05);
    color: #673de6;
}

/* Enhanced Sticky Header */
.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.main-header.hidden {
    transform: translateY(-100%);
}

/* Enhanced Loading States */
.skeleton-loader {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
}

.skeleton-text:last-child {
    width: 60%;
}

.skeleton-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.skeleton-button {
    height: 40px;
    width: 120px;
    border-radius: 8px;
}

/* Enhanced Scroll Indicators */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(103, 61, 230, 0.1);
    z-index: 1000;
}

.scroll-progress {
    height: 100%;
    background: linear-gradient(90deg, #673de6, #7c3aed);
    width: 0%;
    transition: width 0.1s ease;
}

/* Print Optimizations */
@media print {
    .no-print {
        display: none !important;
    }
    
    .print-only {
        display: block !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #fff;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .btn {
        border: 1px solid #000;
        background: transparent;
        color: #000;
    }
    
    .card {
        border: 1px solid #000;
        box-shadow: none;
        break-inside: avoid;
    }
}

