:root {
    --primary-blue: #007AFF;
    --primary-blue-dark: #0051D5;
    --primary-blue-light: #5AC8FA;
    --bg-white: #FFFFFF;
    --bg-light: #F5F5F7;
    --text-dark: #1D1D1F;
    --text-gray: #86868B;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

[data-theme="dark"] {
    --primary-blue: #5AC8FA;
    --primary-blue-dark: #7DD3FC;
    --primary-blue-light: #A5E3FF;
    --bg-white: #1C1C1E;
    --bg-light: #2C2C2E;
    --text-dark: #FFFFFF;
    --text-gray: #EBEBF5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    padding-top: 80px;
}

/* Theme Toggle Button */
.theme-toggle {
    background: transparent;
    border: 2px solid var(--primary-blue);
    border-radius: var(--border-radius);
    padding: 0.5rem 0.75rem;
    color: var(--primary-blue);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.theme-toggle:hover {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.05);
}

.theme-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.2);
}

/* Navbar */
.custom-navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    transition: all 0.3s ease;
    min-height: 60px;
}

.custom-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

[data-theme="dark"] .custom-navbar {
    background: rgba(28, 28, 30, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .navbar-brand-text,
[data-theme="dark"] .navbar-nav .nav-link {
    color: var(--text-dark);
}

.custom-navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    flex-shrink: 0;
    margin-right: 0.5rem;
    max-width: calc(100% - 60px);
}

.navbar-logo {
    height: 40px;
    width: auto;
    max-width: 100%;
    transition: opacity 0.3s ease;
    object-fit: contain;
}

[data-theme="dark"] .navbar-logo-light {
    display: none !important;
}

[data-theme="dark"] .navbar-logo-dark {
    display: block !important;
}

[data-theme="light"] .navbar-logo-dark {
    display: none !important;
}

[data-theme="light"] .navbar-logo-light {
    display: block !important;
}

.navbar-brand-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.navbar-nav .nav-item {
    display: inline-block;
}

/* Mobilde navbar itemleri alt alta */
@media (max-width: 991.98px) {
    .navbar-nav {
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100%;
    }
    
    .navbar-nav .nav-item {
        display: block !important;
        width: 100%;
        margin: 0.25rem 0;
    }
    
    .navbar-nav .nav-link {
        width: 100% !important;
        display: block !important;
        margin: 0 !important;
        text-align: left;
    }
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 400;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue);
    background-color: rgba(0, 122, 255, 0.1);
}

[data-theme="dark"] .navbar-nav .nav-link:hover {
    background-color: rgba(90, 200, 250, 0.2);
}

.navbar-nav .nav-link.active {
    color: var(--primary-blue);
    background-color: rgba(0, 122, 255, 0.1);
}

[data-theme="dark"] .navbar-nav .nav-link.active {
    background-color: rgba(90, 200, 250, 0.2);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    background: var(--bg-white);
}

[data-theme="dark"] .dropdown-menu {
    background: var(--bg-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease;
}

.dropdown-item {
    color: var(--text-dark);
}

[data-theme="dark"] .dropdown-item {
    color: var(--text-dark);
}

.dropdown-item:hover {
    background-color: rgba(0, 122, 255, 0.1);
    color: var(--primary-blue);
}

[data-theme="dark"] .dropdown-item:hover {
    background-color: rgba(90, 200, 250, 0.2);
    color: var(--primary-blue);
}

.btn-customer-panel {
    background: var(--primary-blue);
    border: none;
    border-radius: var(--border-radius);
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.btn-customer-panel:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1) 0%, rgba(90, 200, 250, 0.1) 100%);
    padding: 100px 0;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    margin-bottom: 80px;
}

[data-theme="dark"] .hero-section {
    background: linear-gradient(135deg, rgba(90, 200, 250, 0.15) 0%, rgba(125, 211, 252, 0.1) 100%);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    margin: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--primary-blue);
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

[data-theme="dark"] .btn-outline-primary {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

[data-theme="dark"] .btn-outline-primary:hover {
    background: var(--primary-blue);
    color: #1C1C1E;
}

/* Service Cards */
.service-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .service-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--bg-white);
}

[data-theme="dark"] .service-card h3,
[data-theme="dark"] .service-card h4,
[data-theme="dark"] .service-card strong {
    color: var(--text-dark) !important;
}

