/* ULTRA LUXURY CSS - INFRA FOCUS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0f1419;
    --navy-light: #1a2332;
    --gold: #d4a574;
    --gold-light: #f4e4c1;
    --gold-dark: #c29654;
    --cream: #f8f6f0;
    --white: #ffffff;
    --dark-grey: #333333;
    --light-grey: #f5f5f5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: var(--dark-grey);
    background: var(--cream);
    overflow-x: hidden;
}

/* LOADING SCREEN */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    height: 100px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(212, 165, 116, 0.5));
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    margin: 2rem auto 0;
    border-radius: 10px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite, loading 3s ease-out forwards;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes loading {
    0% { width: 0; }
    100% { width: 100%; }
}

/* SCROLL PROGRESS */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    z-index: 9999;
    transform-origin: left;
    transform: scaleX(0);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 1px;
}

.luxury-text {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-light));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease infinite;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* NAVIGATION */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(15, 20, 25, 1);
    backdrop-filter: blur(20px);
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.header.scrolled {
    padding: 1rem 0;
    background: rgba(15, 20, 25, 1);
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem;
}

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

.logo img {
    height: 60px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(212, 165, 116, 0.3));
}

.logo .company-name {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

.nav-menu {
    display: flex;
    gap: 1rem;
}

.nav-menu a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: transform 0.3s ease;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
}

#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.85), rgba(26, 35, 50, 0.75));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--cream);
    max-width: 1000px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 5px 30px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.gold-divider {
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 2rem;
    animation: expandWidth 1s ease-out 0.5s both;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    animation: fadeIn 1s ease-out 0.5s both;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    animation: fadeIn 1s ease-out 1s both;
}

/* LUXURY BUTTONS */
.btn {
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn-luxury {
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
    background-size: 200% 200%;
    color: var(--navy);
    box-shadow: 0 10px 40px rgba(212, 165, 116, 0.4);
    animation: shimmer 3s ease infinite;
}

.btn-luxury::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 ease;
}

.btn-luxury:hover::before {
    left: 100%;
}

.btn-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(212, 165, 116, 0.6);
}

.btn-luxury-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    box-shadow: 0 10px 40px rgba(212, 165, 116, 0.2);
}

.btn-luxury-outline:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(212, 165, 116, 0.4);
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 150px; }
}

/* CLIENT LOGOS AUTO-SCROLL */
.clients-scroll {
    background: var(--cream);
    padding: 4rem 0;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    overflow: hidden;
    position: relative;
}

.clients-scroll::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.clients-heading {
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: var(--dark-grey);
    margin-bottom: 3rem;
    font-weight: 600;
    text-transform: uppercase;
}

.clients-track {
    overflow: hidden;
    position: relative;
}

.clients-logos {
    display: flex;
    gap: 5rem;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.clients-logos:hover {
    animation-play-state: paused;
}

.clients-logos img {
    height: 100px;
    width: 180px;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.4s ease;
    filter: grayscale(30%);
}

.clients-logos img:hover {
    opacity: 1;
    transform: scale(1.15);
    filter: grayscale(0%) drop-shadow(0 5px 20px rgba(212, 165, 116, 0.3));
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

/* SECTIONS */
section {
    padding: 8rem 0;
    position: relative;
}

section:nth-child(even) {
    background: var(--white);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.section-title.center {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--dark-grey);
    margin-bottom: 4rem;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* GLASSMORPHISM CARDS */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 3rem;
    transition: all 0.4s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* ABOUT SECTION */
.about {
    background: var(--white);
}

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

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-video {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.about-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-card {
    background: linear-gradient(145deg, var(--cream), var(--white));
    padding: 2.5rem;
    text-align: center;
    border-left: 4px solid var(--gold);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(212, 165, 116, 0.2);
    border-left-width: 6px;
}

.stat-card h3 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-card p {
    color: var(--dark-grey);
    font-weight: 500;
    letter-spacing: 1px;
}

/* Continue in next part... */

/* SERVICES SECTION */
.services {
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card-link {
    text-decoration: none;
    display: block;
}

.service-card {
    background: linear-gradient(145deg, var(--white), var(--cream));
    padding: 3rem;
    border: 1px solid rgba(212, 165, 116, 0.2);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

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

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(212, 165, 116, 0.25);
    border-color: var(--gold);
}

.service-card h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.service-card .learn-more {
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.service-card:hover .learn-more {
    color: var(--gold-dark);
}

/* PROJECTS SECTION */
.projects {
    background: var(--white);
}

.project-filters {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.4s ease;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 20, 25, 0.95), transparent);
    padding: 3rem;
    transform: translateY(100%);
    transition: all 0.5s ease;
}

.project-overlay h3 {
    color: var(--gold);
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.project-card:hover img {
    transform: scale(1.15);
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

/* WHY CHOOSE US */
.why-choose {
    background: var(--cream);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.why-card {
    background: var(--white);
    padding: 3rem;
    border-left: 4px solid var(--gold);
    transition: all 0.4s ease;
    position: relative;
}

.why-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), transparent);
    transition: width 0.4s ease;
}

.why-card:hover::after {
    width: 100%;
}

.why-card:hover {
    transform: translateX(10px);
    box-shadow: -10px 10px 40px rgba(212, 165, 116, 0.2);
}

.why-card h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.why-card p {
    line-height: 1.8;
    color: var(--dark-grey);
}

/* CERTIFICATIONS */
.certifications {
    background: var(--white);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    align-items: center;
}

.cert-grid img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    filter: grayscale(50%);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.cert-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.2);
    filter: drop-shadow(0 10px 30px rgba(212, 165, 116, 0.3));
}

/* CAREER SECTION */
.career {
    background: var(--cream);
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.career-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.career-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.career-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.career-content > p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--dark-grey);
}

.career-benefits {
    list-style: none;
    margin-bottom: 3rem;
}

.career-benefits li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--dark-grey);
    font-size: 1.05rem;
}

