/* ========================================
   CRAZE CONSTRUCTIONS — Global Styles
   Matching Craze Enterprise vibe
   ======================================== */

:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --gold: #F8B500;
    --gold-light: #F9D548;
    --gold-dark: #D99E00;
    --gray-100: #f5f7fa;
    --gray-200: #e8ebef;
    --gray-300: #ccc;
    --gray-500: #777;
    --gray-700: #333;
    --gray-800: #1a1a1a;
    --gray-900: #111;
    --gradient: linear-gradient(135deg, #667eea, #764ba2);
    --radius: 20px;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

body.nav-open {
    overflow: hidden;
}

ul {
    list-style: none;
}

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

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

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

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--white);
    color: var(--black);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.35);
}

.btn-secondary {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 4px 20px rgba(248, 181, 0, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(248, 181, 0, 0.5);
    background: var(--gold-light);
}

/* ========================================
   SECTION COMMON
   ======================================== */
.section-subtitle {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 12px;
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
}

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

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

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

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

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

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

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

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

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

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

/* ========================================
   HERO
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--black);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.glass-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(248, 181, 0, 0.08);
    backdrop-filter: blur(60px);
    transition: transform 0.3s ease-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    background: rgba(102, 126, 234, 0.1);
}

.shape-2 {
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: -50px;
    background: rgba(248, 181, 0, 0.08);
}

.shape-3 {
    width: 250px;
    height: 250px;
    top: 40%;
    left: 60%;
    background: rgba(118, 75, 162, 0.08);
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 0 24px;
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 550px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

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

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

.service-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 40px 30px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    color: inherit;
    cursor: pointer;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
    color: var(--gold);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

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

/* ========================================
   PROCESS
   ======================================== */
.process {
    padding: 120px 0;
    background: var(--gray-100);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 40px 24px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ========================================
   PROJECTS PREVIEW
   ======================================== */
.projects-preview {
    padding: 120px 0;
    background: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.project-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: block;
    opacity: 0;
    transform: translateY(30px);
}

.project-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.project-img {
    position: relative;
    overflow: hidden;
    height: 260px;
}

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

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

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

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

.project-info {
    padding: 24px;
}

.project-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.project-info p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

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

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-us {
    padding: 120px 0;
    background: var(--gray-900);
}

.why-us .section-subtitle {
    color: var(--gold);
}

.why-us .section-title {
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 50px 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.why-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    background: rgba(248, 181, 0, 0.03);
}

.why-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 14px;
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    padding: 120px 0;
    background: var(--white);
}

.testimonials-slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-card {
    display: none;
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 50px 40px;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.testimonial-card.active {
    display: block;
}

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

.testimonial-quote {
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
    font-family: Georgia, serif;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-author h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--gold);
    border-color: var(--gold);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.cta-box {
    text-align: center;
    background: var(--black);
    border-radius: var(--radius);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(248, 181, 0, 0.06);
    top: -200px;
    right: -100px;
}

.cta-box h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--gray-900);
    padding: 80px 0 30px;
}

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

.footer-logo {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

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

.footer-col > p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-col ul li,
.footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    text-align: center;
}

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

.footer-bottom a {
    color: var(--gold);
    transition: var(--transition);
}

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

/* ========================================
   PAGE HERO (Inner Pages)
   ======================================== */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--black);
    overflow: hidden;
}

.page-hero-content {
    text-align: center;
    z-index: 2;
    padding: 120px 24px 60px;
}

.page-hero .hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.page-hero .hero-desc {
    max-width: 450px;
}

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

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

