/* --- Design System & CSS Variables --- */
:root {
    --bg-dark: #030307;
    --bg-card: rgba(15, 23, 42, 0.45);
    --bg-card-hover: rgba(30, 41, 59, 0.65);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-hover: rgba(0, 229, 255, 0.45);
    
    --primary-color: #00e5ff; /* High-tech Cyan */
    --primary-glow: rgba(0, 229, 255, 0.3);
    --secondary-color: #94a3b8; /* Metallic Silver */
    --secondary-glow: rgba(148, 163, 184, 0.2);
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius-lg: 16px;
    --border-radius-md: 12px;
}

/* --- Base Styles & Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    background-color: var(--bg-dark);
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center top;
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Utility Classes --- */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-color-hover);
    box-shadow: 0 20px 40px -15px rgba(232, 163, 130, 0.1);
    transform: translateY(-5px);
}

/* --- Scroll Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Header / Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(9, 9, 11, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 102, 204, 0.15);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(9, 9, 11, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.header.scrolled .header-container {
    padding: 0px 20px;
}

.logo-link {
    display: block;
}

.logo-img {
    height: 100px;
    width: auto;
    transition: var(--transition-smooth);
}

.header.scrolled .logo-img {
    height: 50px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #000000 !important;
    font-weight: 700;
    padding: 10px 24px !important;
    border-radius: 50px;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.nav-btn::after {
    display: none;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 140px 20px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(3, 3, 7, 0.85) 0%, rgba(3, 3, 7, 0.95) 100%), 
                url('hero-bg.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

.hero-bg-gradient {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(232, 163, 130, 0.12) 0%, rgba(9, 9, 11, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-bg-gradient.rotate {
    top: auto;
    bottom: -10%;
    left: -10%;
    right: auto;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(9, 9, 11, 0) 70%);
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-tag {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding: 6px 16px;
    background: rgba(232, 163, 130, 0.08);
    border: 1px solid rgba(232, 163, 130, 0.2);
    border-radius: 50px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    width: 100%;
    max-width: 550px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #000;
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px var(--primary-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-color-hover);
    transform: translateY(-3px);
}

/* --- Video Players --- */
.video-player-container {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-controls-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
    opacity: 1;
}

.video-player-container:hover .video-controls-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.play-btn {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px var(--primary-glow);
    transition: var(--transition-smooth);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px var(--primary-glow);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    font-size: 1.5rem;
    color: var(--primary-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* --- Section Layouts --- */
section {
    padding: 100px 20px;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

/* --- About Section --- */
.about-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d11 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-stack {
    position: relative;
    height: 450px;
}

.about-img-1 {
    width: 75%;
    height: 380px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-img-2 {
    width: 65%;
    height: 300px;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.about-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-text-content .section-title {
    margin-bottom: 5px;
}

.about-text-content .section-subtitle {
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(232, 163, 130, 0.08);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    color: var(--primary-color);
    font-size: 1.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Services Section --- */
.services-section {
    background: #0d0d11;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.service-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius-md);
    color: var(--secondary-color);
    font-size: 1.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.services-video-showcase {
    max-width: 900px;
    margin: 80px auto 0;
    text-align: center;
}

.showcase-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.second-player {
    border: 1px solid var(--border-color);
}

/* --- References Section --- */
.references-section {
    background: linear-gradient(180deg, #0d0d11 0%, var(--bg-dark) 100%);
}

.references-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.reference-item {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

.ref-img-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.ref-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.reference-item:hover .ref-img-container img {
    transform: scale(1.05);
}

.ref-content {
    padding: 30px;
}

.ref-content h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.ref-category {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.ref-text {
    color: var(--text-muted);
    font-style: italic;
}

/* --- Contact Section --- */
.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-panel p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.method-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.method-item i {
    width: 50px;
    height: 50px;
    background: rgba(232, 163, 130, 0.08);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.method-item span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.method-item strong {
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-form-panel {
    padding: 50px 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 12px 18px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 15px rgba(232, 163, 130, 0.1);
}

.btn-submit {
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 15px;
    width: 100%;
}

.btn-submit i {
    transition: var(--transition-smooth);
}

.btn-submit:hover i {
    transform: translateX(5px) translateY(-2px);
}

.form-status {
    text-align: center;
    font-size: 0.95rem;
    margin-top: 5px;
    font-weight: 600;
}

/* --- Footer --- */
.footer {
    background: #060608;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 20px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    height: 60px;
    width: auto;
    align-self: flex-start;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-copy {
    grid-column: span 2;
    text-align: center;
    font-size: 0.8rem;
    color: #4b5563;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 30px;
    margin-top: 20px;
}

/* --- Legal Modals --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-card {
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal-content {
    padding: 40px;
    overflow-y: auto;
}

.modal-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.modal-content h3 {
    font-size: 1.1rem;
    margin: 20px 0 10px;
    color: var(--secondary-color);
}

.modal-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .hero-content {
        align-items: center;
    }
    .hero-desc {
        max-width: 600px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .image-stack {
        height: 380px;
        max-width: 500px;
        margin: 0 auto;
    }
    .about-img-1 {
        height: 320px;
    }
    .about-img-2 {
        height: 250px;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    .header-container {
        padding: 4px 15px;
        transition: var(--transition-smooth);
    }
    
    .header.scrolled .header-container {
        padding: 0px 15px;
    }
    
    .logo-img {
        height: 80px;
    }
    
    .header.scrolled .logo-img {
        height: 45px;
    }
    .mobile-nav-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(9, 9, 11, 0.98);
        border-bottom: 1px solid rgba(0, 102, 204, 0.15);
        flex-direction: column;
        padding: 30px 20px;
        gap: 25px;
        transform: translateY(-120%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }
    .nav-menu.active {
        transform: translateY(0);
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .section-subtitle {
        font-size: 2rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .references-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand {
        align-items: center;
    }
    .footer-logo {
        align-self: center;
    }
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    .footer-copy {
        grid-column: span 1;
    }
}

/* --- Vision / CEO Section --- */
.ceo-section {
    position: relative;
    padding: 120px 20px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #06060c 100%);
    overflow: hidden;
    z-index: 1;
}

.ceo-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(0, 229, 255, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
}

.ceo-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.ceo-image-container {
    position: relative;
    display: inline-block;
    margin: 40px auto 30px;
    z-index: 2;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 682/1024;
}

.ceo-gold-portal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    width: 130%;
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, rgba(255, 215, 0, 0.1) 50%, transparent 75%);
    border: 3px dashed rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.35), inset 0 0 50px rgba(212, 175, 55, 0.35);
    z-index: -1;
    pointer-events: none;
}

.ceo-gold-portal-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    width: 112%;
    aspect-ratio: 1 / 1;
    border: 2px dotted rgba(212, 175, 55, 0.65);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2), inset 0 0 30px rgba(212, 175, 55, 0.2);
    z-index: -1;
    pointer-events: none;
}

.ceo-img-large {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.9);
    mask-image: radial-gradient(circle at center, black 40%, transparent 78%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 78%);
}

.ceo-quote-container {
    max-width: 850px;
    padding: 50px;
    margin-top: 30px;
    text-align: center;
}

.ceo-quote-container .quote-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.4;
    margin-bottom: 20px;
}

.ceo-quote {
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 30px;
}

.ceo-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ceo-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
}

.ceo-role {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .ceo-section {
        padding: 80px 20px;
    }
    .ceo-image-container {
        max-width: 320px;
    }
    .ceo-quote-container {
        padding: 30px 20px;
    }
    .ceo-quote {
        font-size: 1.1rem;
    }
}

