/* ========================================
   SEVENFOUR VENTURES - Main Stylesheet
   ======================================== */

/* ========== CSS VARIABLES ========== */
:root {
    --primary-gold: #CAAB5B;
    --primary-gold-light: #D9BE75;
    --primary-gold-dark: #B59A4A;
    --bg-dark: #0A0A0A;
    --bg-dark-secondary: #111111;
    --bg-dark-tertiary: #1A1A1A;
    --text-white: #FFFFFF;
    --text-gray: #B0B0B0;
    --text-gray-light: #CCCCCC;
    --accent-blue: #1E88E5;
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}

/* ========== HEADER ========== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--primary-gold);
}

header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    padding: 8px 50px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
    border-bottom: 1px solid var(--primary-gold);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 65px;
    width: auto;
    max-width: 250px;
}

.logo-icon {
    width: 50px;
    height: 50px;
}

.brand-name {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--primary-gold);
    text-align: center;
}

.menu-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--primary-gold);
    font-weight: 500;
    transition: all 0.3s ease;
    margin-left: auto;
}

.menu-btn:hover {
    color: var(--primary-gold-light);
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu-icon span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary-gold);
    transition: all 0.3s ease;
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-dark-secondary);
    z-index: 2000;
    padding: 80px 40px;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2rem;
    color: var(--primary-gold);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-menu:hover {
    transform: rotate(90deg);
}

.mobile-menu nav ul {
    list-style: none;
}

.mobile-menu nav ul li {
    margin-bottom: 15px;
}

.mobile-menu nav > ul > li > a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(202, 171, 91, 0.2);
}

.mobile-menu nav ul li a:hover {
    color: var(--primary-gold);
}

/* Submenu Styles */
.has-submenu > a i {
    transition: transform 0.3s ease;
    color: var(--primary-gold);
}

.has-submenu.active > a i {
    transform: rotate(180deg);
}

.submenu {
    display: none;
    padding-left: 20px;
    margin-top: 10px;
    border-left: 2px solid var(--primary-gold);
    margin-left: 10px;
}

.submenu.active {
    display: block;
}

.submenu li {
    margin-bottom: 8px !important;
}

.submenu li a {
    font-size: 0.95rem !important;
    border-bottom: none !important;
    padding: 8px 0 !important;
    color: var(--text-gray) !important;
}

.submenu li a:hover {
    color: var(--primary-gold) !important;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    width: 100%;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.4) 0%, 
        rgba(0,0,0,0.3) 50%, 
        rgba(0,0,0,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.hero-content h2 {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--text-white);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-family: 'Lora', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--primary-gold);
    letter-spacing: 8px;
    text-transform: uppercase;
}

/* Page Hero (Inner Pages) */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 0;
}

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

.page-hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.6) 0%, 
        rgba(0,0,0,0.7) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.page-hero-content h1 {
    font-family: 'Lora', serif;
    font-size: 3rem;
    font-weight: 500;
    color: var(--text-white);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--primary-gold);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-gold-light);
}

.breadcrumb span {
    color: var(--text-gray);
}

/* ========== SECTION STYLES ========== */
.section-title {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 20px;
    font-style: italic;
}

.section-title.dark {
    color: var(--bg-dark);
}

.section-description {
    max-width: 900px;
    margin: 0 auto 50px;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.8;
}

.section-description.dark {
    color: #666;
}

/* ========== WHY CHOOSE US SECTION ========== */
.why-choose-us {
    padding: 80px 5%;
    background: var(--bg-dark);
    text-align: center;
}

.stats-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    padding: 30px 40px;
    border-right: 1px solid rgba(202, 171, 91, 0.3);
    position: relative;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-white);
    display: inline-block;
}

.stat-plus {
    font-size: 1.5rem;
    color: var(--primary-gold);
    vertical-align: top;
    margin-left: 5px;
}

.stat-label {
    display: block;
    margin-top: 10px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.stat-line {
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
    margin: 15px auto 0;
}

/* ========== BUTTONS ========== */
.cta-btn {
    display: inline-block;
    padding: 15px 35px;
    border: 1px solid var(--primary-gold);
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}

.cta-btn:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
}

.read-more-btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary-gold);
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.read-more-btn:hover {
    background: var(--primary-gold-dark);
}

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

.submit-btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--accent-blue);
    color: var(--text-white);
    border: none;
    border-radius: 3px;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #1565C0;
}

