/* ========================================
   AK Interior Designs - Light Theme
   Premium Light & Gold Design
   ======================================== */

:root {
    --gold: #B8942E;
    --gold-light: #D4AF37;
    --gold-dark: #96771E;
    --primary: #1B3A5C;
    --primary-light: #2A5580;
    --dark: #1A1A2E;
    --dark-2: #16213E;
    --dark-3: #0F3460;
    --dark-4: #E8EDF2;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-bg: #F0F2F5;
    --gray: #5A6577;
    --gray-light: #8D99AE;
    --border: #DEE2E6;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-hover: rgba(0, 0, 0, 0.15);
}

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

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

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary);
}

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

ul {
    list-style: none;
}

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

/* ========================================
   Containers & Utilities
   ======================================== */

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

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

.section-title h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 15px auto 0;
}

.section-title p {
    color: var(--gray);
    font-size: 1rem;
    margin-top: 20px;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-block;
    padding: 14px 40px;
    background: var(--gold);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

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

.btn-outline {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

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

/* ========================================
   Navbar
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 12px 0;
    box-shadow: 0 2px 20px var(--shadow);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary);
}

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

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    color: var(--gray);
}

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

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

.nav-links a:hover::after {
    width: 100%;
}

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

.nav-links a.active::after {
    width: 100%;
}

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

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

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

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

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

/* ========================================
   Hero Section
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(240, 242, 245, 0.88)),
                url('https://images.unsplash.com/photo-1600607687644-aac4c3eac7f4?w=1920&q=90') center/cover no-repeat;
    position: relative;
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    background: rgba(184, 148, 46, 0.08);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--primary);
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 35px;
}

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

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
}

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

.hero-stat h3 {
    font-size: 2.5rem;
    color: var(--gold);
}

.hero-stat p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ========================================
   About Section
   ======================================== */

.about {
    padding: 120px 0;
    background: var(--off-white);
}

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

.about-image {
    position: relative;
}

.about-image .main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 3px solid var(--gold);
    box-shadow: 0 20px 40px var(--shadow);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--white);
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(184, 148, 46, 0.3);
}

.experience-badge h3 {
    font-size: 2.5rem;
    line-height: 1;
    color: var(--white);
}

.experience-badge p {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-content h2 span {
    color: var(--gold);
}

.about-content .subtitle {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 500;
    display: block;
}

.about-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 35px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature i {
    color: var(--gold);
    font-size: 1.1rem;
}

.about-feature span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary);
}

/* ========================================
   Services Section
   ======================================== */

.services {
    padding: 120px 0;
    background: var(--white);
}

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

.service-card {
    background: var(--off-white);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 4px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px var(--shadow-hover);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(184, 148, 46, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--gold);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

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

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

/* ========================================
   Portfolio Section
   ======================================== */

.portfolio {
    padding: 120px 0;
    background: var(--off-white);
}

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

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 300px;
    background: var(--border);
    border-radius: 4px;
}

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 58, 92, 0.92), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.portfolio-overlay h4 {
    font-size: 1.2rem;
    color: var(--gold-light);
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

/* ========================================
   Why Us Section
   ======================================== */

.why-us {
    padding: 120px 0;
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    border-radius: 4px;
    background: var(--off-white);
}

.why-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

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

.why-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.why-card p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ========================================
   Testimonials Section
   ======================================== */

.testimonials {
    padding: 120px 0;
    background: var(--off-white);
}

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

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-left: 3px solid var(--gold);
    box-shadow: 0 5px 20px var(--shadow);
    border-radius: 4px;
}

.testimonial-card .stars {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1rem;
}

.testimonial-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--white);
    font-size: 1.2rem;
}

.testimonial-author h5 {
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
}

.testimonial-author span {
    color: var(--gray-light);
    font-size: 0.8rem;
    display: block;
}

/* ========================================
   CTA Section
   ======================================== */

.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    text-align: center;
}

.cta h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

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

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

/* ========================================
   Contact Section
   ======================================== */

.contact {
    padding: 120px 0;
    background: var(--white);
}

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

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.contact-info > p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 35px;
}

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

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

