/* ==========================================================================
   Clove.net.au - Modern Minimal Design
   Brand Color: #6678CC (Periwinkle Blue)
   ========================================================================== */

/* CSS Variables */
:root {
    --clove-primary: #6678CC;
    --clove-primary-dark: #4a5a9e;
    --clove-primary-light: #8a9ae0;
    --clove-accent: #4ECDC4;
    --clove-dark: #1a1a2e;
    --clove-darker: #0f0f1a;
    --clove-light: #f8f9fc;
    --clove-gray: #6c757d;
    --clove-gray-light: #e9ecef;
    --clove-success: #28a745;
    --clove-warning: #ffc107;
    --clove-danger: #dc3545;
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--clove-light);
    color: var(--clove-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    font-size: 1.05rem;
    color: var(--clove-gray);
}

a {
    color: var(--clove-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--clove-primary-dark);
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
}

.section-sm {
    padding: 4rem 0;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(102, 120, 204, 0.1);
    transition: all var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--clove-primary);
    letter-spacing: 0.02em;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-links a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clove-dark);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--clove-primary);
    background: rgba(102, 120, 204, 0.08);
}

.nav-actions {
    display: flex;
    gap: 0.75rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--clove-dark);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: var(--clove-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--clove-primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--clove-primary);
    border: 2px solid var(--clove-primary);
}

.btn-secondary:hover {
    background: var(--clove-primary);
    color: white;
}

.btn-dark {
    background: var(--clove-dark);
    color: white;
}

.btn-dark:hover {
    background: var(--clove-darker);
    color: white;
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--clove-dark);
}

.btn-ghost:hover {
    background: var(--clove-gray-light);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--clove-light) 0%, #e8ecf8 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(102, 120, 204, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--clove-light), transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--clove-primary);
    background: rgba(102, 120, 204, 0.1);
    border-radius: 50px;
    animation: fadeInUp 0.6s ease forwards;
}

.hero-badge::before {
    content: '★';
    font-size: 0.75rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: var(--clove-dark);
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
}

.hero h1 span {
    color: var(--clove-primary);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

/* Domain Search Box */
.domain-search-box {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

.domain-search-box h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--clove-dark);
}

.domain-search-form {
    display: flex;
    gap: 0.75rem;
}

.domain-input-wrapper {
    flex: 1;
    position: relative;
}

.domain-input-wrapper input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--clove-gray-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.domain-input-wrapper input:focus {
    outline: none;
    border-color: var(--clove-primary);
    box-shadow: 0 0 0 4px rgba(102, 120, 204, 0.1);
}

.domain-input-wrapper input::placeholder {
    color: var(--clove-gray);
}

.tld-select {
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--clove-gray-light);
    border-radius: var(--radius-md);
    background: white;
    cursor: pointer;
    min-width: 120px;
    transition: all var(--transition-fast);
}

.tld-select:focus {
    outline: none;
    border-color: var(--clove-primary);
}

.domain-search-results {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--clove-light);
    border-radius: var(--radius-md);
    display: none;
}

.domain-search-results.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.domain-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--clove-gray-light);
}

.domain-result:last-child {
    border-bottom: none;
}

.domain-name {
    font-weight: 600;
    color: var(--clove-dark);
}

.domain-status {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.domain-status.available {
    color: var(--clove-success);
}

.domain-status.unavailable {
    color: var(--clove-danger);
}

.domain-price {
    font-weight: 600;
    color: var(--clove-primary);
}

/* Hero Visual Elements */
.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    max-width: 500px;
    opacity: 0.15;
    pointer-events: none;
}

.hero-arc {
    stroke: var(--clove-primary);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawArc 2s ease forwards 0.5s;
}

@keyframes drawArc {
    to {
        stroke-dashoffset: 0;
    }
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
    background: white;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    color: var(--clove-dark);
}

.section-header p {
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    position: relative;
    padding: 2rem;
    background: var(--clove-light);
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    transition: all var(--transition-base);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--clove-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(102, 120, 204, 0.2);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    background: rgba(102, 120, 204, 0.1);
    border-radius: var(--radius-md);
    color: var(--clove-primary);
    font-size: 1.5rem;
}

.service-card h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--clove-dark);
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.service-card .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-section {
    background: linear-gradient(135deg, var(--clove-dark) 0%, var(--clove-darker) 100%);
    color: white;
}

.pricing-section .section-header h2 {
    color: white;
}

.pricing-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.pricing-tab {
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.pricing-tab:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.pricing-tab.active {
    background: var(--clove-primary);
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.pricing-card {
    position: relative;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
}

.pricing-card.featured {
    background: rgba(102, 120, 204, 0.2);
    border-color: var(--clove-primary);
}

.pricing-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--clove-primary);
    border-radius: 50px;
}

.pricing-card h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.pricing-card .price .currency {
    font-size: 1.5rem;
    font-weight: 500;
    opacity: 0.8;
}

