/* Main Styles for Domain Registration Portal */

:root {
    --primary-color: #09757a;
    --secondary-color: #00838c;
    --accent-color: #ff5c35;
    --text-color: #111111;
    --light-text: #767676;
    --light-bg: #f5f7fa;
    --dark-bg: #1d1e20;
    --success-color: #00a400;
    --warning-color: #ffb81c;
    --danger-color: #d83339;
    --border-color: #d9dbe1;
    --card-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* AdminLTE color scheme - For reference only, actual styles in adminlte.css */
:root {
    --adminlte-primary: #007bff;
    --adminlte-secondary: #6c757d;
    --adminlte-success: #28a745;
    --adminlte-info: #17a2b8;
    --adminlte-warning: #ffc107;
    --adminlte-danger: #dc3545;
    --adminlte-light: #f8f9fa;
    --adminlte-dark: #343a40;
    --adminlte-sidebar: #343a40;
    --adminlte-sidebar-light: #f8f9fa;
    --adminlte-accent: #007bff;
    --adminlte-navbar: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: var(--text-color);
    font-size: 16px;
}

/* Use AdminLTE styling for admin pages - this just adds our reference to the styles in adminlte.css */
body.adminlte {
    /* Styles are in adminlte.css */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Skip Navigation */
.skip-nav {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-color);
    color: white;
    padding: 8px 15px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-nav:focus {
    top: 0;
}

/* Front-end header styles */
.main-header {
    background-color: white;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Admin header - reference to the one in adminlte.css */
.main-header.adminlte {
    /* Styles are in adminlte.css */
}

/* Header Content */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    flex: 0 0 auto;
}

.logo a {
    color: var(--primary-color);
    text-decoration: none;
}

.main-nav {
    flex: 1 0 auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0 20px;
    padding: 0;
}

.main-nav ul li {
    position: relative;
    margin: 0 10px;
}

.main-nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    padding: 10px;
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
}

.dropdown-toggle i {
    margin-left: 5px;
    font-size: 0.8rem;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border-radius: 4px;
    top: 100%;
    left: 0;
    padding: 10px 0;
}

.dropdown-content a {
    color: var(--text-color);
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background-color: var(--light-bg);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.header-actions {
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--light-bg);
}

.btn-success {
    background-color: var(--success-color);
    color: white;
}

.btn-success:hover {
    background-color: #009000;
}

.btn-danger {
    background-color: var(--danger-color);
    color: white;
}

.btn-danger:hover {
    background-color: #c42d32;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-toggle .bar.active:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle .bar.active:nth-child(2) {
    opacity: 0;
}

.mobile-toggle .bar.active:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero-section {
    background: var(--dark-bg);
    color: white;
    padding: 50px 0;
}

.hero-content h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

.hero-tagline {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 25px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.d3v-highlight {
    color: var(--accent-color);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 92, 53, 0.4);
}

.hero-image {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.hero-vector {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.domain-nav {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.domain-nav li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.domain-nav li a:hover {
    color: white;
}

.domain-nav li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.domain-nav li a:hover:after {
    width: 100%;
}

/* Search Section */
.search-section {
    padding: 40px 0;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.search-container {
    max-width: 700px;
    margin: 0 auto 30px;
}

.search-input-group {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-input-group input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-right: none;
    font-size: 1rem;
    font-weight: 300;
}

.search-input-group input.error-input {
    border-color: var(--danger-color);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.search-input-group .btn {
    border-radius: 0 4px 4px 0;
    padding: 15px 30px;
    font-size: 1rem;
}

.search-container .alert-danger {
    max-width: 700px; /* Match search container width */
    margin: 15px auto 0; /* Center below input */
    text-align: left;
}

.search-results {
    max-width: 700px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid transparent; /* Base border */
    display: none; /* Initially hidden */
}

.search-results.searching h3 {
    color: var(--light-text);
    font-style: italic;
}

.search-results.available {
    background-color: #e6f7e6;
    border-color: var(--success-color);
    display: block; /* Ensure it's shown */
}

.search-results.unavailable {
    background-color: #fff1f1;
    border-color: var(--danger-color);
    display: block; /* Ensure it's shown */
}

.search-results h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.search-results p {
    font-size: 0.95rem;
}

.search-results .text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.search-results .text-link:hover {
    text-decoration: underline;
}

/* Promo Domains */
.promo-domains {
    margin: 30px auto;
    max-width: 700px;
}

.domain-promo-card {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 4px;
    padding: 20px;
    box-shadow: var(--card-shadow);
}

.domain-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 20px;
    padding: 10px;
    border-radius: 4px;
    background-color: var(--light-bg);
    min-width: 80px;
    text-align: center;
}

.domain-info {
    flex: 1;
}

.domain-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.domain-price {
    font-size: 0.9rem;
    color: var(--light-text);
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* Domain Benefits */
.domain-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.benefit-card {
    background-color: white;
    padding: 20px;
    border-radius: 4px;
    box-shadow: var(--card-shadow);
    text-align: center;
}

.benefit-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.benefits-image-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.benefits-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #f8f9fa 0%, var(--light-bg) 100%);
    padding: 50px 0;
}

.benefits-grid {
    display: grid; /* Ensure grid is applied */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px; /* Add margin if needed */
}

/* Customer Rating */
.customer-rating {
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 4px;
}

.customer-rating h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.rating {
    margin-bottom: 15px;
}

.rating-text {
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.stars {
    color: var(--warning-color);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.rating-count {
    font-size: 0.9rem;
    color: var(--light-text);
}

.trustpilot {
    margin-top: 15px;
}

.trustpilot-logo {
    max-height: 30px;
}

/* Why Register Section */
.why-register {
    padding: 40px 0;
    background-color: white;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--light-text);
}

.domain-extensions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.extension-card {
    background-color: white;
    border-radius: 4px;
    box-shadow: var(--card-shadow);
    padding: 20px;
    border: 1px solid var(--border-color);
}

.extension-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.extension-card.featured:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.extension-card.featured .extension-logo {
    font-size: 1.8rem;
    color: var(--accent-color);
    background-color: #fff1ee;
}

.extension-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.extension-logo img[src*="tld-pro"] {
    filter: drop-shadow(0 2px 4px rgba(9, 117, 122, 0.2));
}

.extension-logo img[src*="tld-dev"] {
    filter: drop-shadow(0 2px 4px rgba(255, 92, 53, 0.2));
}

.extension-card p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.extension-price {
    margin-top: 15px;
}

.price-label {
    font-size: 0.8rem;
    color: var(--light-text);
}

.price-was {
    font-size: 0.8rem;
    text-decoration: line-through;
    color: var(--light-text);
}

.price-note {
    font-size: 0.7rem;
    margin-top: 5px;
    color: var(--light-text);
}

/* Pricing Table */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Grid layout */
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background-color: white;
    border-radius: 4px;
    box-shadow: var(--card-shadow);
    padding: 30px;
    border: 1px solid var(--border-color);
    display: flex; /* Use flexbox for internal layout */
    flex-direction: column; /* Stack content vertically */
    height: 100%; /* Make cards equal height within the grid row */
}

.pricing-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-header h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.pricing-price {
    margin-bottom: 10px;
}

.pricing-price .currency {
    font-size: 1.2rem;
    vertical-align: super;
}

.pricing-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-price .period {
    font-size: 0.9rem;
    color: var(--light-text);
}

.pricing-header p {
    font-size: 0.9rem;
    color: var(--light-text);
}

.pricing-features {
    margin-bottom: 20px;
    flex-grow: 1; /* Allow features list to grow */
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.pricing-features ul li i {
    color: var(--success-color);
    margin-right: 10px;
    width: 16px; /* Ensure consistent icon spacing */
}

.pricing-action {
    margin-top: auto; /* Push button to the bottom */
    text-align: center;
}

/* Quick Start Guide */
.quick-start {
    padding: 40px 0;
    background-color: white;
}

.steps-container {
    display: grid; /* Use grid */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive columns */
    gap: 30px;
    margin: 40px 0;
}

.step-card {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 4px;
    border-left: 4px solid var(--primary-color);
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--light-text);
}

.code-example {
    background-color: var(--dark-bg);
    color: #f0f0f0;
    padding: 20px;
    border-radius: 4px;
    margin: 30px 0;
    font-family: 'JetBrains Mono', monospace;
    overflow-x: auto;
}

.code-example h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.code-example pre {
    margin: 0;
}

.code-example code {
    font-size: 0.9rem;
    line-height: 1.5;
}

.cta-container {
    text-align: center;
    margin-top: 30px;
}

.cta-container .btn {
    margin: 0 10px;
}

/* Community Section */
.community-section {
    padding: 40px 0;
    background-color: var(--light-bg);
}

.community-grid {
    display: grid; /* Use grid */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive columns */
    gap: 30px;
    margin: 40px 0;
}

.community-card {
    background-color: white;
    padding: 20px;
    border-radius: 4px;
    box-shadow: var(--card-shadow);
    text-align: center;
}

.community-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: block;
    border: 3px solid var(--border-color);
}

.community-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.community-role {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 10px;
}

.community-domain {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.community-domain:hover {
    text-decoration: underline;
}

.community-card p:last-of-type {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0;
}

.community-join {
    text-align: center;
    margin-top: 20px;
    font-size: 1rem;
}

/* Domain Search Trust Section */
.domain-search-trust {
    padding: 40px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.trust-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.trust-content p {
    color: var(--light-text);
}

/* Domain Features */
.domain-features {
    padding: 40px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 20px;
    border-radius: 4px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.feature-card .feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--light-text);
    font-size: 0.9rem;
}

.features-image-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.features-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.features-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
}

/* Domain Investing */
.domain-investing {
    padding: 40px 0;
    background-color: var(--light-bg);
}

.investing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.investing-card {
    background-color: white;
    padding: 30px;
    border-radius: 4px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.investing-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.investing-card p {
    margin-bottom: 20px;
    color: var(--light-text);
    font-size: 0.9rem;
}

/* TLD Section */
.tld-section {
    padding: 40px 0;
    background-color: white;
}

.tld-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.tld-item {
    background-color: var(--light-bg);
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tld-item:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.tld-item.see-all {
    background-color: transparent;
    border: 1px dashed var(--border-color);
}

.tld-item.see-all a {
    color: var(--primary-color);
    text-decoration: none;
}

.tld-item.see-all:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    color: inherit;
}

/* How to Buy */
.how-to-buy {
    padding: 40px 0;
    background-color: var(--light-bg);
}

.buy-steps {
    margin: 30px 0;
    padding-left: 20px;
}

.buy-steps li {
    margin-bottom: 10px;
    color: var(--text-color);
    padding-left: 10px;
}

.trusted-by {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.rating-note {
    font-size: 0.8rem;
    color: var(--light-text);
    margin-top: 5px;
}

/* Support Section */
.support-section {
    padding: 40px 0;
    background-color: white;
}

.guide-card {
    display: flex;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 4px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.guide-image {
    margin-right: 20px;
}

.guide-avatar {
    border-radius: 50%;
}

.guide-content h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.guide-title {
    color: var(--light-text);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.guide-logo {
    margin-bottom: 15px;
}

.guide-message {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e9ecef 100%);
}

.accordion {
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.accordion-item {
    margin-bottom: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    background-color: white;
}

.accordion-header {
    padding: 15px 20px;
    background-color: white;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.accordion-header:after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header:after {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 20px;
    max-height: 1000px;
}

.accordion-content p {
    margin-bottom: 15px;
    color: var(--light-text);
}

.accordion-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.accordion-content ul li {
    margin-bottom: 5px;
    color: var(--light-text);
}

/* Footer */
.main-footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.copyright {
    color: #aaa;
    font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (max-width: 991px) {
    .header-content {
        flex-wrap: wrap;
    }

    .logo {
        margin-bottom: 10px;
    }

    .main-nav {
        order: 3;
        flex-basis: 100%;
        margin-top: 15px;
    }

    .main-nav ul {
        flex-wrap: wrap;
    }

    .domain-nav {
        flex-direction: column;
        gap: 10px;
    }

    .auth-container {
        flex-direction: column;
    }

    .guide-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .guide-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .main-nav {
        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav ul li {
        margin: 0;
    }

    .main-nav ul li a {
        padding: 15px 10px;
        border-bottom: 1px solid var(--border-color);
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        padding: 0;
    }

    .dropdown-content a {
        padding-left: 30px;
    }

    .header-actions {
        flex-wrap: wrap;
        gap: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .hero-section .container {
        flex-direction: column;
    }
    
    .hero-image {
        margin-top: 20px;
        order: -1;
    }
    
    .hero-vector {
        max-width: 90%;
    }
    
    .benefits-image,
    .features-image {
        max-width: 90%;
    }

    .tabs {
        flex-wrap: wrap;
    }
    
    .tab {
        flex: 1 1 auto;
        text-align: center;
        padding: 10px 5px;
        font-size: 0.9rem;
    }

    .domain-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .domain-item .action-buttons {
        margin-top: 10px;
        width: 100%;
    }
    
    .domain-item .action-buttons .btn {
        width: 100%;
        margin-top: 5px;
    }
    
    .dns-records table, 
    .admin-panel table {
        display: block;
        overflow-x: auto;
    }
}

/* Additional Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}