.contact-item .icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
    background: rgba(184, 148, 46, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-item .icon i {
    color: var(--gold);
    font-size: 1.1rem;
}

.contact-item h5 {
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 3px;
    color: var(--primary);
}

.contact-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

.contact-form {
    background: var(--off-white);
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 4px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: var(--primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    outline: none;
    border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 148, 46, 0.1);
}

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

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

.contact-form .btn {
    width: 100%;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    padding: 80px 0 30px;
    background: var(--primary);
    color: var(--white);
}

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

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

.footer-about .logo-icon {
    background: var(--gold);
    color: var(--white);
}

.footer-about .logo-text {
    color: var(--white);
}

.footer-about .logo-text span {
    color: var(--gold);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: var(--white);
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    outline: none;
}

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

.newsletter-form button {
    padding: 12px 20px;
    background: var(--gold);
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.footer-bottom p span {
    color: var(--gold);
}

/* ========================================
   Back to Top
   ======================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border: none;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(184, 148, 46, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

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

/* ========================================
   Sticky Call & WhatsApp Buttons
   ======================================== */

.sticky-buttons {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 998;
}

.sticky-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.sticky-btn i {
    color: var(--white);
    font-size: 1.4rem;
}

.sticky-btn.whatsapp {
    background: #25D366;
}

.sticky-btn.whatsapp:hover {
    background: #1EBE57;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.sticky-btn.call {
    background: var(--primary);
}

.sticky-btn.call:hover {
    background: var(--primary-light);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(27, 58, 92, 0.4);
}

.sticky-btn .tooltip {
    position: absolute;
    left: 65px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.sticky-btn.whatsapp {
    animation: pulse 2s infinite;
}

/* ========================================
   Animations
   ======================================== */

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* ========================================
   Page Hero (Inner Pages)
   ======================================== */

.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(240, 242, 245, 0.88)),
                url('https://images.unsplash.com/photo-1600607687644-aac4c3eac7f4?w=1920&q=90') center/cover no-repeat;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.page-hero h1 span {
    color: var(--gold);
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--gold);
    font-size: 0.9rem;
}

.breadcrumb span {
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* ========================================
   About Detailed Page
   ======================================== */

.about-detailed {
    padding: 120px 0;
    background: var(--off-white);
}

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

.about-detailed-image {
    position: relative;
}

.about-detailed-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border: 3px solid var(--gold);
    box-shadow: 0 20px 40px var(--shadow);
}

/* ========================================
   Stats Row
   ======================================== */

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 60px 0;
}

.stat-box {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    box-shadow: 0 5px 20px var(--shadow);
}

.stat-box i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--gold);
}

.stat-box p {
    color: var(--gray);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   Timeline
   ======================================== */

.timeline {
    position: relative;
    padding-left: 40px;
    border-left: 2px solid var(--gold);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -47px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
}

.timeline-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.timeline-item .year {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.timeline-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* ========================================
   Service Detail Sections
   ======================================== */

.service-detail {
    padding: 80px 0;
    background: var(--white);
}

.service-detail:nth-child(even) {
    background: var(--off-white);
}

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

.service-detail.reverse .service-detail-img {
    order: 2;
}

.service-detail.reverse .service-detail-content {
    order: 1;
}

.service-detail-img {
    overflow: hidden;
    border-radius: 4px;
}

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

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

.service-detail-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-detail-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail-content ul {
    padding-left: 0;
}

.service-detail-content ul li {
    color: var(--gray);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.service-detail-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--gold);
}

.service-detail-content .btn {
    margin-top: 10px;
}

/* ========================================
   Portfolio Filters & Full Grid
   ======================================== */

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--gray);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

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

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

.portfolio-full-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 350px;
    background: var(--border);
    border-radius: 4px;
}

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

.portfolio-full-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 58, 92, 0.92), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.portfolio-full-overlay h4 {
    font-size: 1.2rem;
    color: var(--gold-light);
}

.portfolio-full-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

/* ========================================
   Contact Page - Map & Cards
   ======================================== */

.contact-map {
    padding: 0 0 60px;
    background: var(--white);
}

.map-container {
    width: 100%;
    height: 400px;
    border: 3px solid var(--gold);
    border-radius: 4px;
}

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

.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.contact-card {
    background: var(--off-white);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    border-radius: 4px;
}

.contact-card:hover {
    border-color: var(--gold);
    box-shadow: 0 5px 20px var(--shadow-hover);
}

.contact-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
}

.contact-card h5 {
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 5px;
    color: var(--primary);
}

.contact-card p {
    color: var(--gray);
    font-size: 0.85rem;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

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

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

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

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

    .about-detailed-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px var(--shadow-hover);
    }

    .nav-links.active {
        right: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .hero-stat h3 {
        font-size: 2rem;
    }

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

    .section-title h2 {
        font-size: 2rem;
    }

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

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

    .hero-buttons {
        flex-direction: column;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .service-detail.reverse .service-detail-img {
        order: 1;
    }

    .service-detail.reverse .service-detail-content {
        order: 2;
    }

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

    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .services-grid,
    .why-us-grid,
    .testimonial-grid,
    .portfolio-full-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

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

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

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