.story-content p {
    color: var(--gray-500);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.story-content strong {
    color: var(--gray-900);
}

.story-image {
    border-radius: var(--radius);
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

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

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

.mv-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 50px 36px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.mv-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    color: var(--gold);
}

.mv-icon svg {
    width: 100%;
    height: 100%;
}

.mv-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.mv-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* Stats Bar */
.stats-bar {
    padding: 80px 0;
    background: var(--gray-900);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* What Sets Us Apart */
.apart-section {
    padding: 120px 0;
    background: var(--white);
}

.apart-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.apart-card {
    padding: 40px 30px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: var(--transition);
}

.apart-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.apart-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 14px;
    line-height: 1;
}

.apart-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.apart-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ========================================
   PROJECTS LIST PAGE
   ======================================== */
.projects-list {
    padding: 120px 0;
    background: var(--white);
}

.projects-list-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.project-list-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    color: inherit;
}

.project-list-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.project-list-img {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 300px;
}

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

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

.project-list-card:hover .project-overlay {
    opacity: 1;
}

.project-list-info {
    padding: 40px 40px 40px 0;
}

.project-tag {
    display: inline-block;
    background: rgba(248, 181, 0, 0.1);
    color: var(--gold-dark);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.project-list-info h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.project-list-info p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.8;
}

/* ========================================
   PROJECT DETAIL PAGE
   ======================================== */
.project-detail-section {
    padding: 120px 0 60px;
    background: var(--white);
}

.project-detail-hero {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 60px;
}

.project-detail-hero img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
}

.project-detail-info {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.project-detail-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.project-detail-content p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 16px;
}

.project-detail-specs {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 40px;
}

.project-detail-specs h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.spec-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.spec-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spec-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900);
}

/* Gallery */
.project-gallery {
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    height: 250px;
}

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

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

/* Project Navigation */
.project-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 40px 0;
    border-top: 1px solid var(--gray-200);
}

/* ========================================
   SERVICE DETAIL PAGES
   ======================================== */
.service-detail {
    padding: 120px 0;
    background: var(--white);
}

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

.service-detail-content p {
    color: var(--gray-500);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-detail-image {
    border-radius: var(--radius);
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.service-includes {
    padding: 120px 0;
    background: var(--gray-100);
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.include-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.include-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.include-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 14px;
}

.include-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.include-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

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

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

.contact-info h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.3;
}

.contact-info > p {
    color: var(--gray-500);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.info-icon svg {
    width: 100%;
    height: 100%;
}

.info-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2px;
}

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

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: var(--gray-700);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.social-link svg {
    width: 100%;
    height: 100%;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 50px 40px;
}

.contact-form h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 30px;
}

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

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: var(--gray-900);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.15);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23333'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* ========================================
   BLOG LIST PAGE
   ======================================== */
.blog-section {
    padding: 120px 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.blog-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.blog-img {
    height: 220px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 28px;
}

.blog-tag {
    display: inline-block;
    background: rgba(248, 181, 0, 0.1);
    color: var(--gold-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.blog-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--gray-300);
    font-weight: 500;
}

/* ========================================
   BLOG DETAIL PAGE
   ======================================== */
.blog-detail {
    padding: 120px 0;
    background: var(--white);
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
    align-items: start;
}

.blog-article {
    max-width: 100%;
}

.blog-feature-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 40px;
}

.blog-article h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin: 36px 0 16px;
    line-height: 1.3;
}

.blog-article h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 28px 0 12px;
}

.blog-article p {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.9;
    margin-bottom: 16px;
}

.blog-article ul {
    margin: 0 0 20px 20px;
    list-style: disc;
}

.blog-article ul li {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 8px;
}

.blog-article strong {
    color: var(--gray-900);
}

/* Blog Table */
.blog-table {
    overflow-x: auto;
    margin: 20px 0 28px;
}

.blog-table table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
}

.blog-table th,
.blog-table td {
    padding: 14px 20px;
    text-align: left;
    font-size: 0.95rem;
}

.blog-table th {
    background: var(--gray-900);
    color: var(--white);
    font-weight: 700;
}

.blog-table td {
    background: var(--gray-100);
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
}

.blog-table tr:last-child td {
    font-weight: 700;
    color: var(--gray-900);
}

/* Blog Inline CTA */
.blog-cta-inline {
    background: var(--gray-100);
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 36px;
    margin: 40px 0;
}

