
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    
    --color-primary: #0d1b2a;       
    --color-accent: #00c7b7;        
    --color-light: #f8f9fa;         
    --color-text-dark: #333333;
    --color-text-light: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-dark);
    line-height: 1.6;
    background-color: var(--color-light);
    transition: background-color 0.3s;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Reset */
h1, h2, h3, h4 {
    color: var(--color-primary);
    line-height: 1.2;
}


.language-bar {
    background-color: #1a2c3e; 
    padding: 8px 0;
    border-bottom: 1px solid #3c4f62;
    overflow-x: auto; 
    white-space: nowrap; 
}

.lang-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px; 
}

.lang-btn {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85em;
    font-weight: 600;
    padding: 5px 12px;
    margin: 0 4px;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
    line-height: 1;
    white-space: nowrap;
}

.lang-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-accent); 
}

.lang-btn.active {
    background-color: var(--color-accent); 
    color: var(--color-primary);
}



.hero-section {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: 100px 0;
    text-align: center;
    border-bottom: 8px solid var(--color-accent); /* Accent Border */
}

.main-title {
    font-size: clamp(2.5em, 5vw, 3.8em); /* Responsive font sizing */
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--color-text-light); 
}

.subtitle {
    font-size: clamp(1.2em, 2.5vw, 1.6em);
    font-weight: 400;
    margin-bottom: 50px;
    color: #c0c0c0;
}

.domain-highlight {
    margin: 30px 0 50px;
}

.highlight-domain {
    display: inline-block;
    background-color: var(--color-accent); 
    color: var(--color-primary);
    padding: 10px 20px;
    margin: 6px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 0.9em; /* Slightly smaller for multiple domains */
    letter-spacing: 0.5px;
}

/* New: CTA Buttons Container for better mobile layout */
.cta-buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-button {
    display: inline-block;
    background-color: transparent;
    color: var(--color-accent);
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.25em;
    font-weight: 800;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 199, 183, 0.4);
    border: 2px solid var(--color-accent);
    box-shadow: none;
    padding: 13px 40px;
}

.cta-button:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
    box-shadow: 0 4px 10px rgba(0, 199, 183, 0.2);
}

/* Secondary CTA Styling (Assuming it exists, from prior context) */
.secondary-cta {
    background-color: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    box-shadow: none;
    padding: 13px 40px; /* Slightly adjusted padding for border */
}

.secondary-cta:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
    box-shadow: 0 4px 10px rgba(0, 199, 183, 0.2);
}

.cta-note {
    margin-top: 15px;
    font-size: 0.9em;
    color: #a0a0a0;
}


.value-proposition {
    padding: 80px 0;
    text-align: center;
}

.value-proposition h3 {
    font-size: 2.2em;
    margin-bottom: 40px;
    font-weight: 800;
}

.pillars-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.pillar {
    flex-basis: 30%;
    background-color: #ffffff;
    padding: 40px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.pillar:hover {
    transform: translateY(-5px);
}

.pillar h4 {
    color: var(--color-accent);
    font-size: 1.4em;
    margin-bottom: 10px;
    font-weight: 600;
}

.pillar p {
    color: #555;
}

.full-inventory {
    background-color: #e9ecef;
    padding: 60px 0;
    text-align: center;
}

.full-inventory h3 {
    font-size: 2em;
    margin-bottom: 30px;
    color: var(--color-primary);
    font-weight: 800;
}

.tld-list ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.tld-list li {
    background-color: #ffffff;
    padding: 15px 25px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    border-left: 6px solid var(--color-accent);
    color: var(--color-primary);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.inventory-note {
    font-style: italic;
    color: #777;
    margin-top: 20px;
}


.contact-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--color-light); 
}

.contact-section h3 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: var(--color-primary);
    font-weight: 800;
}

.contact-section p {
    margin-bottom: 40px;
    color: #666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-details-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.contact-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    width: 40%;
    min-width: 280px;
    transition: transform 0.3s;
    border-top: 5px solid var(--color-accent);
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card h4 {
    color: var(--color-primary);
    font-size: 1.5em;
    margin-bottom: 10px;
}

.contact-card p {
    margin-bottom: 20px;
    color: #555;
}

.contact-link {
    display: block; 
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: opacity 0.3s;
    margin-top: 10px;
    width: 100%;
}

.whatsapp-link {
    background-color: #25D366; /* WhatsApp Green */
    color: white;
}

.phone-link {
    background-color: #555; 
    color: white;
}

.email-link {
    background-color: var(--color-accent); /* Teal/Aqua */
    color: var(--color-primary);
}

.contact-link:hover {
    opacity: 0.85;
}

.discretion-note {
    font-size: 1.1em;
    margin-top: 30px;
    color: var(--color-primary);
}


footer {
    background-color: #343a40;
    color: var(--color-light);
    padding: 30px 0;
    text-align: center;
    font-size: 0.9em;
}

.disclaimer {
    margin-top: 10px;
    color: #aaaaaa;
    font-size: 0.8em;
}


@media (max-width: 900px) {
    /* Tablet adjustments */
    .pillars-grid {
        gap: 20px;
    }
    .contact-details-grid {
        gap: 30px;
    }
    .contact-card {
        width: 45%; /* slightly wider card on tablet */
    }
    h3 {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    /* Mobile adjustments */
    .hero-section {
        padding: 60px 0;
    }
    
    /* Font size scaling */
    .main-title {
        font-size: 2.2em;
    }
    .subtitle {
        font-size: 1.1em;
        margin-bottom: 30px;
    }
    .value-proposition h3, .contact-section h3, .full-inventory h3 {
        font-size: 1.8em;
        margin-bottom: 25px;
    }
    
    /* CTA Buttons: Stack vertically */
    .cta-buttons-container {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .cta-button {
        width: 80%;
        max-width: 350px;
        font-size: 1.1em;
        padding: 12px 30px;
    }

    /* Column layouts collapse */
    .pillars-grid {
        flex-direction: column;
        gap: 25px;
    }
    .pillar {
        flex-basis: 100%;
        padding: 30px 20px;
    }
    
    /* Domain Highlights: Allow more wrapping/stacking */
    .domain-highlight {
        margin-bottom: 30px;
        display: block; 
    }
    .highlight-domain {
        display: inline-block; 
        margin: 4px;
        padding: 8px 15px;
    }
    
    /* TLD List: Stack vertically */
    .tld-list ul {
        flex-direction: column;
        gap: 10px;
    }
    .tld-list li {
        width: 100%;
        text-align: left;
        padding: 12px 20px;
    }
    
    /* Contact Details: Stack vertically */
    .contact-details-grid {
        flex-direction: column;
        gap: 20px;
    }
    .contact-card {
        width: 100%;
        min-width: unset;
        padding: 25px;
    }

    /* Language Bar adjustment for mobile */
    .lang-container {
        justify-content: flex-start;
        padding: 0 5px;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile adjustments */
    .container {
        padding: 0 15px;
    }
    h1 {
        font-size: 1.6em;
    }
    .cta-button {
        width: 100%;
        font-size: 1em;
    }
    .language-bar {
        padding: 5px 0;
    }
}