.career-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 165, 116, 0.5);
}

/* ACTIVITIES */
.activities {
    background: var(--white);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.activity-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.activity-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 0.6s ease;
}

.activity-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 20, 25, 0.95), transparent);
    color: var(--gold);
    padding: 2rem;
    text-align: center;
    transform: translateY(100%);
    transition: all 0.4s ease;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.activity-card:hover h3 {
    transform: translateY(0);
}

.activity-card:hover img {
    transform: scale(1.15);
}

/* CONTACT SECTION */
.contact {
    padding: 5rem 0;
    background: var(--navy);
    color: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem;
    margin-bottom: 1.2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212, 165, 116, 0.3);
    color: var(--cream);
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(248, 246, 240, 0.5);
}

.contact-form button {
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.info-item {
    margin-bottom: 1.8rem;
}

.info-item h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.info-item p {
    line-height: 1.7;
    font-size: 0.95rem;
    color: var(--cream);
}

.info-item p a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item p a:hover {
    color: var(--gold-dark);
}

/* FOOTER */
.footer {
    background: #0a0d10;
    color: var(--cream);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.footer-col p,
.footer-col a {
    color: rgba(248, 246, 240, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    display: inline-block;
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
    transform: none;
}

.social-icons a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.social-icons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-no {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 165, 116, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(248, 246, 240, 0.5);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .services-grid,
    .why-grid,
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cert-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 2rem;
    }
    
    .nav-container {
        padding: 0 2rem;
    }
    
    .logo .company-name {
        font-size: 1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(15, 20, 25, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 3rem 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .about-video video {
        border-radius: 5px;
    }
    
    .info-item p {
        color: var(--cream);
    }
    
    .about-grid,
    .career-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .why-grid,
    .activities-grid,
    .projects-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

/* REVEAL ON SCROLL */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* LICENSES & REGISTRATIONS */
.licenses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.license-item h4 {
    font-size: 1.4rem;
    color: var(--navy);
    font-weight: 600;
    text-align: center;
}

/* VIDEO + TEXT GRID (About Page) */
.video-text-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.video-text-grid .about-video {
    max-width: 400px;
}

.video-text-grid .section-title {
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

/* COMPANY INFO BOX */
.company-info-box {
    max-width: 900px;
    margin: 3rem auto;
    padding: 3rem;
    background: linear-gradient(145deg, var(--cream), var(--white));
    border-radius: 10px;
    border-left: 5px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.company-info-box .company-logo {
    height: 120px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(212, 165, 116, 0.3));
}

.company-info-box .company-name-title {
    font-family: Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
}

.company-info-box .company-details {
    max-width: 700px;
    margin: 0 auto;
}

.company-info-box .detail-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(212, 165, 116, 0.3);
    text-align: left;
}

.company-info-box .detail-row:last-child {
    border-bottom: none;
}

.company-info-box .detail-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.company-info-box .detail-value {
    font-size: 1.05rem;
    color: var(--dark-grey);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .video-text-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-text-grid .about-video {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .video-text-grid .section-title {
        text-align: center;
        margin-top: 0;
    }
    
    .company-info-box {
        padding: 2rem 1.5rem;
    }
    
    .company-info-box .company-name-title {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .company-info-box .detail-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1rem 0;
    }
    
    .company-info-box .detail-label {
        font-size: 0.9rem;
    }
    
    .company-info-box .detail-value {
        font-size: 1rem;
    }
}