.pricing-card .price .amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.pricing-card .price .period {
    font-size: 1rem;
    opacity: 0.6;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features li::before {
    content: '✓';
    color: var(--clove-accent);
    font-weight: bold;
}

.pricing-card .btn {
    width: 100%;
}

/* Loading State for Pricing */
.pricing-loading {
    text-align: center;
    padding: 3rem;
}

.pricing-loading .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--clove-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-section {
    background: white;
    border-top: 1px solid var(--clove-gray-light);
    border-bottom: 1px solid var(--clove-gray-light);
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--clove-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--clove-gray);
    font-weight: 500;
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-section {
    background: var(--clove-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.features-content h2 {
    margin-bottom: 1.5rem;
}

.features-content p {
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--clove-gray-light);
}

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

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 120, 204, 0.1);
    border-radius: var(--radius-sm);
    color: var(--clove-primary);
    flex-shrink: 0;
}

.feature-text h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--clove-dark);
}

.feature-text p {
    font-size: 0.9rem;
    margin: 0;
}

.features-image {
    position: relative;
    padding: 2rem;
}

.features-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    background: var(--clove-primary);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cta-section .btn-primary {
    background: white;
    color: var(--clove-primary);
}

.cta-section .btn-primary:hover {
    background: var(--clove-light);
}

.cta-section .btn-secondary {
    border-color: white;
    color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: var(--clove-primary);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--clove-darker);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-contact-info {
    list-style: none;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-info li svg {
    color: var(--clove-primary-light);
}

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-bottom-links a:hover {
    color: white;
}

/* ==========================================================================
   Forms
   ========================================================================== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clove-dark);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--clove-gray-light);
    border-radius: var(--radius-md);
    background: white;
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--clove-primary);
    box-shadow: 0 0 0 4px rgba(102, 120, 204, 0.1);
}

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

.form-error {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--clove-danger);
}

/* ==========================================================================
   Login Page
   ========================================================================== */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--clove-light) 0%, #e8ecf8 100%);
}

.login-container {
    width: 100%;
    max-width: 420px;
}

.login-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header .logo {
    justify-content: center;
    margin-bottom: 1.5rem;
}

.login-header h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.login-header p {
    font-size: 0.95rem;
}

.login-form .btn {
    width: 100%;
    margin-top: 0.5rem;
}

.login-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: var(--clove-gray);
    font-size: 0.875rem;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--clove-gray-light);
}

.login-divider span {
    padding: 0 1rem;
}

.login-links {
    text-align: center;
    margin-top: 1.5rem;
}

.login-links a {
    font-size: 0.9rem;
}

/* ==========================================================================
   Support Page
   ========================================================================== */
.support-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--clove-dark) 0%, var(--clove-darker) 100%);
    color: white;
    text-align: center;
}

.support-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

.support-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: -3rem;
    position: relative;
    z-index: 1;
}

.support-option-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.support-option-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.support-option-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: rgba(102, 120, 204, 0.1);
    border-radius: 50%;
    color: var(--clove-primary);
    font-size: 1.5rem;
}

.support-option-card h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.ticket-form-section {
    background: var(--clove-light);
}

.ticket-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.ticket-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Ticket List */
.tickets-list {
    margin-top: 2rem;
}

.ticket-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.ticket-item:hover {
    box-shadow: var(--shadow-md);
}

.ticket-info h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.ticket-info p {
    font-size: 0.85rem;
    margin: 0;
}

.ticket-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ticket-status {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
}

.ticket-status.open {
    background: rgba(40, 167, 69, 0.1);
    color: var(--clove-success);
}

.ticket-status.pending {
    background: rgba(255, 193, 7, 0.1);
    color: #d39e00;
}

.ticket-status.closed {
    background: rgba(108, 117, 125, 0.1);
    color: var(--clove-gray);
}

/* ==========================================================================
   Page Headers
   ========================================================================== */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--clove-light) 0%, #e8ecf8 100%);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--clove-gray);
}

.breadcrumbs span {
    color: var(--clove-gray);
}

.breadcrumbs .current {
    color: var(--clove-primary);
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.hidden { display: none; }
.visible { display: block; }

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .features-image {
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-actions {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .domain-search-form {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 4rem 0;
    }
    
    .login-card {
        padding: 2rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Product Page Specific Styles
   ========================================================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.product-card-header {
    padding: 2rem 2rem 1.5rem;
    background: linear-gradient(135deg, var(--clove-primary) 0%, var(--clove-primary-dark) 100%);
    color: white;
}

.product-card-header h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-card-header .price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.product-card-header .currency {
    font-size: 1.25rem;
}

.product-card-header .amount {
    font-size: 2.5rem;
    font-weight: 700;
}

.product-card-header .period {
    font-size: 0.9rem;
    opacity: 0.8;
}

.product-card-body {
    padding: 1.5rem 2rem 2rem;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--clove-gray);
    border-bottom: 1px solid var(--clove-gray-light);
}

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

.product-features li::before {
    content: '✓';
    color: var(--clove-success);
    font-weight: bold;
}

.product-card .btn {
    width: 100%;
}

/* Alert Messages */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: var(--clove-success);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    color: var(--clove-danger);
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.alert-info {
    background: rgba(102, 120, 204, 0.1);
    color: var(--clove-primary);
    border: 1px solid rgba(102, 120, 204, 0.2);
}
