/* Reset & Vars */
:root {
    --primary-blue: #0A192F;
    --accent-blue: #112240;
    --royal-blue: #233554;
    --gold: #FFD700;
    --gold-light: #FFE55C;
    --gold-dark: #D4AF37;
    --text-white: #E6F1FF;
    --text-slate: #8892b0;
    --white: #ffffff;
    --light-bg: #f5f7fa;
    --dark-text: #2d3748;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark-text);
    background: linear-gradient(to bottom, #f5f7fa 0%, #ffffff 50%, #f5f7fa 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    text-decoration: none;
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background: linear-gradient(135deg, #020c1b 0%, #0a192f 50%, #112240 100%);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Abstract Tech "Office" Background Effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 40%),
        linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 255, 255, 0.02) 75%, transparent 75%, transparent);
    background-size: 100% 100%, 100% 100%, 40px 40px;
    opacity: 0.9;
    animation: pulse 8s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.domain-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.domain-badge:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    transform: scale(1.05);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.highlight {
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-slate);
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-support-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #020c1b;
    font-family: var(--font-heading);
    font-weight: 800;
    padding: 1.3rem 3.5rem;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

/* Niches Section */
.niches {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 3.2rem;
    margin-bottom: 4rem;
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 1rem;
    font-weight: 700;
    font-style: italic;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 2px;
}

.niches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.niche-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(10, 25, 47, 0.08);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.niche-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.niche-card:hover::before {
    transform: scaleX(1);
}

.niche-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.2);
}

.icon-box {
    font-size: 2.8rem;
    color: var(--royal-blue);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.niche-card:hover .icon-box {
    color: var(--gold);
    transform: scale(1.1) rotate(5deg);
}

.niche-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.niche-card:hover h3 {
    color: var(--royal-blue);
}

.concept-name {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--gold);
    background: linear-gradient(135deg, #0A192F 0%, #112240 100%);
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 2px 8px rgba(10, 25, 47, 0.2);
}

.niche-card p {
    color: #555;
    font-size: 0.98rem;
    line-height: 1.7;
}

/* Authority Section */
.authority {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0A192F 0%, #112240 50%, #0A192F 100%);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.authority::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-title.text-light {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.feature-item {
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    display: inline-block;
}

.feature-item:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

.feature-item h4 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--white);
}

.feature-item p {
    color: var(--text-slate);
    font-size: 1rem;
    line-height: 1.7;
}

/* Footer & Form */
.footer {
    padding: 6rem 0 2rem;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
    border-top: 1px solid #e2e8f0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    gap: 2rem;
}

.cta-final h2 {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-final p {
    font-size: 1.2rem;
    color: var(--text-slate);
    line-height: 1.8;
}

/* Email Contact Box */
.email-contact-box {
    margin-top: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 215, 0, 0.2);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.email-contact-box h3 {
    margin-bottom: 2rem;
    color: var(--primary-blue);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.email-contact-box h3 i {
    color: var(--gold);
    font-size: 1.5rem;
}

.email-display-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #0A192F 0%, #112240 100%);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(10, 25, 47, 0.2);
    margin-bottom: 1.5rem;
}

.email-display {
    flex: 1;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    user-select: all;
    cursor: text;
}

.copy-button {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #020c1b;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.copy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

.copy-button:active {
    transform: translateY(0);
}

.copy-button.copied {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.copy-feedback {
    text-align: center;
    color: #10b981;
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-top: 0.5rem;
}

.copy-feedback.show {
    opacity: 1;
}

.email-link-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--royal-blue) 100%);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(10, 25, 47, 0.2);
    text-decoration: none;
}

.email-link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 25, 47, 0.3);
}

.email-link-button i {
    font-size: 1.2rem;
}

.security-badge {
    margin-top: 2rem;
    background: linear-gradient(135deg, #e6fffa 0%, #b2f5ea 100%);
    color: #047481;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid #81e6d9;
    box-shadow: 0 2px 8px rgba(4, 116, 129, 0.1);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

.contact-form-wrapper h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    font-family: var(--font-heading);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background-color: #f7fafc;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: var(--royal-blue);
}

.legal-disclaimer {
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 2rem;
    font-size: 0.85rem;
    color: #888;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 0.75rem;
    line-height: 1.6;
    margin-bottom: 1.5rem !important;
    opacity: 0.8;
}

.legal-disclaimer p {
    margin-bottom: 0.5rem;
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .header-content {
        text-align: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-title::after {
        width: 60px;
    }

    .niches-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .niche-card {
        padding: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .email-contact-box {
        padding: 2rem 1.5rem;
    }

    .email-display-wrapper {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .email-display {
        font-size: 1.1rem;
        text-align: center;
        word-break: break-all;
    }

    .copy-button {
        width: 100%;
        justify-content: center;
    }

    .email-link-button {
        width: 100%;
        justify-content: center;
    }

    .flagship-content {
        padding: 1.5rem;
        font-size: 1rem;
    }

    .flagship-title {
        font-size: 2rem;
    }

    .cta-final h2 {
        font-size: 2rem;
    }
}

/* Flagship Concept Section */
.flagship-concept {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #f8fafc 0%, #FFFFFF 50%, #f8fafc 100%);
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
    position: relative;
}

.flagship-concept::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Holding Section Styles */
.holding-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.holding-main-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.brand-emphasis {
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.holding-intro {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 5rem auto;
    font-size: 1.3rem;
    line-height: 1.7;
    color: #4a5568;
    font-family: var(--font-heading);
    font-style: italic;
}

.holding-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.holding-pillar {
    background: #ffffff;
    padding: 3.5rem;
    border-radius: 4px;
    /* More institutional square-ish corners */
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--gold);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.holding-pillar:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(10, 25, 47, 0.1);
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pillar-tagline {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 2rem;
    font-style: italic;
}

.pillar-text {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--dark-text);
    text-align: justify;
}

@media (max-width: 992px) {
    .holding-grid {
        grid-template-columns: 1fr;
        padding: 0 2rem;
    }
}