/* ============================================
   GREYWOOD INTERIORS - Main Stylesheet
   Matching greywood.co.in design
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --color-primary: #1a1a2e;
    --color-secondary: #16213e;
    --color-accent: #073842;
    --accent-color: #073842;
    --color-accent-hover: #0a4d5b;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-lighter: #999999;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-bg-light: #f5f5f5;
    --color-bg-dark: #1a1a2e;
    --color-bg-footer: #1b1b1b;
    --color-border: #e0e0e0;
    --color-border-light: rgba(255, 255, 255, 0.1);
    --color-overlay: rgba(0, 0, 0, 0.5);
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    --font-heading: 'Roboto Slab', serif;
    --font-accent: 'Amita', cursive;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --container-width: 1140px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-hover);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

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

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: var(--header-height);
}

.header-logo {
    flex: 0 0 auto;
}

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

.header-spacer {
    flex: 1;
}

.header-nav {
    flex: 0 0 auto;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-item>a {
    display: block;
    padding: 28px 18px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    text-transform: capitalize;
    position: relative;
    transition: var(--transition);
}

.nav-item>a::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-item>a:hover::after,
.nav-item.active>a::after {
    transform: scaleX(1);
}

.nav-item>a:hover {
    color: var(--color-accent);
}

.nav-item.active>a {
    color: var(--color-accent);
}

/* Submenus */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--color-white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-top: 3px solid var(--color-accent);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-item.has-submenu:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    border-bottom: 1px solid var(--color-border);
}

.submenu li:last-child {
    border-bottom: none;
}

.submenu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-text);
    transition: var(--transition);
}

.submenu a:hover {
    background: var(--color-accent);
    color: var(--color-white);
    padding-left: 25px;
}

.submenu .has-submenu {
    position: relative;
}

.submenu-right {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 200px;
    background: var(--color-white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-top: 3px solid var(--color-accent);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.submenu .has-submenu:hover>.submenu-right {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* CTA Button */
.header-cta {
    flex: 0 0 auto;
    margin-left: 20px;
}

.cta-btn {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-white) !important;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid var(--color-accent);
}

.cta-btn:hover {
    background: transparent;
    color: var(--color-accent) !important;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 10001;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

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

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

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

/* Mobile Nav */
.mobile-nav {
    display: none;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.mobile-nav.open {
    max-height: 600px;
    overflow-y: auto;
}

.mobile-menu {
    padding: 10px 20px;
}

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

.mobile-menu a {
    display: block;
    padding: 14px 0;
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--color-text);
}

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

.mobile-submenu {
    padding-left: 20px;
    display: none;
}

.mobile-submenu.open {
    display: block;
}

.mobile-cta {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-white) !important;
    padding: 10px 24px !important;
    border-radius: 4px;
    margin: 10px 0;
    text-align: center;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    margin-top: var(--header-height);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    height: 85vh;
    min-height: 500px;
    max-height: 800px;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 8s ease;
}

.slide.active .slide-bg {
    transform: scale(1.05);
}

/* Slide background images are set via inline styles in HTML for reliability */

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
    width: 80%;
    max-width: 900px;
}

.slide-heading {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.slide-description {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
}

.slide-btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--color-accent);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    transition: var(--transition);
    border: 2px solid var(--color-accent);
}

.slide-btn:hover {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

/* Slider Navigation */
.slider-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: none;
    color: var(--color-white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
    border-radius: 50%;
}

.slider-nav button:hover {
    background: var(--color-accent);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--color-accent);
    transform: scale(1.2);
}

/* Slide animations */
.slide.active .slide-heading {
    animation: fadeInUp 0.8s ease forwards;
}

.slide.active .slide-description {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.slide.active .slide-btn {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   DREAM HOUSE SECTION
   ============================================ */
.dream-house-section {
    padding: 80px 0 40px;
    background: var(--color-white);
}

.section-header-row {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
}

.section-header-left {
    flex: 1;
}

.section-header-left h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.3;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--color-accent);
    margin-top: 20px;
}

.section-header-right {
    flex: 1;
}

.services-list-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 30px 40px;
    background: linear-gradient(135deg, #f8f8f8 0%, #f0ede8 100%);
    border-radius: 8px;
}

.services-col p {
    font-family: var(--font-secondary);
    font-size: 15px;
    color: var(--color-text);
    padding: 8px 0;
    line-height: 1.5;
}

.services-col p strong {
    color: var(--color-accent);
    font-size: 18px;
    margin-right: 5px;
}

/* ============================================
   INFLUENTIAL SECTION
   ============================================ */
.influential-section {
    padding: 60px 0;
}