/* ========== ABOUT US SECTION ========== */
.about-us {
    padding: 80px 5%;
    background: var(--text-white);
    color: var(--bg-dark);
}

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

.about-content h2 {
    font-family: 'Lato', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.about-content p {
    color: #444;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: justify;
}

.about-image-slider {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    height: 400px;
}

.about-image-slider .slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.about-image-slider .slider-container img,
.about-image-slider .slider-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 400px !important;
    object-fit: cover !important;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: block !important;
}

.about-image-slider .slider-container img.active,
.about-image-slider .slider-image.active {
    opacity: 1;
    z-index: 1;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: var(--primary-gold);
    color: white;
}

.slider-nav.prev {
    left: 15px;
}

.slider-nav.next {
    right: 15px;
}

/* ========== SERVICES SECTION ========== */
.services {
    padding: 80px 5%;
    background: var(--bg-dark);
}

.services .section-title {
    text-align: center;
    margin-bottom: 50px;
}

/* Services Slider */
.services-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.services-slider {
    overflow: hidden !important;
    width: 100%;
}

.services-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 20px;
    transition: transform 0.5s ease;
}

.services-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 18px;
    color: #333;
}

.services-nav:hover {
    background: var(--primary-gold);
    color: white;
}

.services-nav.prev {
    left: 0;
}

.services-nav.next {
    right: 0;
}

.services-slider-wrapper .service-card,
.services-track .service-card {
    flex: 0 0 calc(33.333% - 14px) !important;
    min-width: calc(33.333% - 14px) !important;
    max-width: calc(33.333% - 14px) !important;
}

@media (max-width: 992px) {
    .services-slider-wrapper .service-card,
    .services-track .service-card {
        flex: 0 0 calc(50% - 10px) !important;
        min-width: calc(50% - 10px) !important;
        max-width: calc(50% - 10px) !important;
    }
}

@media (max-width: 576px) {
    .services-slider-wrapper .service-card,
    .services-track .service-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }
    .services-slider-wrapper {
        padding: 0 45px;
    }
}

/* Legacy Grid (for other pages) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid.center-last-row {
    justify-items: center;
}

.service-card {
    position: relative;
    height: 300px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
}

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

.service-card:hover img {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
}

.service-card-title {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 500;
}

.service-card-title a {
    color: var(--text-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.service-card-title a:hover {
    color: var(--primary-gold);
}

.service-card-title i {
    color: var(--primary-gold);
}

/* ========== WORK PROCESS SECTION ========== */
.work-process {
    padding: 80px 5%;
    background-image: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('../images/process-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.work-process .section-title {
    text-align: center;
    margin-bottom: 50px;
    font-style: italic;
}

.process-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-card {
    background: var(--text-white);
    padding: 40px 25px;
    text-align: center;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.process-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.process-icon i {
    font-size: 2.5rem;
    color: var(--primary-gold);
}

.process-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bg-dark);
    margin-bottom: 15px;
}

.process-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.7;
}

/* ========== DIRECTOR SECTION ========== */
.director {
    padding: 80px 5%;
    background: var(--text-white);
}

.director-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.director-image {
    position: relative;
}

.director-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.director-content h3 {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 5px;
    font-weight: 600;
}

.director-content h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--bg-dark);
    margin-bottom: 25px;
}

.director-content p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.director-line {
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
    margin-top: 20px;
}

