/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-dark: #0D0D0D;
    --card-bg: #1A1A1A;
    --text-light: #FFFFFF;
    --text-muted: #A0A0A0;
    --gold: #D4A017;
    --gold-hover: #C28F10;
    --border-color: rgba(212, 160, 23, 0.3);
    --border-radius: 8px;
    --transition: 0.3s ease-in-out;
}

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

body.dark-theme {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

.section-padding {
    padding: 80px 0;
}

.gold-text {
    color: var(--gold);
}

.gold-icon {
    color: var(--gold);
}

.gold-subtitle {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: var(--border-radius);
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--gold);
    color: #000;
    border: 2px solid var(--gold);
}

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

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

.btn-outline:hover {
    background-color: rgba(212, 160, 23, 0.1);
}

.btn i {
    margin-left: 8px;
}

/* Header */
.header {
    background-color: rgba(13, 13, 13, 0.95);
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 60px;
    object-fit: contain;
}

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

.nav-links a {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.header-phone-btn {
    background-color: var(--gold);
    color: #000;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-phone-btn:hover {
    background-color: var(--gold-hover);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5; /* Darken the image slightly */
    object-position: right center;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.8) 40%, rgba(13,13,13,0.2) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 600px;
}

.sub-heading {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 16px;
    color: #CCC;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.badge i {
    font-size: 24px;
}

.badge span {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

/* Split Layouts (About & Services, Why Us) */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* About Section */
.about-content h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.stats-row {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item i {
    font-size: 32px;
}

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

.stat-item strong {
    font-size: 24px;
    line-height: 1;
}

.stat-item span {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #333;
}

.service-card {
    text-align: center;
    padding: 20px 10px;
    border: 1px solid transparent;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.service-card:hover {
    border-color: var(--gold);
    background-color: rgba(212, 160, 23, 0.05);
    border-radius: var(--border-radius);
    transform: translateY(-5px);
}

.service-card .lg-icon {
    font-size: 36px;
}

.service-card span {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
}

/* Featured Projects - Folders */
.projects-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

.folder-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    row-gap: 60px;
    margin-top: 20px;
}

.folder-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.folder-card {
    position: relative;
    width: 200px;
    height: 140px;
    background-color: #222;
    border-radius: 0 10px 10px 10px;
    margin-top: 15px;
    cursor: pointer;
    box-shadow: 0 15px 25px rgba(0,0,0,0.6);
    transition: var(--transition);
}

.folder-card:hover {
    transform: translateY(-8px);
}

/* Folder Tab */
.folder-card::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    width: 65px;
    height: 14px;
    background-color: #222;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* Photo */
.folder-photo {
    position: absolute;
    top: -20px;
    right: 25px;
    width: 120px;
    height: 110px;
    border-radius: 4px;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transform: rotate(6deg);
    z-index: 1;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.folder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.folder-card:hover .folder-photo {
    transform: translateY(-30px) rotate(-2deg) scale(1.15);
    z-index: 3;
    box-shadow: 0 15px 30px rgba(0,0,0,0.8);
}

/* Front Flap */
.folder-flap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 115px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
    border-radius: 0 0 10px 10px;
    z-index: 10;
    box-shadow: inset 0 2px 10px rgba(255,255,255,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Stacked Photos Logic */
.folder-card .photo-1 {
    transform: rotate(-8deg) translateX(-15px) translateY(5px);
    z-index: 1;
}
.folder-card .photo-2 {
    transform: rotate(2deg) translateX(0px) translateY(-5px);
    z-index: 2;
}
.folder-card .photo-3 {
    transform: rotate(12deg) translateX(15px) translateY(5px);
    z-index: 3;
}

.folder-card:hover .photo-1 {
    transform: translateY(-35px) rotate(-15deg) translateX(-25px) scale(1.1);
    z-index: 4;
}
.folder-card:hover .photo-2 {
    transform: translateY(-45px) rotate(0deg) scale(1.15);
    z-index: 5;
}
.folder-card:hover .photo-3 {
    transform: translateY(-30px) rotate(15deg) translateX(25px) scale(1.1);
    z-index: 6;
}

.folder-flap i {
    color: rgba(0,0,0,0.15);
    font-size: 40px;
}

/* Folder Expand Icon (Pseudo-element) */
.folder-card::after {
    content: '\f00e'; /* FontAwesome Magnifying Glass Plus */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: var(--bg-dark);
    color: var(--gold);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.8);
    border: 1px solid #333;
    opacity: 0;
    transition: var(--transition);
    z-index: 15;
}

.folder-card:hover::after {
    opacity: 1;
    transform: scale(1.1);
}

/* Gallery Modal Mockup */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
}

.modal-content {
    background-color: var(--bg-dark);
    margin: 5% auto;
    padding: 40px;
    border: 1px solid var(--gold);
    border-radius: var(--border-radius);
    width: 85%;
    max-width: 1000px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.9);
    animation: modalFadeIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalFadeIn {
    from {opacity: 0; transform: translateY(-30px) scale(0.95);}
    to {opacity: 1; transform: translateY(0) scale(1);}
}

.close-modal {
    color: var(--gold);
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: #fff;
    transform: scale(1.1);
}

.modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.modal-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #333;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.modal-grid img:hover {
    border-color: var(--gold);
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 160, 23, 0.2);
}

.folder-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    color: var(--text-light);
    max-width: 200px;
    line-height: 1.4;
    transition: var(--transition);
}

.folder-wrapper:hover .folder-title {
    color: var(--gold);
}

/* Why Choose Us & Merch */
.why-us-list ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.why-us-list li {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.why-us-list i {
    font-size: 20px;
}

.merch-display {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
}

.merch-display img {
    max-width: 180px;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius);
}

/* CTA Banner */
.cta-banner {
    background-color: var(--card-bg);
    border: 1px solid var(--gold);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--gold);
}

.cta-subtitle {
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.cta-phone {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.cta-btn {
    padding: 15px 40px;
    font-size: 16px;
}

.cta-email {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: var(--card-bg);
    padding: 60px 0 20px;
    border-top: 1px solid #333;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 80px;
    object-fit: contain;
}

.footer h4 {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

.footer-serving p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.8;
}

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

.social-icons a {
    width: 36px;
    height: 36px;
    background-color: #222;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--gold);
    color: #000;
}

.footer-languages ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--text-muted);
    font-size: 13px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #777;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-row {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cta-banner {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .cta-contact {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .header-phone-btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-badges {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .projects-row {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .merch-display {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