.influential-row {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.influential-left {
    flex: 1;
}

.influential-label {
    font-family: var(--font-accent);
    font-size: 42px;
    color: var(--color-accent);
    margin-bottom: 20px;
    font-weight: 400;
}

.influential-text {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.influential-right {
    flex: 1;
    background: linear-gradient(135deg, var(--color-accent) 0%, #0a4d5b 50%, #05242b 100%);
    padding: 50px 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.influential-right h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
    line-height: 1.4;
}

/* ============================================
   SERVICE CARDS SECTION
   ============================================ */
.service-cards-section {
    padding: 60px 0 80px;
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

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

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0ede8, #e8e4db);
    border-radius: 50%;
    transition: var(--transition);
}

.card-icon i {
    font-size: 28px;
    color: var(--color-accent);
    transition: var(--transition);
}

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

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

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-link {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.card-link:hover {
    border-bottom-color: var(--color-accent);
}

/* ============================================
   ABODE SECTION
   ============================================ */
.abode-section {
    padding: 60px 0 20px;
}

.abode-header {
    max-width: 600px;
}

.abode-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.3;
}

/* ============================================
   DESCRIPTION SECTION
   ============================================ */
.description-section {
    padding: 20px 0 60px;
}

.description-section p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.description-section strong {
    color: var(--color-text);
}

/* ============================================
   CURVE DIVIDER
   ============================================ */
.curve-divider-section {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.curve-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2d5016 0%, #3a6b1e 50%, #4a8528 100%);
    opacity: 0.85;
}

.curve-top,
.curve-bottom {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    height: auto;
}

.curve-top {
    top: -1px;
    transform: rotate(180deg);
}

.curve-top path,
.curve-bottom path {
    fill: var(--color-white);
}

.curve-bottom {
    bottom: -1px;
}

/* ============================================
   MISSION VISION SECTION
   ============================================ */
.mission-vision-section {
    padding: 80px 0;
}

.mv-row {
    display: flex;
    gap: 50px;
    align-items: stretch;
}

.mv-left {
    flex: 1;
}

.mv-right {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    min-height: 500px;
}

.mv-image {
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?w=800&q=80') center/cover no-repeat;
    border-radius: 8px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.mv-intro {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-left: 4px solid var(--color-accent);
    border-radius: 4px;
}

/* Tabs */
.tabs-container {
    margin-top: 20px;
}

.tab-nav {
    display: flex;
    border-bottom: 2px solid var(--color-border);
    margin-bottom: 0;
}

.tab-item {
    padding: 14px 30px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-light);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tab-item:hover {
    color: var(--color-accent);
}

.tab-item.active {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

.tab-content {
    padding: 25px 0;
}

.tab-pane {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.tab-pane.active {
    display: block;
}

.tab-pane p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.tab-pane ul {
    padding-left: 0;
}

.tab-pane ul li {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.tab-pane ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-size: 18px;
    font-weight: bold;
}

.tab-pane ul li strong {
    color: var(--color-text);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    padding: 80px 0;
    background: var(--color-bg-light);
}

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

.process-item {
    text-align: center;
    padding: 30px 20px;
}

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

.process-icon img {
    max-width: 70px;
    max-height: 70px;
    object-fit: contain;
}

.process-icon i {
    font-size: 36px;
    color: var(--color-accent);
}

.process-divider-line {
    width: 60px;
    height: 2px;
    background: var(--color-accent);
    margin: 0 auto 20px;
    transition: width 0.3s ease;
}

.process-item:hover .process-divider-line {
    width: 100px;
}

.process-item h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 15px;
    line-height: 1.4;
}

.process-item p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-heading {
    font-family: var(--font-accent);
    font-size: 36px;
    font-weight: 400;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 20px;
}

.testimonials-desc {
    font-size: 15px;
    color: var(--color-text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

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

.review-card {
    padding: 30px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 60px;
    font-family: serif;
    color: var(--color-accent);
    opacity: 0.15;
    line-height: 1;
}

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

.stars {
    margin-bottom: 15px;
}

.stars i {
    color: #ffc107;
    font-size: 16px;
    margin-right: 2px;
}

.review-text {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
}

.review-author {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-accent);
}

/* ============================================
   AWARDS SECTION
   ============================================ */
.awards-section {
    padding: 80px 0;
    background: var(--color-bg-light);
}

.awards-row {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.awards-left {
    flex: 0 0 40%;
}

.awards-left h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.3;
}

.awards-italic {
    font-family: 'Archivo', sans-serif;
    font-style: oblique;
    color: var(--color-accent);
}

.awards-right {
    flex: 1;
}

.awards-intro {
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 35px;
    line-height: 1.8;
}

.award-item {
    display: grid;
    grid-template-columns: 1fr 1.5fr auto;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

.award-item:hover {
    padding-left: 10px;
    border-bottom-color: var(--color-accent);
}

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

.award-name h4 {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.award-desc p {
    font-size: 14px;
    color: var(--color-text-light);
}

.award-year p {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-accent);
}

/* ============================================
   GREYWOOD CTA SECTION
   ============================================ */
.greywood-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    text-align: center;
}

.greywood-cta-section h2 {
    font-family: var(--font-accent);
    font-size: 48px;
    font-weight: 400;
    color: var(--color-accent);
    letter-spacing: 2px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-white);
    color: var(--color-text-light);
    border-top: 1px solid var(--color-border);
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.3fr;
    gap: 40px;
}

.footer-col h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

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

.footer-logo-img {
    max-width: 180px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--color-text-light);
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-light);
    border-radius: 50%;
    color: var(--color-text-light);
    font-size: 15px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-3px);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

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

.links-col ul li a {
    font-size: 14px;
    color: var(--color-text-light);
    transition: var(--transition);
    padding-left: 0;
    position: relative;
}

.links-col ul li a::before {
    content: '›';
    margin-right: 8px;
    color: var(--color-accent);
    font-size: 16px;
    font-weight: bold;
}

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

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

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-light);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 16px;
    color: var(--color-accent);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

.contact-info span,
.contact-info a {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.contact-info a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--color-text-lighter);
}

/* ============================================
   NEW CUSTOM BOTTOM SECTIONS
   ============================================ */

.get-in-touch-header {
    background: #fdfdfd;
    background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png');
    padding: 80px 0 40px;
}

.get-in-touch-content {
    position: relative;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 40px;
}

.get-in-touch-content .top-link {
    position: absolute;
    top: 0;
    right: 0;
    color: #1b3a3a;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #1b3a3a;
    padding-bottom: 2px;
    font-size: 14px;
    font-family: var(--font-primary);
}

.get-in-touch-content h2 {
    font-size: 72px;
    font-weight: 800;
    color: #0d2c2c;
    margin: 0;
    line-height: 1.1;
    font-family: var(--font-heading);
}

.get-in-touch-content p {
    font-size: 20px;
    color: #1b3a3a;
    margin: 15px 0 0;
    font-family: var(--font-secondary);
}

.project-cta-image-section {
    position: relative;
    height: 500px;
    background-image: url('https://images.unsplash.com/photo-1616486029423-aaa4789e8c9a?w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.project-cta-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.project-cta-image-section .content {
    position: relative;
    z-index: 2;
}

.project-cta-image-section h2 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    font-family: var(--font-primary);
}

.project-cta-image-section p {
    font-size: 24px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.project-cta-image-section .btn-outline {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid #fff;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.project-cta-image-section .btn-outline:hover {
    background: #fff;
    color: #000;
}

.project-cta-image-section .btn-outline i {
    margin-left: 10px;
}

@media (max-width: 768px) {
    .get-in-touch-content h2 {
        font-size: 42px;
    }
    .get-in-touch-content .top-link {
        position: static;
        display: inline-block;
        margin-bottom: 20px;
    }
    .project-cta-image-section h2 {
        font-size: 36px;
    }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 25px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

.back-to-top svg {
    transform: rotate(-90deg);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 25px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float i {
    font-size: 28px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .header-nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .slider-wrapper {
        height: 60vh;
        min-height: 400px;
    }

    .slide-heading {
        font-size: 36px;
    }

    .section-header-row {
        flex-direction: column;
        gap: 0;
    }

    .section-header-left h1 {
        font-size: 28px;
    }

    .services-list-row {
        grid-template-columns: repeat(2, 1fr);
        padding: 25px 30px;
    }

    .influential-row {
        flex-direction: column;
        gap: 30px;
    }

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

    .mv-row {
        flex-direction: column;
    }

    .mv-right {
        min-height: 350px;
    }

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

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

    .awards-row {
        flex-direction: column;
        gap: 30px;
    }

    .awards-left {
        flex: initial;
    }

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

/* Mobile */
@media (max-width: 767px) {
    :root {
        --header-height: 65px;
    }

    .logo-img {
        height: 45px;
    }

    .slider-wrapper {
        height: 50vh;
        min-height: 350px;
    }

    .slide-heading {
        font-size: 26px;
    }

    .slide-description {
        font-size: 13px;
    }

    .slide-description br {
        display: none;
    }

    .slide-btn {
        padding: 10px 25px;
        font-size: 12px;
    }

    .slider-nav button {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .dream-house-section {
        padding: 50px 0 30px;
    }

    .section-header-left h1 {
        font-size: 24px;
    }

    .services-list-row {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .influential-label {
        font-size: 32px;
    }

    .influential-right {
        padding: 30px 25px;
    }

    .influential-right h2 {
        font-size: 24px;
    }

    .service-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .abode-header h2 {
        font-size: 26px;
    }

    .curve-divider-section {
        height: 120px;
    }

    .mv-right {
        min-height: 300px;
    }

    .tab-nav {
        flex-wrap: wrap;
    }

    .tab-item {
        padding: 10px 15px;
        font-size: 12px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials-heading {
        font-size: 28px;
    }

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

    .awards-left h3 {
        font-size: 28px;
    }

    .award-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .greywood-cta-section h2 {
        font-size: 32px;
    }

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

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

/* Small Mobile */
@media (max-width: 480px) {
    .slide-heading {
        font-size: 22px;
    }

    .slide-content {
        width: 90%;
    }

    .section-header-left h1 {
        font-size: 20px;
    }

    .influential-label {
        font-size: 28px;
    }

    .greywood-cta-section h2 {
        font-size: 26px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

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

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

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

/* ============================================
   SCROLL ANIMATION (viewport reveal)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Page Specific Styles */
.why-card,
.team-card {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    transition: transform 0.5s ease;
}

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

.btn-primary:hover {
    background: #0a4d5b !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(7, 56, 66, 0.3);
}