[data-theme="dark"] .service-card span {
    color: var(--text-dark) !important;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card-text {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* Package Cards */
.package-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .package-card {
    border: 2px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .package-card.featured {
    border-color: var(--primary-blue);
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.package-card:hover::before {
    opacity: 1;
}

.package-card.featured {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.package-card.featured::before {
    opacity: 1;
}

.package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-blue);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.package-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.package-price-period {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 400;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.package-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    color: var(--text-dark);
}

[data-theme="dark"] .package-features li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-dark);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    color: var(--primary-blue);
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.package-btn {
    width: 100%;
    padding: 0.875rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1.5rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

/* Why Section */
.why-section {
    background: var(--bg-light);
    padding: 80px 0;
    border-radius: var(--border-radius-lg);
    margin: 80px 0;
}

[data-theme="dark"] .why-section {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--bg-light);
}

.why-section h2 {
    color: var(--text-dark);
}

.why-section .text-muted {
    color: var(--text-gray) !important;
}

[data-theme="dark"] .why-section h2 {
    color: var(--text-dark);
}

[data-theme="dark"] .why-section .text-muted {
    color: var(--text-gray) !important;
}

.why-item {
    text-align: center;
    padding: 2rem;
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
    box-shadow: var(--shadow-md);
}

.why-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

[data-theme="dark"] .why-title {
    color: var(--text-dark);
}

.why-text {
    color: var(--text-gray);
}

[data-theme="dark"] .why-text {
    color: var(--text-gray);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1) 0%, rgba(90, 200, 250, 0.1) 100%);
    padding: 60px 0;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    margin-bottom: 60px;
}

[data-theme="dark"] .page-header {
    background: linear-gradient(135deg, rgba(90, 200, 250, 0.15) 0%, rgba(125, 211, 252, 0.1) 100%);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
}

/* Domain Search */
.domain-search-box {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 60px;
}

[data-theme="dark"] .domain-search-box {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.domain-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.domain-input-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: var(--bg-white);
    color: var(--text-dark);
}

[data-theme="dark"] .domain-input-group input {
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: var(--bg-light);
    color: var(--text-dark);
}

.domain-input-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.domain-extensions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.domain-extension-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    display: block;
}

[data-theme="dark"] .domain-extension-card {
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: var(--bg-light);
}

[data-theme="dark"] .domain-extension-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-blue);
}

.domain-extension-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .domain-extension-name {
    color: var(--primary-blue);
}

.domain-extension-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

[data-theme="dark"] .domain-extension-price {
    color: var(--text-dark);
}

.domain-extension-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Footer */
.custom-footer {
    background: var(--text-dark);
    color: white;
    margin-top: 100px;
    padding-top: 60px;
}

[data-theme="dark"] .custom-footer {
    background: #0D0D0F;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 60px;
    width: auto;
    max-width: 200px;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-blue-light);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Content Section */
.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.content-section .row.text-center h2,
.content-section .row.text-center h3 {
    color: var(--text-dark);
}

.content-section h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section ul li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 0.75rem;
}

[data-theme="dark"] .content-section h2,
[data-theme="dark"] .content-section h3,
[data-theme="dark"] .content-section .row.text-center h2,
[data-theme="dark"] .content-section .row.text-center h3 {
    color: var(--text-dark);
}

[data-theme="dark"] .content-section p,
[data-theme="dark"] .content-section ul li {
    color: var(--text-gray);
}

