:root {
    --gold: #c1880f;
    --gold-light: #deb614;
    --gold-bright: #d4a017;
    --text-dark: #454545;
    --text-heading: #000000;
    --cream: #FAF5E5;
    --white: #FFFFFF;
    --beige: #F0E6C5;
    --dark: #141004;
    --dark-text: #222222;
    --footer-bg: #101010;
    --bronze: #C9956B;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(193, 136, 15, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

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

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto;
}

.logo-accent {
    color: var(--gold);
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(193, 136, 15, 0.1);
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-heading);
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-text);
    position: relative;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
}

.header-cta {
    padding: 10px 24px;
    background: var(--gold);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-heading);
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    padding: 40px 30px;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu ul {
    margin-bottom: 30px;
}

.mobile-menu li {
    border-bottom: 1px solid var(--beige);
}

.mobile-menu a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-text);
}

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

.mobile-cta {
    display: inline-block;
    padding: 14px 36px;
    background: var(--gold);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
}

.heroSwiper {
    height: 100%;
}

.heroSwiper .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 16, 4, 0.7) 0%, rgba(20, 16, 4, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    color: var(--white);
}

.hero-content h1 {
    font-size: 60px;
    color: var(--white);
    margin-bottom: 20px;
    max-width: 800px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-content .btn {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    color: var(--white);
    width: 50px;
    height: 50px;
    background: rgba(193, 136, 15, 0.5);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
    background: rgba(193, 136, 15, 0.8);
}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.heroSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.heroSwiper .swiper-pagination-bullet-active {
    background: var(--gold);
}

/* ===== ABOUT INTRO ===== */
.about-intro {
    padding: 100px 0;
    background: var(--white);
}

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

.about-intro-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-intro-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.about-intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
}

/* ===== PORTFOLIO ===== */
.portfolio-section {
    padding: 100px 0;
    background: var(--cream);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 16, 4, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: var(--white);
    font-size: 22px;
}

/* ===== EXPERIENCES ===== */
.experiences-section {
    padding: 100px 0;
    background: var(--white);
}

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

.experiences-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.experiences-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.experiences-text .btn {
    margin-top: 10px;
}

.experiences-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
}

/* ===== CLIENTS ===== */
.clients-section {
    padding: 100px 0;
    background: var(--cream);
}

.clients-carousel {
    overflow: hidden;
}

.clientsSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.clientsSwiper .swiper-slide img {
    max-height: 80px;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.clientsSwiper .swiper-slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===== FOUNDER ===== */
.founder-section {
    padding: 100px 0;
    background: var(--white);
}

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

.founder-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.founder-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.founder-photo-mobile {
    display: none;
}

.founder-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #2a1f0a 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SERVICES ===== */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

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

.service-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--cream);
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(193, 136, 15, 0.15);
    border-color: var(--gold);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    font-size: 28px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
}

/* ===== STATS ===== */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #2a1f0a 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    color: var(--gold-light);
    display: inline;
}

.stat-plus,
.stat-percent {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--gold-light);
}

.stat-item p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    opacity: 0.8;
}

/* ===== CONTACT ===== */
.contact-section {
    padding: 100px 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.contact-info > p {
    font-size: 16px;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 20px;
    color: var(--gold);
    margin-top: 3px;
    width: 24px;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 3px;
}

.contact-item p {
    font-size: 15px;
    color: var(--text-dark);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

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

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--dark-text);
    transition: border-color 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--footer-bg);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--gold-light);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.newsletter-form .btn {
    padding: 12px 24px;
    font-size: 12px;
    white-space: nowrap;
}

.footer-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--gold-light);
    margin-bottom: 5px;
}

.footer-stat span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    margin: 0;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}

/* ===== QUOTE MODAL ===== */
.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.quote-modal.active {
    display: flex;
}

.quote-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.quote-modal-content {
    position: relative;
    background: var(--white);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    border-radius: 8px;
    animation: modalIn 0.3s ease;
}

.quote-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.quote-modal-close:hover {
    color: var(--gold);
}

.quote-modal-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.quote-modal-content > p {
    margin-bottom: 25px;
    color: var(--text-dark);
}

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

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.anim-slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-slide-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.anim-fade-in {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.anim-fade-in.animated {
    opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .about-intro-grid,
    .experiences-grid,
    .founder-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .founder-image {
        display: none;
    }

    .founder-photo-mobile {
        display: block;
        margin-bottom: 20px;
    }

    .founder-photo-mobile img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        border-radius: 4px;
    }
}