/* ========== CONTACT SECTION ========== */
.contact {
    padding: 80px 5%;
    background: var(--bg-dark-secondary);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form h2 {
    font-family: 'Lato', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 30px;
    line-height: 1.3;
}

.contact-form h2 span {
    color: var(--primary-gold);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--text-white);
    border: none;
    border-radius: 3px;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #333;
    transition: box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-map {
    height: 100%;
    min-height: 400px;
    border-radius: 5px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========== FOOTER ========== */
footer {
    padding: 60px 5% 30px;
    background: var(--bg-dark);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 25px;
}

.footer-logo {
    display: block;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 45px;
    width: auto;
    max-width: 180px;
}

.footer-contact p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact p i {
    color: var(--primary-gold);
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--text-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
}

.footer-services ul {
    list-style: none;
}

.footer-services ul li {
    margin-bottom: 12px;
}

.footer-services ul li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.footer-services ul li a:hover {
    color: var(--primary-gold);
}

.footer-services ul li a::before {
    content: '»';
    color: var(--primary-gold);
}

.footer-about p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.8;
    text-align: justify;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 25px;
    border-top: 1px solid rgba(202, 171, 91, 0.2);
    text-align: center;
    color: var(--text-gray);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--primary-gold);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ========== CONTENT SECTIONS ========== */
.content-section {
    padding: 80px 5%;
}

.content-section.light {
    background: var(--text-white);
    color: var(--bg-dark);
}

.content-section.dark {
    background: var(--bg-dark);
    color: var(--text-white);
}

.content-section.gray {
    background: var(--bg-dark-secondary);
    color: var(--text-white);
}

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

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

/* Two Column Layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-col.reverse {
    direction: rtl;
}

.two-col.reverse > * {
    direction: ltr;
}

/* Content Box */
.content-box h2 {
    font-family: 'Lora', serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.content-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.content-box p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-box ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.content-box ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.content-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

/* Image Box */
.image-box {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

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

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--bg-dark-tertiary);
    padding: 40px 30px;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.feature-card.light {
    background: #f8f8f8;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.feature-card.light p {
    color: #666;
}

/* ========== SERVICE PAGE LAYOUT ========== */
.service-page-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.service-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7));
}

.service-page-hero h1 {
    position: relative;
    z-index: 1;
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    color: var(--text-white);
    letter-spacing: 3px;
}

.service-content {
    padding: 80px 5%;
    background: var(--bg-dark);
}

.service-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.service-sidebar h3 {
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 20px;
    font-weight: 600;
}

.service-nav {
    list-style: none;
}

.service-nav li {
    margin-bottom: 5px;
}

.service-nav li a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.service-nav li a::before {
    content: '●';
    margin-right: 12px;
    font-size: 0.6rem;
}

.service-nav li a:hover,
.service-nav li a.active {
    background: rgba(202, 171, 91, 0.1);
    border-left-color: var(--primary-gold);
}

.service-nav li a.active {
    color: var(--text-white);
    background: rgba(202, 171, 91, 0.15);
}

/* Service Main Content */
.service-main {
    color: var(--text-gray);
}

.service-main-image {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 30px;
    overflow: hidden;
}

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

.service-main h2 {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 20px;
    font-weight: 500;
}

.service-main p {
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
}

.service-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.service-gallery img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 5px;
}

@media (max-width: 1024px) {
    .service-layout {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: relative;
        top: 0;
    }

    .service-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .service-nav li {
        margin-bottom: 0;
    }

    .service-nav li a {
        padding: 10px 15px;
        border: 1px solid rgba(202, 171, 91, 0.3);
        border-radius: 5px;
        border-left: 1px solid rgba(202, 171, 91, 0.3);
    }

    .service-nav li a:hover,
    .service-nav li a.active {
        border-color: var(--primary-gold);
        border-left-color: var(--primary-gold);
    }
}

@media (max-width: 768px) {
    .service-page-hero h1 {
        font-size: 1.8rem;
    }

    .service-gallery {
        grid-template-columns: 1fr;
    }

    .service-gallery img {
        height: 220px;
    }

    .service-main-image img {
        height: 250px;
    }
}

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

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

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .about-container,
    .director-container,
    .contact-container,
    .two-col {
        grid-template-columns: 1fr;
    }

    .two-col.reverse {
        direction: ltr;
    }

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

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

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

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

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        grid-template-columns: auto 1fr auto;
    }

    header.scrolled {
        padding: 10px 20px;
    }

    .brand-name {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .hero-content h1 {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .hero-content h2 {
        font-size: 0.85rem;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(202, 171, 91, 0.3);
        padding: 20px;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .process-container,
    .features-grid {
        grid-template-columns: 1fr;
    }

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

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

    .director-image {
        order: -1;
    }

    .content-section {
        padding: 60px 5%;
    }
}

@media (max-width: 480px) {
    .stats-container {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .brand-name {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .page-hero {
        min-height: 300px;
    }

    .page-hero-content h1 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
}

/* ========== MOBILE HERO FIX ========== */
@media (max-width: 768px) {
    .hero {
        width: 100vw;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .hero-bg {
        width: 100vw;
        max-width: 100%;
        left: 0;
        right: 0;
    }
    
    .hero-bg img {
        width: 100vw;
        max-width: 100%;
        min-width: 100%;
    }
}