.blog-cta-inline h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 8px;
}

.blog-cta-inline p {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 20px;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-box {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 24px;
}

.sidebar-box h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-box ul {
    list-style: none;
}

.sidebar-box ul li {
    margin-bottom: 10px;
}

.sidebar-box ul li a {
    font-size: 0.9rem;
    color: var(--gray-500);
    transition: var(--transition);
}

.sidebar-box ul li a:hover {
    color: var(--gold);
}

.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-tags span {
    display: inline-block;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* ========================================
   FLOATING WHATSAPP
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 12px 20px 12px 16px;
    border-radius: 50px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
    flex-shrink: 0;
}

.whatsapp-float span {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        padding: 14px;
        border-radius: 50%;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.services-grid [data-animate]:nth-child(2),
.why-grid [data-animate]:nth-child(2),
.projects-grid [data-animate]:nth-child(2),
.process-timeline [data-animate]:nth-child(2) {
    transition-delay: 0.1s;
}

.services-grid [data-animate]:nth-child(3),
.why-grid [data-animate]:nth-child(3),
.projects-grid [data-animate]:nth-child(3),
.process-timeline [data-animate]:nth-child(3) {
    transition-delay: 0.2s;
}

.services-grid [data-animate]:nth-child(4),
.why-grid [data-animate]:nth-child(4),
.process-timeline [data-animate]:nth-child(4) {
    transition-delay: 0.3s;
}

/* ========================================
   RESPONSIVE — TABLET (max 768px)
   ======================================== */
@media (max-width: 768px) {
    /* Navigation */
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition);
    }

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

    .nav-links a {
        font-size: 1.1rem;
    }

    /* Hero */
    .hero {
        min-height: 90vh;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-scroll {
        display: none;
    }

    /* Page Hero (inner pages) */
    .page-hero {
        min-height: 40vh;
    }

    .page-hero-content {
        padding: 100px 20px 40px;
    }

    .page-hero .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    /* Sections — reduce padding */
    .services,
    .process,
    .projects-preview,
    .why-us,
    .testimonials,
    .about-story,
    .mission-vision,
    .apart-section,
    .contact-section,
    .service-detail,
    .service-includes,
    .projects-list {
        padding: 80px 0;
    }

    .project-detail-section {
        padding: 80px 0 40px;
    }

    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        margin-bottom: 40px;
    }

    /* Grids — single column */
    .services-grid,
    .projects-grid,
    .apart-grid,
    .includes-grid,
    .mv-grid {
        grid-template-columns: 1fr;
    }

    .story-grid,
    .contact-grid,
    .service-detail-grid,
    .project-detail-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Why Us grid — 2 columns on tablet */
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Projects */
    .project-list-card {
        grid-template-columns: 1fr;
    }

    .project-list-img {
        min-height: 220px;
    }

    .project-list-info {
        padding: 24px;
    }

    .project-list-info h3 {
        font-size: 1.3rem;
    }

    .project-detail-hero img {
        height: 260px;
    }

    .project-detail-info {
        margin-bottom: 50px;
    }

    .project-detail-specs {
        padding: 30px;
    }

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

    .gallery-item {
        height: 180px;
    }

    .project-nav {
        flex-direction: column;
        align-items: center;
    }

    /* Process */
    .process-timeline {
        grid-template-columns: 1fr 1fr;
    }

    .step-number {
        font-size: 2.5rem;
    }

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

    .stat-number {
        font-size: 2.2rem;
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
    }

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

    .blog-sidebar {
        position: static;
    }

    .blog-feature-img {
        height: 250px;
    }

    .blog-detail,
    .blog-section {
        padding: 80px 0;
    }

    /* Contact */
    .contact-form-wrap {
        padding: 30px 24px;
    }

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

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

    /* Testimonials */
    .testimonial-card {
        padding: 30px 24px;
    }

    .testimonial-quote {
        font-size: 3rem;
    }

    /* CTA */
    .cta-section {
        padding: 60px 0;
    }

    .cta-box {
        padding: 50px 24px;
    }

    .cta-box h2 {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    /* Footer */
    .footer {
        padding: 60px 0 24px;
    }

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

    /* Cards — reduce padding */
    .service-card,
    .include-card,
    .apart-card {
        padding: 30px 24px;
    }

    .why-card {
        padding: 36px 20px;
    }

    .why-number {
        font-size: 2.2rem;
    }

    .mv-card {
        padding: 36px 24px;
    }

    /* Buttons */
    .btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    /* WhatsApp float adjust */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
}

/* ========================================
   RESPONSIVE — MOBILE (max 480px)
   ======================================== */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    /* Hero */
    .hero {
        min-height: 85vh;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .hero-title {
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .hero-desc {
        font-size: 0.9rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    /* Page Hero */
    .page-hero {
        min-height: 35vh;
    }

    .page-hero-content {
        padding: 90px 16px 30px;
    }

    .page-hero .hero-title {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
    }

    .page-hero .hero-desc {
        font-size: 0.85rem;
    }

    /* Sections — tighter padding */
    .services,
    .process,
    .projects-preview,
    .why-us,
    .testimonials,
    .about-story,
    .mission-vision,
    .apart-section,
    .contact-section,
    .service-detail,
    .service-includes,
    .projects-list {
        padding: 60px 0;
    }

    .project-detail-section {
        padding: 60px 0 30px;
    }

    .section-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
        margin-bottom: 30px;
    }

    /* All grids single column */
    .process-timeline,
    .why-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

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

    /* Projects */
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-img {
        height: 200px;
    }

    .project-list-img {
        min-height: 200px;
    }

    .project-list-info h3 {
        font-size: 1.2rem;
    }

    .project-list-info p {
        font-size: 0.9rem;
    }

    .project-detail-hero {
        margin-bottom: 30px;
    }

    .project-detail-hero img {
        height: 200px;
    }

    .project-detail-content h2 {
        font-size: 1.5rem;
    }

    .project-detail-specs {
        padding: 24px;
    }

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

    .gallery-item {
        height: 200px;
    }

    /* Story image */
    .story-image img {
        height: 280px;
    }

    /* Service detail image */
    .service-detail-image img {
        height: 250px;
    }

    /* Why us */
    .why-card {
        padding: 30px 20px;
    }

    .why-number {
        font-size: 2rem;
    }

    /* Stats */
    .stats-bar {
        padding: 50px 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 24px 20px;
    }

    .testimonial-quote {
        font-size: 2.5rem;
        margin-bottom: 4px;
    }

    .testimonial-card > p {
        font-size: 0.9rem;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }

    /* CTA */
    .cta-section {
        padding: 40px 0;
    }

    .cta-box {
        padding: 40px 20px;
        border-radius: 16px;
    }

    .cta-box h2 {
        font-size: 1.3rem;
    }

    .cta-box p {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    /* Contact */
    .contact-info h2 {
        font-size: 1.5rem;
    }

    .contact-form-wrap {
        padding: 24px 18px;
    }

    .contact-form h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        margin-bottom: 30px;
    }

    .footer-logo {
        font-size: 1.1rem;
    }

    .footer-col h4 {
        margin-bottom: 14px;
        font-size: 0.9rem;
    }

    /* Buttons full width on small screens */
    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    /* Navbar */
    .logo {
        font-size: 1.1rem;
    }

    .navbar.scrolled {
        padding: 10px 0;
    }

    /* WhatsApp */
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* ========================================
   RESPONSIVE — VERY SMALL (max 360px)
   ======================================== */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .page-hero .hero-title {
        font-size: 1.6rem;
    }

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

    .service-card,
    .include-card,
    .apart-card,
    .mv-card {
        padding: 24px 16px;
    }

    .project-detail-specs {
        padding: 20px;
    }

    .cta-box {
        padding: 30px 16px;
    }
}