/* Touch-friendly elements for mobile */
@media (hover: none) and (pointer: coarse) {
    .btn, .nav-link, .dropdown-item, .theme-toggle {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .service-card, .package-card {
        cursor: pointer;
    }
}

/* Responsive - Tablet and below */
@media (max-width: 991.98px) {
    .custom-navbar {
        padding: 0.5rem 0;
        min-height: auto;
    }
    
    .custom-navbar .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        flex-direction: column;
        align-items: stretch;
    }
    
    .navbar-brand {
        width: 100%;
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 0.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .navbar-logo {
        height: 32px;
        max-width: 140px;
    }
    
    .navbar-toggler {
        order: 2;
        margin-left: auto;
        padding: 0.25rem 0.5rem;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 6px;
        align-self: flex-end;
    }
    
    [data-theme="dark"] .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    .navbar-collapse {
        order: 3;
        width: 100%;
        margin-top: 0;
    }
    
    .navbar-nav {
        margin-top: 0;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }
    
    [data-theme="dark"] .navbar-nav {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav .nav-item {
        width: 100%;
        margin: 0.25rem 0;
    }
    
    .navbar-nav .nav-link {
        width: 100%;
        padding: 0.75rem 1rem;
        margin: 0;
        border-radius: 6px;
        font-size: 0.95rem;
        display: block;
    }
    
    .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin-top: 0.25rem;
        margin-left: 0;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.1);
        background: var(--bg-light);
        padding: 0.25rem 0;
    }
    
    [data-theme="dark"] .dropdown-menu {
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dropdown-item {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
        display: block;
        width: 100%;
    }
    
    .navbar-actions {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
        gap: 0.5rem;
        flex-direction: row;
        justify-content: space-between;
    }
    
    [data-theme="dark"] .navbar-actions {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin: 0;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
        font-size: 16px;
        -webkit-text-size-adjust: 100%;
    }
    
    .custom-navbar {
        padding: 0.4rem 0;
        min-height: auto;
    }
    
    .custom-navbar .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        flex-direction: column;
    }
    
    .navbar-brand {
        width: 100%;
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 0.4rem;
    }
    
    .navbar-logo {
        height: 28px;
        max-width: 110px;
    }
    
    .navbar-toggler {
        padding: 0.2rem 0.4rem;
        font-size: 0.9rem;
        width: 38px;
        height: 38px;
    }
    
    .navbar-nav {
        flex-direction: column;
        align-items: stretch;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
        margin: 0.2rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.65rem 0.875rem;
        font-size: 0.9rem;
        width: 100%;
        display: block;
    }
    
    .dropdown-menu {
        width: 100%;
    }
    
    .dropdown-item {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        display: block;
        width: 100%;
    }
    
    .navbar-actions {
        gap: 0.5rem;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .theme-toggle {
        width: 38px;
        height: 38px;
        padding: 0;
        margin-right: 0;
        flex-shrink: 0;
    }
    
    .btn-customer-panel {
        flex: 1;
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        justify-content: center;
        min-width: auto;
        width: auto;
    }
    
    .btn-customer-panel .btn-text {
        display: inline;
    }
    
    .hero-section {
        padding: 60px 0 40px;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .page-header {
        padding: 40px 0;
        margin-bottom: 40px;
    }
    
    .page-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 40px 0;
    }
    
    .content-section h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .content-section h3 {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card-icon {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }
    
    .service-card-title {
        font-size: 1.25rem;
    }
    
    .package-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .package-name {
        font-size: 1.5rem;
    }
    
    .package-price {
        font-size: 2rem;
    }
    
    .why-section {
        padding: 40px 0;
        margin: 40px 0;
    }
    
    .why-icon {
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }
    
    .why-title {
        font-size: 1.1rem;
    }
    
    .domain-input-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .domain-input-group input {
        width: 100%;
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }
    
    .domain-search-box {
        padding: 1.5rem;
    }
    
    .domain-extensions {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .theme-toggle {
        margin-right: 0.5rem;
        width: 44px;
        height: 44px;
    }
    
    .btn-customer-panel {
        width: auto;
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    .custom-footer {
        padding-top: 40px;
        margin-top: 60px;
    }
    
    .footer-logo {
        height: 40px;
        max-width: 150px;
        margin-bottom: 0.75rem;
    }
    
    .footer-heading {
        font-size: 1rem;
        margin-top: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 576px) {
    body {
        padding-top: 0;
    }
    
    .custom-navbar {
        position: relative;
    }
    
    .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .custom-navbar {
        padding: 0.35rem 0;
        min-height: auto;
    }
    
    .custom-navbar .container {
        flex-direction: column;
    }
    
    .navbar-brand {
        width: 100%;
        max-width: 100%;
        margin-bottom: 0.35rem;
    }
    
    .navbar-logo {
        height: 24px;
        max-width: 90px;
    }
    
    .navbar-toggler {
        width: 36px;
        height: 36px;
        padding: 0.15rem 0.3rem;
        font-size: 0.85rem;
    }
    
    .navbar-nav {
        flex-direction: column;
        align-items: stretch;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
        margin: 0.15rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.6rem 0.75rem;
        font-size: 0.875rem;
        width: 100%;
        display: block;
    }
    
    .dropdown-item {
        padding: 0.5rem 0.875rem;
        font-size: 0.85rem;
        display: block;
        width: 100%;
    }
    
    .btn-customer-panel {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        width: auto;
        flex: 1;
    }
    
    .btn-customer-panel .btn-text {
        display: inline;
    }
    
    .btn-customer-panel i {
        margin-right: 0.25rem !important;
    }
    
    .theme-toggle {
        width: 36px;
        height: 36px;
    }
    
    .navbar-actions {
        gap: 0.5rem;
        margin-top: 0.4rem;
        padding-top: 0.4rem;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .hero-section {
        padding: 40px 0 30px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .package-card {
        padding: 1.25rem;
    }
    
    .package-name {
        font-size: 1.25rem;
    }
    
    .package-price {
        font-size: 1.75rem;
    }
    
    .domain-search-box {
        padding: 1.25rem;
    }
    
    .btn, .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn-customer-panel {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        font-size: 1rem;
    }
}

/* Responsive - Extra Small Mobile */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .page-title {
        font-size: 1.35rem;
    }
    
    .btn-customer-panel {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .btn-customer-panel i {
        margin-right: 0.25rem !important;
    }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .page-header {
        padding: 30px 0;
    }
}

/* Print styles */
@media print {
    .custom-navbar,
    .btn,
    .theme-toggle,
    .custom-footer {
        display: none !important;
    }
    
    body {
        padding-top: 0;
    }
    
    .hero-section,
    .why-section {
        background: none !important;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-primary-blue {
    color: var(--primary-blue);
}

.bg-light-custom {
    background-color: var(--bg-light);
}

/* Dark theme support for Bootstrap bg-light */
[data-theme="dark"] .bg-light {
    background-color: var(--bg-light) !important;
    color: var(--text-dark) !important;
}

[data-theme="dark"] .bg-light strong {
    color: var(--text-dark) !important;
}

[data-theme="dark"] .bg-light .text-primary-blue {
    color: var(--primary-blue) !important;
}

/* Bootstrap text-muted override for dark theme */
.text-muted {
    color: var(--text-gray) !important;
}

[data-theme="dark"] .text-muted {
    color: var(--text-gray) !important;
}

/* General heading colors for dark theme */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
    color: var(--text-dark);
}

/* General paragraph colors for dark theme */
[data-theme="dark"] p {
    color: var(--text-gray);
}

.section-spacing {
    margin: 80px 0;
}