@media (max-width: 767px) {
    .hero-slider {
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .about-intro-text h2,
    .experiences-text h2,
    .founder-text h2,
    .contact-info h2 {
        font-size: 28px;
    }

    .cta-content h2 {
        font-size: 30px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item img {
        height: 280px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 38px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-stats {
        grid-template-columns: 1fr 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .about-intro,
    .portfolio-section,
    .experiences-section,
    .clients-section,
    .founder-section,
    .cta-banner,
    .services-section,
    .contact-section {
        padding: 70px 0;
    }

    .contact-form {
        padding: 25px;
    }

    .quote-modal-content {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        height: 65px;
    }

    .logo {
        font-size: 22px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .btn {
        padding: 12px 28px;
        font-size: 12px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-stats {
        grid-template-columns: 1fr;
    }
}

/* ===== PAGE HERO ===== */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 16, 4, 0.75) 0%, rgba(20, 16, 4, 0.5) 100%);
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.page-hero .hero-content h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 15px;
}

.page-hero .hero-content p {
    font-size: 20px;
    opacity: 0.9;
}

/* ===== ABOUT PAGE ===== */
.about-story {
    padding: 100px 0;
    background: var(--white);
}

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

.section-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
}

.section-kicker::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.about-story-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-story-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.about-story-images {
    position: relative;
    height: 500px;
}

.about-story-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.about-story-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story-img-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-story-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mission Vision Section */
.mission-vision {
    padding: 100px 0;
    background: var(--cream);
}

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

.mv-card {
    background: var(--white);
    padding: 50px 35px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(193, 136, 15, 0.15);
    border-color: var(--gold);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--white);
    border-radius: 50%;
    font-size: 32px;
    position: relative;
    z-index: 1;
}

.mv-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-heading);
}

.mv-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.mv-decoration {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: var(--cream);
    border-radius: 50%;
    opacity: 0.5;
    transition: all 0.4s ease;
}

.mv-card:hover .mv-decoration {
    background: var(--gold);
    opacity: 0.1;
    transform: scale(1.5);
}

/* About Numbers Section */
.about-numbers {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #2a1f0a 100%);
}

.about-numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.about-number-item {
    color: var(--white);
}

.about-number {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    color: var(--gold-light);
    display: inline;
}

.about-number-suffix {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--gold-light);
}

.about-number-item p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    opacity: 0.8;
}

/* Responsive for About Page */
@media (max-width: 1024px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-story-images {
        height: 400px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .about-numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .about-story {
        padding: 70px 0;
    }

    .about-story-text h2 {
        font-size: 30px;
    }

    .about-story-images {
        height: 350px;
    }

    .about-story-img-main {
        width: 85%;
        height: 300px;
    }

    .about-story-img-accent {
        width: 60%;
        height: 200px;
    }

    .mission-vision {
        padding: 70px 0;
    }

    .mv-card {
        padding: 40px 25px;
    }

    .about-numbers {
        padding: 60px 0;
    }

    .about-numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-number {
        font-size: 38px;
    }

    .about-number-suffix {
        font-size: 28px;
    }
}

/* ===== PORTFOLIO PAGE ===== */
.portfolio-page {
    padding: 100px 0;
    background: var(--white);
}

.portfolio-filter {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    margin: 5px;
    background: transparent;
    border: 2px solid var(--beige);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.portfolio-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-grid-full .portfolio-item {
    height: 350px;
}

.portfolio-info {
    color: var(--white);
}

.portfolio-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gold);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.portfolio-info h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 8px;
}

.portfolio-info p {
    font-size: 14px;
    opacity: 0.8;
}

/* ===== VIDEOS PAGE ===== */
.videos-page {
    padding: 100px 0;
    background: var(--white);
}

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

.video-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.video-card:hover .video-play-btn {
    background: var(--gold-light);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.video-info p {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.video-category {
    display: inline-block;
    padding: 3px 10px;
    background: var(--cream);
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16/9;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
}

.video-modal-player {
    width: 100%;
    height: 100%;
}

.video-modal-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== SERVICES PAGE ===== */
.services-page {
    padding: 100px 0;
    background: var(--white);
}

.services-grid-full {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card-large {
    background: var(--cream);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(193, 136, 15, 0.15);
    border-color: var(--gold);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 30px;
    text-align: center;
}

.service-icon-large {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    font-size: 24px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-content p {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
}

.service-interval {
    grid-column: 1 / -1;
    position: relative;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    margin: 20px 0;
}

.service-interval img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-interval:hover img {
    transform: scale(1.05);
}

.service-interval-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 16, 4, 0.7) 0%, rgba(193, 136, 15, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-interval-overlay span {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 1px;
}

.services-showcase {
    padding: 0;
}

.services-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.showcase-item {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 16, 4, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.showcase-overlay h3 {
    color: var(--white);
    font-size: 22px;
    font-weight: 600;
}

/* ===== TRAINING PAGE ===== */
.training-page {
    padding: 100px 0;
    background: var(--white);
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.training-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.training-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.training-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.training-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.training-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
}

.training-badge.active {
    background: var(--gold);
    color: var(--white);
}

.training-badge.completed {
    background: #28a745;
    color: var(--white);
}

.training-content {
    padding: 25px;
}

.training-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.training-content p {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.training-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.training-meta span {
    font-size: 13px;
    color: var(--text-dark);
}

.training-meta i {
    color: var(--gold);
    margin-right: 5px;
}

/* ===== CORPORATE EVENTS PAGE ===== */
.corporate-events-page {
    padding: 100px 0;
    background: var(--white);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.event-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.event-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-badge.upcoming {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    background: var(--gold);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-content {
    padding: 25px;
}

.event-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.event-type {
    display: inline-block;
    padding: 3px 10px;
    background: var(--cream);
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-date {
    font-size: 13px;
    color: var(--text-dark);
}

.event-date i {
    color: var(--gold);
    margin-right: 5px;
}

.event-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.event-content p {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.event-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.event-details span {
    font-size: 13px;
    color: var(--text-dark);
}

.event-details i {
    color: var(--gold);
    margin-right: 5px;
}

.corporate-services {
    padding: 100px 0;
    background: var(--cream);
}

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

.corp-service {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.corp-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.corp-service i {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 15px;
}

.corp-service h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.corp-service p {
    font-size: 14px;
    line-height: 1.7;
}

.corp-gallery {
    padding: 100px 0;
    background: var(--white);
}

.corp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
}

.corp-gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.corp-gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
}

.corp-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.corp-gallery-item:hover img {
    transform: scale(1.1);
}

.corp-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 16, 4, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.corp-gallery-item:hover .corp-gallery-overlay {
    opacity: 1;
}

.corp-gallery-overlay span {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
}

/* ===== CONTACT PAGE ===== */
.contact-page {
    padding: 100px 0;
    background: var(--white);
}

.form-success {
    text-align: center;
    padding: 60px 20px;
}

.form-success i {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.form-success p {
    font-size: 16px;
    color: var(--text-dark);
}

.form-error {
    padding: 12px 20px;
    background: #f8d7da;
    color: #721c24;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state i {
    font-size: 60px;
    color: var(--gold);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.empty-state p {
    font-size: 16px;
    color: var(--text-dark);
    max-width: 500px;
    margin: 0 auto 25px;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 1024px) {
    .portfolio-grid-full,
    .videos-grid,
    .corp-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid-full,
    .training-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .page-hero {
        height: 40vh;
        min-height: 300px;
        margin-top: 65px;
    }

    .page-hero .hero-content h1 {
        font-size: 32px;
    }

    .page-hero .hero-content p {
        font-size: 16px;
    }

    .portfolio-grid-full,
    .videos-grid,
    .corp-services-grid {
        grid-template-columns: 1fr;
    }

    .about-page-content,
    .portfolio-page,
    .videos-page,
    .services-page,
    .training-page,
    .corporate-events-page,
    .corporate-services,
    .contact-page {
        padding: 70px 0;
    }
}

/* ===== QUOTE MODAL ===== */
.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.quote-modal.active {
    display: flex;
}

.quote-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.quote-modal-content {
    position: relative;
    background: var(--white);
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 12px;
    box-shadow: 0 0 0 3px var(--gold), 0 20px 60px rgba(193, 136, 15, 0.4);
    animation: modalIn 0.3s ease;
}

.quote-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    transition: color 0.3s ease;
    z-index: 10;
    line-height: 1;
}

.quote-modal-close:hover {
    color: var(--gold);
}

.quote-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
}

.quote-modal-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px 0 0 12px;
}

.quote-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

.quote-modal-form-section {
    padding: 40px;
}

.quote-modal-header {
    margin-bottom: 20px;
}

.quote-modal-header h2 {
    font-size: 32px;
    margin-bottom: 8px;
    color: var(--gold);
}

.quote-modal-subtitle {
    font-size: 16px;
    color: var(--text-dark);
    margin: 0;
}

.quote-modal-copy {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--beige);
}

.quote-modal-copy p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

.quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.quote-form .form-group {
    margin-bottom: 0;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--beige);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--dark-text);
    transition: border-color 0.3s ease;
    background: var(--white);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(193, 136, 15, 0.1);
}

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

.quote-form .form-group:last-of-type {
    margin-bottom: 20px;
}

.quote-form .btn {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .quote-modal-grid {
        grid-template-columns: 1fr;
    }

    .quote-modal-image {
        border-radius: 12px 12px 0 0;
        max-height: 250px;
    }

    .quote-modal-image img {
        min-height: 250px;
    }

    .quote-modal-form-section {
        padding: 25px;
    }

    .quote-modal-header h2 {
        font-size: 24px;
    }

    .quote-form .form-row {
        grid-template-columns: 1fr;
    }
}
