/* =====================================================
   RESET & BASE
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f6f1eb;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================================================
   HEADER / NAVIGATION
   ===================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.4s ease-in-out;
}

.header.scrolled {
    background: rgba(246, 241, 235, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== LOGO - FIXED 100px ===== */

.logo {
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

#logo-img {
    height: 100px;
    width: auto;
    transition: all 0.3s ease;
    max-width: 100%;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #d42d00;
    letter-spacing: 2px;
}

.logo-text span {
    color: #5a6d52;
    font-weight: 400;
}

/* ===== NAVIGATION MENU ===== */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.header.scrolled .nav-link {
    color: #333;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d42d00;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #d42d00;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #d42d00;
}

.nav-link.active::after {
    width: 100%;
}

/* ===== CONSULTANCE BUTTON ===== */

.btn-consultance {
    display: inline-block;
    padding: 12px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.header.scrolled .btn-consultance {
    color: #000000;
    border-color: #d42d00;
}

.btn-consultance:hover {
    background: #d42d00;
    color: #f6f1eb;
    border-color: #d42d00;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 45, 0, 0.3);
}

/* ===== HAMBURGER MENU ===== */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
    z-index: 1001;
}

.bar {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.header.scrolled .bar {
    background: #333;
}

.hamburger.active .bar {
    background: #333;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =====================================================
   HERO SLIDER
   ===================================================== */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #1a1a1a;
    z-index: 1;
}

/* Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Video */
.slide-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.video-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
}

/* Overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    padding-top: 80px;
}

.slide-content {
    max-width: 800px;
    text-align: left;
}

.slide.active .slide-content {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-title {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.slide-title br {
    display: block;
}

.slide-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #d42d00;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid #d42d00;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== SLIDER DOTS ===== */

.slider-dots {
    position: absolute;
    bottom: 50px;
    right: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
}

.dot {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px 0;
    transition: all 0.3s ease;
    position: relative;
}

.dot-number {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    min-width: 24px;
    text-align: right;
}

.dot.active .dot-number {
    color: #fff;
    font-size: 16px;
}

.dot-bar {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    border-radius: 2px;
}

.dot.active .dot-bar {
    background: rgba(255, 255, 255, 0.3);
    width: 60px;
}

.dot:hover .dot-bar {
    background: rgba(255, 255, 255, 0.7);
}

.dot.active:hover .dot-bar {
    background: rgba(255, 255, 255, 0.3);
}

/* Progress bar animation */
@keyframes progressBar {
    from {
        width: 0%;
        background: #d42d00;
    }
    to {
        width: 100%;
        background: #d42d00;
    }
}

.dot.active .dot-bar {
    background: rgba(255, 255, 255, 0.2);
}

.dot.active .dot-bar::after {
    display: none;
}

/* ===== SLIDER ARROWS ===== */

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: #d42d00;
    border-color: #d42d00;
    transform: translateY(-50%) scale(1.05);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* ===== SLIDE COUNTER ===== */

.slide-counter {
    position: absolute;
    bottom: 50px;
    left: 60px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    z-index: 10;
    letter-spacing: 2px;
}

.slide-counter #currentSlide {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

/* =====================================================
   ABOUT US SECTION
   ===================================================== */

.about {
    padding: 100px 0;
    background: #f6f1eb;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: rgba(212, 45, 0, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ===== ABOUT IMAGE ===== */

.about-image {
    position: relative;
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image-container img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-image-container:hover img {
    transform: scale(1.05);
}

/* Image Badge */
.about-image-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #d42d00;
    color: #fff;
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 45, 0, 0.3);
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.badge-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.about-image-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border: 3px solid #d42d00;
    border-radius: 50%;
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
}

/* ===== ABOUT CONTENT ===== */

.about-content {
    padding: 20px 0;
}

.about-subtitle {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #d42d00;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-left: 60px;
    margin-bottom: 15px;
}

.about-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: #d42d00;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 25px;
}

.about-title br {
    display: block;
}

.about-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-text:last-of-type {
    margin-bottom: 35px;
}

/* ===== ABOUT STATS ===== */

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    padding: 25px 0;
    border-top: 2px solid rgba(212, 45, 0, 0.1);
    border-bottom: 2px solid rgba(212, 45, 0, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #d42d00;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #777;
    font-weight: 400;
}

/* ===== ABOUT BUTTON ===== */

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #d42d00;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #d42d00;
}

.about-btn i {
    transition: transform 0.3s ease;
}

.about-btn:hover {
    background: transparent;
    color: #d42d00;
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(212, 45, 0, 0.15);
}

.about-btn:hover i {
    transform: translateX(5px);
}

/* =====================================================
   SCROLL ANIMATION
   ===================================================== */

.about-image,
.about-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.about-image.visible,
.about-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-image {
    transition-delay: 0.2s;
}

.about-content {
    transition-delay: 0.4s;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

/* ===== TABLET ===== */

@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }

    .slide-title {
        font-size: 56px;
    }

    .slider-dots {
        right: 40px;
        bottom: 40px;
    }

    .slide-counter {
        left: 40px;
        bottom: 40px;
    }

    #logo-img {
        height: 100px;
    }

    .about-wrapper {
        gap: 50px;
    }

    .about-title {
        font-size: 40px;
    }

    .about-image-container img {
        height: 500px;
    }

    .about-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 30px;
    }
}

/* ===== MOBILE - FIXED NAVIGATION ===== */

@media (max-width: 768px) {
    /* === HEADER === */
    .header {
        padding: 15px 0;
    }

    /* === LOGO === */
    #logo-img {
        height: 100px;
    }

    /* === HAMBURGER === */
    .hamburger {
        display: flex;
    }

    /* === NAV MENU - HIDDEN BY DEFAULT === */
    .nav-menu {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: auto;
        max-height: 80vh;
        overflow-y: auto;
        background: #f6f1eb;
        flex-direction: column;
        padding: 30px 20px 30px;
        gap: 15px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 0 0 20px 20px;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    /* === NAV MENU - SHOW WHEN ACTIVE === */
    .nav-menu.active {
        top: 72px;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .nav-link {
        font-size: 18px;
        font-weight: 500;
        color: #333 !important;
        padding: 10px 15px;
        border-radius: 8px;
        transition: all 0.3s ease;
        width: 100%;
        text-align: center;
    }

    .nav-link:hover {
        background: rgba(212, 45, 0, 0.08);
        color: #d42d00 !important;
    }

    .nav-link::after {
        display: none;
    }

    /* === DESKTOP CTA - HIDE ON MOBILE === */
    .nav-cta {
        display: none;
    }

    /* === MOBILE CTA BUTTON === */
    .nav-cta-mobile {
        display: none;
        list-style: none;
        margin-top: 10px;
        width: 100%;
        padding: 0 15px;
    }

    .nav-menu.active .nav-cta-mobile {
        display: block;
    }

    .nav-cta-mobile .btn-consultance {
        display: inline-block;
        width: 100%;
        text-align: center;
        color: #d42d00 !important;
        border-color: #d42d00 !important;
        background: transparent;
        padding: 14px 28px;
        font-size: 16px;
    }

    .nav-cta-mobile .btn-consultance:hover {
        background: #d42d00;
        color: #fff !important;
    }

    /* === HERO SLIDER MOBILE === */
    .slide-title {
        font-size: 38px;
    }

    .slide-subtitle {
        font-size: 18px;
    }

    .slide-content {
        text-align: center;
        padding: 0 20px;
    }

    .slider-dots {
        flex-direction: row;
        bottom: 30px;
        right: 50%;
        transform: translateX(50%);
        gap: 15px;
    }

    .dot {
        flex-direction: column-reverse;
        gap: 5px;
        align-items: center;
    }

    .dot-number {
        font-size: 12px;
        min-width: auto;
        text-align: center;
    }

    .dot-bar {
        width: 30px;
        height: 2px;
    }

    .dot.active .dot-bar {
        width: 30px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .slider-arrow.prev {
        left: 15px;
    }

    .slider-arrow.next {
        right: 15px;
    }

    .slide-counter {
        display: none;
    }

    .btn-primary {
        padding: 14px 30px;
        font-size: 14px;
    }

    /* === ABOUT US MOBILE === */
    .about {
        padding: 70px 0;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .about-image-container img {
        height: 350px;
    }

    .about-image-badge {
        bottom: 20px;
        right: 20px;
        padding: 15px 25px;
    }

    .badge-number {
        font-size: 26px;
    }

    .badge-text {
        font-size: 12px;
    }

    .about-content {
        padding: 0;
        text-align: center;
    }

    .about-subtitle {
        padding-left: 0;
        padding-right: 0;
    }

    .about-subtitle::before {
        display: none;
    }

    .about-title {
        font-size: 34px;
    }

    .about-title br {
        display: none;
    }

    .about-text {
        font-size: 15px;
        text-align: center;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 20px 0;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .about-btn {
        display: inline-flex;
        margin: 0 auto;
    }
}

/* ===== SMALL MOBILE ===== */

@media (max-width: 480px) {
    /* === HEADER === */
    .header {
        padding: 12px 0;
    }

    .nav-menu.active {
        top: 62px;
    }

    /* === LOGO === */
    #logo-img {
        height: 100px;
    }

    /* === NAV LINKS === */
    .nav-link {
        font-size: 16px;
        padding: 8px 12px;
    }

    .nav-cta-mobile .btn-consultance {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* === HERO SLIDER === */
    .slide-title {
        font-size: 30px;
    }

    .slide-subtitle {
        font-size: 16px;
    }

    .slider-dots {
        bottom: 20px;
        gap: 12px;
    }

    .dot-bar {
        width: 20px;
    }

    .dot.active .dot-bar {
        width: 25px;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .btn-primary {
        padding: 12px 24px;
        font-size: 13px;
    }

    /* === ABOUT US === */
    .about {
        padding: 50px 0;
    }

    .about-image-container img {
        height: 280px;
    }

    .about-image-container::before {
        width: 80px;
        height: 80px;
        top: -10px;
        left: -10px;
    }

    .about-image-badge {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        border-radius: 12px;
    }

    .badge-number {
        font-size: 22px;
    }

    .badge-text {
        font-size: 11px;
    }

    .about-title {
        font-size: 28px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
        padding: 15px 0;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 11px;
    }

    .about-btn {
        font-size: 14px;
        padding: 14px 28px;
    }

    .btn-consultance {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* =====================================================
   SCROLLBAR
   ===================================================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f6f1eb;
}

::-webkit-scrollbar-thumb {
    background: #d42d00;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5a6d52;
}

/* =====================================================
   SELECTION COLOR
   ===================================================== */

::selection {
    background: #d42d00;
    color: #fff;
}

::-moz-selection {
    background: #d42d00;
    color: #fff;
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */

.text-center {
    text-align: center;
}

.text-primary {
    color: #d42d00;
}

.text-secondary {
    color: #5a6d52;
}

.bg-primary {
    background: #d42d00;
}

.bg-secondary {
    background: #5a6d52;
}

.bg-light {
    background: #f6f1eb;
}

/* =====================================================
   PRINT STYLES
   ===================================================== */

@media print {
    .header {
        position: relative;
        background: #fff;
        box-shadow: none;
    }

    .hero-slider {
        height: auto;
        min-height: 400px;
    }

    .slide {
        position: relative;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }

    .slide:not(:first-child) {
        display: none !important;
    }

    .slider-dots,
    .slider-arrow,
    .slide-counter {
        display: none !important;
    }
}


/* =====================================================
   WHY CHOOSE US SECTION
   ===================================================== */

.why-choose {
    padding: 100px 0;
    background: linear-gradient(180deg, #f6f1eb 0%, #f0e9e0 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Background Elements */
.why-choose::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: rgba(212, 45, 0, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.why-choose::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(90, 109, 82, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

/* ===== SECTION HEADER ===== */

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #d42d00;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    padding: 0 20px;
    margin-bottom: 15px;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: #d42d00;
}

.section-subtitle::before {
    left: -30px;
}

.section-subtitle::after {
    right: -30px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-title br {
    display: block;
}

.section-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FEATURES GRID ===== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* ===== FEATURE CARD ===== */

.feature-card {
    background: #fff;
    padding: 40px 30px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
    opacity: 0;
    transform: translateY(40px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Card Hover Effects */
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 45, 0, 0.12);
}

/* Card Background Gradient on Hover */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d42d00, #5a6d52);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

/* Card Number Badge */
.feature-card::after {
    content: attr(data-number);
    position: absolute;
    top: -10px;
    right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 700;
    color: rgba(212, 45, 0, 0.05);
    line-height: 1;
    pointer-events: none;
    transition: all 0.3s ease;
}

.feature-card:hover::after {
    color: rgba(212, 45, 0, 0.08);
    transform: scale(1.1);
}

/* ===== FEATURE ICON ===== */

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 45, 0, 0.08), rgba(90, 109, 82, 0.08));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    position: relative;
}

.feature-icon i {
    font-size: 30px;
    color: #d42d00;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: #d42d00;
    transform: scale(1.05) rotate(-5deg);
}

.feature-card:hover .feature-icon i {
    color: #fff;
    transform: rotate(5deg);
}

/* ===== FEATURE CONTENT ===== */

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: #d42d00;
}

.feature-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-text {
    color: #555;
}

/* ===== HOVER LINE ===== */

.feature-hover-line {
    width: 40px;
    height: 3px;
    background: #d42d00;
    margin-top: 18px;
    border-radius: 3px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-hover-line {
    width: 60px;
    background: #5a6d52;
}

/* =====================================================
   WHY CHOOSE US - RESPONSIVE
   ===================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .section-title {
        font-size: 40px;
    }

    .feature-card {
        padding: 35px 25px 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .why-choose {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-subtitle {
        font-size: 12px;
        letter-spacing: 3px;
        padding: 0 15px;
    }

    .section-subtitle::before,
    .section-subtitle::after {
        width: 20px;
    }

    .section-subtitle::before {
        left: -20px;
    }

    .section-subtitle::after {
        right: -20px;
    }

    .section-title {
        font-size: 34px;
    }

    .section-title br {
        display: none;
    }

    .section-description {
        font-size: 16px;
        padding: 0 10px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 25px 25px;
        text-align: center;
    }

    .feature-card::after {
        font-size: 60px;
        right: 15px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 18px;
    }

    .feature-icon i {
        font-size: 26px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-text {
        font-size: 14px;
    }

    .feature-hover-line {
        margin: 15px auto 0;
    }

    .feature-card:hover .feature-hover-line {
        width: 50px;
    }

    .feature-card {
        opacity: 1;
        transform: translateY(0);
    }

    /* Remove delay on mobile for instant visibility */
    .feature-card[data-delay] {
        transition-delay: 0s !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .why-choose {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 15px;
    }

    .feature-card {
        padding: 25px 20px 22px;
    }

    .feature-card::after {
        font-size: 50px;
        right: 10px;
        top: -5px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
    }

    .feature-icon i {
        font-size: 22px;
    }

    .feature-title {
        font-size: 18px;
    }

    .feature-text {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* =====================================================
   ANIMATION DELAYS FOR CARDS
   ===================================================== */

.feature-card[data-delay="0"] {
    transition-delay: 0.1s;
}

.feature-card[data-delay="100"] {
    transition-delay: 0.2s;
}

.feature-card[data-delay="200"] {
    transition-delay: 0.3s;
}

.feature-card[data-delay="300"] {
    transition-delay: 0.4s;
}

.feature-card[data-delay="400"] {
    transition-delay: 0.5s;
}

/* =====================================================
   CARD VARIATIONS (Optional different colors)
   ===================================================== */

.feature-card:nth-child(1):hover .feature-icon {
    background: #d42d00;
}

.feature-card:nth-child(2):hover .feature-icon {
    background: #5a6d52;
}

.feature-card:nth-child(3):hover .feature-icon {
    background: #d42d00;
}

.feature-card:nth-child(4):hover .feature-icon {
    background: #5a6d52;
}

.feature-card:nth-child(5):hover .feature-icon {
    background: #d42d00;
}

/* =====================================================
   SERVICES / CAPABILITIES SECTION
   ===================================================== */

.services {
    padding: 100px 0;
    background: #f6f1eb;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 45, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* ===== SERVICES SLIDER WRAPPER ===== */

.services-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== SERVICES SLIDER ===== */

.services-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* ===== INDIVIDUAL SLIDE ===== */

.service-slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    min-height: 450px;
    animation: slideFadeIn 0.6s ease forwards;
}

.service-slide.active {
    display: grid;
}

@keyframes slideFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== SERVICE IMAGE ===== */

.service-image {
    position: relative;
    overflow: hidden;
    min-height: 450px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.service-slide:hover .service-image img {
    transform: scale(1.05);
}

/* Service Overlay */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 45, 0, 0.2), rgba(90, 109, 82, 0.2));
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 30px;
}

.service-number {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.service-slide:hover .service-number {
    color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* ===== SERVICE INFO ===== */

.service-info {
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

/* Service Icon */
.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 45, 0, 0.08), rgba(90, 109, 82, 0.08));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.service-slide:hover .service-icon {
    background: #d42d00;
    transform: scale(1.05) rotate(-5deg);
}

.service-icon i {
    font-size: 30px;
    color: #d42d00;
    transition: all 0.4s ease;
}

.service-slide:hover .service-icon i {
    color: #fff;
    transform: rotate(5deg);
}

/* Service Name */
.service-name {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.service-slide:hover .service-name {
    color: #d42d00;
}

/* Service Description */
.service-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

/* Service Button */
.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #d42d00;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
}

.service-btn i {
    transition: transform 0.3s ease;
}

.service-btn:hover {
    color: #5a6d52;
    border-bottom-color: #5a6d52;
}

.service-btn:hover i {
    transform: translateX(8px);
}

/* ===== SLIDER CONTROLS ===== */

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 35px;
}

/* Slider Buttons */
.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #d42d00;
    background: transparent;
    color: #d42d00;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: #d42d00;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 45, 0, 0.3);
}

.slider-btn:active {
    transform: scale(0.95);
}

/* Service Dots */
.slider-dots-services {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.dot-service {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #d42d00;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot-service.active {
    background: #d42d00;
    transform: scale(1.2);
}

.dot-service:hover {
    background: #d42d00;
    opacity: 0.7;
}

/* =====================================================
   SERVICES RESPONSIVE
   ===================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .service-slide {
        grid-template-columns: 1fr 1fr;
        min-height: 400px;
    }

    .service-image {
        min-height: 400px;
    }

    .service-info {
        padding: 35px 30px;
    }

    .service-name {
        font-size: 24px;
    }

    .service-number {
        font-size: 60px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .services {
        padding: 70px 0;
    }

    .service-slide {
        grid-template-columns: 1fr;
        min-height: auto;
        border-radius: 16px;
        overflow: hidden;
    }

    .service-image {
        min-height: 250px;
        order: -1;
    }

    .service-image img {
        height: 250px;
    }

    .service-info {
        padding: 30px 25px;
    }

    .service-number {
        font-size: 50px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 26px;
    }

    .service-name {
        font-size: 22px;
    }

    .service-desc {
        font-size: 15px;
    }

    .slider-controls {
        gap: 20px;
        margin-top: 25px;
        flex-wrap: wrap;
    }

    .slider-btn {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .slider-dots-services {
        gap: 8px;
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .dot-service {
        width: 10px;
        height: 10px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .services {
        padding: 50px 0;
    }

    .service-image {
        min-height: 200px;
    }

    .service-image img {
        height: 200px;
    }

    .service-info {
        padding: 25px 20px;
    }

    .service-number {
        font-size: 40px;
        padding: 15px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon i {
        font-size: 22px;
    }

    .service-name {
        font-size: 20px;
    }

    .service-desc {
        font-size: 14px;
        line-height: 1.6;
    }

    .service-btn {
        font-size: 14px;
    }

    .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .dot-service {
        width: 8px;
        height: 8px;
    }
}

/* =====================================================
   SERVICE SLIDE ANIMATIONS
   ===================================================== */

.service-slide.active .service-image img {
    animation: imageZoom 0.8s ease forwards;
}

@keyframes imageZoom {
    from {
        transform: scale(1.1);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.service-slide.active .service-info {
    animation: infoSlide 0.6s ease 0.2s forwards;
    opacity: 0;
    transform: translateX(30px);
}

@keyframes infoSlide {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.service-slide.active .service-icon {
    animation: iconPop 0.5s ease 0.3s forwards;
    opacity: 0;
    transform: scale(0.8);
}

@keyframes iconPop {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.service-slide.active .service-name {
    animation: textFadeUp 0.6s ease 0.4s forwards;
    opacity: 0;
    transform: translateY(15px);
}

.service-slide.active .service-desc {
    animation: textFadeUp 0.6s ease 0.5s forwards;
    opacity: 0;
    transform: translateY(15px);
}

.service-slide.active .service-btn {
    animation: textFadeUp 0.6s ease 0.6s forwards;
    opacity: 0;
    transform: translateY(15px);
}

@keyframes textFadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   PORTFOLIO SECTION - FULLY RESPONSIVE
   ===================================================== */

.portfolio {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0e9e0 0%, #f6f1eb 100%);
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 45, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* ===== PORTFOLIO TABS - MOBILE FRIENDLY ===== */

.portfolio-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.tab-btn {
    padding: 10px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.tab-btn:hover {
    color: #d42d00;
    background: rgba(212, 45, 0, 0.05);
    transform: translateY(-2px);
}

.tab-btn.active {
    color: #fff;
    background: #d42d00;
    border-color: #d42d00;
    box-shadow: 0 8px 25px rgba(212, 45, 0, 0.3);
}

.tab-btn.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 45, 0, 0.4);
}

/* ===== PORTFOLIO GRID ===== */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
    min-height: 300px;
}

/* ===== PORTFOLIO ITEM ===== */

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.85) translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-item.show {
    animation: portfolioShow 0.5s ease forwards;
}

@keyframes portfolioShow {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ===== PORTFOLIO IMAGE ===== */

.portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #e8e0d6;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

/* ===== PORTFOLIO OVERLAY ===== */

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.5s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:active .portfolio-overlay {
    opacity: 1;
}

/* Portfolio Badge */
.portfolio-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #d42d00;
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-badge {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item:active .portfolio-badge {
    opacity: 1;
    transform: translateY(0);
}

/* Overlay Content */
.portfolio-overlay-content {
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.portfolio-item:hover .portfolio-overlay-content {
    transform: translateY(0);
}

.portfolio-item:active .portfolio-overlay-content {
    transform: translateY(0);
}

.portfolio-overlay-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.portfolio-overlay-category {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 8px;
}

.portfolio-overlay-category i {
    font-size: 12px;
    color: #d42d00;
}

/* ===== PORTFOLIO ITEM VARIATIONS ===== */

/* Featured Item - Larger */
.portfolio-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.portfolio-item.featured .portfolio-image {
    aspect-ratio: auto;
    height: 100%;
}

.portfolio-item.featured .portfolio-overlay-title {
    font-size: 28px;
}

/* ===== LOAD MORE BUTTON ===== */

.portfolio-load-more {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #d42d00;
    background: transparent;
    border: 2px solid #d42d00;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.load-more-btn i {
    transition: transform 0.3s ease;
}

.load-more-btn:hover {
    background: #d42d00;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 45, 0, 0.3);
}

.load-more-btn:active {
    transform: scale(0.95);
}

.load-more-btn:hover i {
    transform: translateY(3px);
}

.load-more-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* =====================================================
   PORTFOLIO RESPONSIVE - FIXED FOR MOBILE
   ===================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .portfolio-item.featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    .portfolio-item.featured .portfolio-overlay-title {
        font-size: 24px;
    }

    .portfolio-tabs {
        gap: 8px;
    }

    .tab-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
}

/* Mobile - Fixed for proper viewing */
@media (max-width: 768px) {
    .portfolio {
        padding: 70px 0;
    }

    /* Tabs - Horizontal scroll on mobile */
    .portfolio-tabs {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        margin-bottom: 30px;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 5px 10px 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Hide scrollbar for Firefox */
        scroll-behavior: smooth;
    }

    .portfolio-tabs::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar for Chrome/Safari */
    }

    .tab-btn {
        padding: 8px 16px;
        font-size: 12px;
        white-space: nowrap;
        flex-shrink: 0;
        /* Prevent buttons from wrapping */
        border-radius: 50px;
    }

    /* Grid - Single column on mobile */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 5px;
    }

    /* All items stack vertically */
    .portfolio-item {
        width: 100%;
        max-width: 100%;
    }

    .portfolio-item.featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    .portfolio-item.featured .portfolio-image {
        aspect-ratio: 4/3;
        height: auto;
    }

    .portfolio-item.featured .portfolio-overlay-title {
        font-size: 20px;
    }

    /* Mobile overlay - always visible with gradient */
    .portfolio-overlay {
        opacity: 1;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 100%);
        padding: 20px;
    }

    .portfolio-overlay-content {
        transform: translateY(0);
    }

    .portfolio-badge {
        opacity: 1;
        transform: translateY(0);
        top: 15px;
        right: 15px;
        padding: 4px 12px;
        font-size: 10px;
    }

    .portfolio-overlay-title {
        font-size: 18px;
    }

    .portfolio-overlay-category {
        font-size: 12px;
    }

    /* Load More Button */
    .load-more-btn {
        padding: 14px 30px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .portfolio {
        padding: 50px 0;
    }

    .portfolio-grid {
        gap: 15px;
        padding: 0;
    }

    .portfolio-item {
        border-radius: 12px;
    }

    .portfolio-item.featured .portfolio-overlay-title {
        font-size: 18px;
    }

    .portfolio-overlay {
        padding: 15px;
    }

    .portfolio-overlay-title {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .portfolio-overlay-category {
        font-size: 11px;
    }

    .tab-btn {
        padding: 6px 14px;
        font-size: 11px;
    }

    .load-more-btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .portfolio-badge {
        top: 10px;
        right: 10px;
        padding: 3px 10px;
        font-size: 9px;
    }

    /* On mobile, show overlay always */
    .portfolio-overlay {
        opacity: 1;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.05) 100%);
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .portfolio-tabs {
        gap: 5px;
        padding: 5px 5px 12px;
    }

    .tab-btn {
        padding: 5px 10px;
        font-size: 10px;
    }

    .portfolio-grid {
        gap: 12px;
    }

    .portfolio-overlay-title {
        font-size: 14px;
    }

    .portfolio-overlay-category {
        font-size: 10px;
    }
}

/* =====================================================
   PORTFOLIO LIGHTBOX
   ===================================================== */

.portfolio-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-lightbox.active {
    display: flex;
    opacity: 1;
}

.portfolio-lightbox img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.portfolio-lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10;
    -webkit-tap-highlight-color: transparent;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-close:active {
    transform: rotate(90deg) scale(0.9);
}

/* ===== NO ITEMS FOUND ===== */

.no-items {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.no-items i {
    font-size: 48px;
    color: #d42d00;
    opacity: 0.3;
    margin-bottom: 20px;
    display: block;
}

.no-items h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.no-items p {
    font-family: 'Inter', sans-serif;
    color: #666;
}

/* =====================================================
   TESTIMONIALS SECTION
   ===================================================== */

.testimonials {
    padding: 100px 0;
    background: #f6f1eb;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(90, 109, 82, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 45, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* ===== TESTIMONIALS GRID ===== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* ===== TESTIMONIAL CARD ===== */

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 45, 0, 0.12);
}

/* Staggered animation delays */
.testimonial-card:nth-child(1) {
    transition-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
    transition-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
    transition-delay: 0.3s;
}

/* ===== VIDEO WRAPPER ===== */

.testimonial-video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #1a1a1a;
    overflow: hidden;
    cursor: pointer;
}

.testimonial-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Placeholder */
.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    color: #fff;
    gap: 10px;
}

.video-placeholder i {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.video-placeholder span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.testimonial-video-wrapper:hover .video-placeholder i {
    color: #d42d00;
    transform: scale(1.1);
}

/* Play Button Overlay */
.play-video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(212, 45, 0, 0.9);
    border: 3px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
}

.testimonial-video-wrapper:hover .play-video-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.play-video-btn:hover {
    background: #d42d00;
    border-color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-video-btn.playing {
    opacity: 0;
    pointer-events: none;
}

/* Quote Icon */
.testimonial-quote-icon {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.15);
    z-index: 2;
    pointer-events: none;
}

/* ===== TESTIMONIAL CONTENT ===== */

.testimonial-content {
    padding: 25px 30px 30px;
}

/* Rating Stars */
.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: #f5b042;
    font-size: 16px;
}

/* Text */
.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

/* Client Info */
.testimonial-client {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 2px solid rgba(212, 45, 0, 0.06);
}

.client-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #d42d00;
    flex-shrink: 0;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info {
    flex: 1;
}

.client-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.client-role {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #888;
}

/* ===== VIEW MORE BUTTON ===== */

.testimonials-view-more {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #d42d00;
    background: transparent;
    border: 2px solid #d42d00;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-more-btn i {
    transition: transform 0.3s ease;
}

.view-more-btn:hover {
    background: #d42d00;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 45, 0, 0.3);
}

.view-more-btn:hover i {
    transform: translateX(5px);
}

.view-more-btn:active {
    transform: scale(0.95);
}

/* =====================================================
   TESTIMONIALS RESPONSIVE
   ===================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .testimonial-card:nth-child(3) {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .testimonials {
        padding: 70px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
        margin: 0 auto;
    }

    .testimonial-card:nth-child(3) {
        grid-column: span 1;
        max-width: 100%;
        margin: 0;
    }

    .testimonial-content {
        padding: 20px 22px 25px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .play-video-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .testimonial-video-wrapper:hover .play-video-btn {
        opacity: 1;
    }

    .testimonial-quote-icon {
        font-size: 30px;
        bottom: 10px;
        right: 15px;
    }

    .view-more-btn {
        padding: 14px 30px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .testimonials {
        padding: 50px 0;
    }

    .testimonials-grid {
        gap: 20px;
        max-width: 100%;
    }

    .testimonial-content {
        padding: 18px 18px 22px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .testimonial-rating i {
        font-size: 14px;
    }

    .play-video-btn {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .client-avatar {
        width: 45px;
        height: 45px;
    }

    .client-name {
        font-size: 16px;
    }

    .client-role {
        font-size: 12px;
    }

    .testimonial-quote-icon {
        font-size: 24px;
        bottom: 8px;
        right: 12px;
    }

    .view-more-btn {
        padding: 12px 24px;
        font-size: 13px;
    }
}

/* =====================================================
   TESTIMONIALS - VIDEO PLAYING STATE
   ===================================================== */

.testimonial-video-wrapper.playing .play-video-btn {
    opacity: 0;
    pointer-events: none;
}

.testimonial-video-wrapper.playing .testimonial-quote-icon {
    opacity: 0;
}

.testimonial-video-wrapper.playing .video-placeholder {
    opacity: 0;
}

/* =====================================================
   TESTIMONIALS - HOVER ANIMATIONS
   ===================================================== */

.testimonial-card:hover .testimonial-quote-icon {
    color: rgba(212, 45, 0, 0.1);
}

.testimonial-card:hover .client-avatar {
    border-color: #5a6d52;
}

/* =====================================================
   VIDEO PLAY ANIMATION
   ===================================================== */

@keyframes pulsePlay {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 0 rgba(212, 45, 0, 0.4);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 0 0 20px rgba(212, 45, 0, 0);
    }
}

.testimonial-video-wrapper:hover .play-video-btn {
    animation: pulsePlay 1.5s ease-in-out infinite;
}





/* =====================================================
   BLOG SECTION
   ===================================================== */

.blog {
    padding: 100px 0;
    background: linear-gradient(180deg, #f6f1eb 0%, #f0e9e0 100%);
    position: relative;
    overflow: hidden;
}

.blog::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 45, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.blog::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(90, 109, 82, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* ===== BLOG GRID ===== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* ===== BLOG CARD ===== */

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
}

.blog-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 45, 0, 0.12);
}

/* Staggered animation delays */
.blog-card:nth-child(1) {
    transition-delay: 0.1s;
}

.blog-card:nth-child(2) {
    transition-delay: 0.2s;
}

.blog-card:nth-child(3) {
    transition-delay: 0.3s;
}

/* ===== BLOG IMAGE ===== */

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: #e8e0d6;
}

.blog-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-image-wrapper img {
    transform: scale(1.1);
}

/* Blog Category Badge */
.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #d42d00;
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-category {
    background: #5a6d52;
    transform: translateY(-2px);
}

/* Blog Overlay */
.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 45, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

.blog-overlay-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #d42d00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.blog-card:hover .blog-overlay-link {
    transform: scale(1);
}

.blog-overlay-link:hover {
    background: #d42d00;
    color: #fff;
    transform: scale(1.1);
}

/* ===== BLOG CONTENT ===== */

.blog-content {
    padding: 25px 28px 30px;
}

/* Blog Meta */
.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #888;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    font-size: 13px;
    color: #d42d00;
}

/* Blog Title */
.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #d42d00;
}

/* Blog Excerpt */
.blog-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 18px;
}

/* Blog Read More Button */
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #d42d00;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    color: #5a6d52;
    border-bottom-color: #5a6d52;
}

.blog-read-more:hover i {
    transform: translateX(6px);
}

/* ===== VIEW ALL BUTTON ===== */

.blog-view-all {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #d42d00;
    background: transparent;
    border: 2px solid #d42d00;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover {
    background: #d42d00;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 45, 0, 0.3);
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

.view-all-btn:active {
    transform: scale(0.95);
}

/* =====================================================
   BLOG RESPONSIVE
   ===================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .blog-title {
        font-size: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .blog {
        padding: 70px 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
        margin: 0 auto;
    }

    .blog-content {
        padding: 20px 22px 25px;
    }

    .blog-title {
        font-size: 20px;
    }

    .blog-excerpt {
        font-size: 14px;
    }

    .blog-meta {
        font-size: 12px;
        gap: 15px;
        flex-wrap: wrap;
    }

    .blog-category {
        font-size: 11px;
        padding: 4px 14px;
        top: 15px;
        left: 15px;
    }

    .blog-overlay-link {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .view-all-btn {
        padding: 14px 30px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .blog {
        padding: 50px 0;
    }

    .blog-grid {
        gap: 20px;
        max-width: 100%;
    }

    .blog-content {
        padding: 18px 18px 22px;
    }

    .blog-title {
        font-size: 18px;
    }

    .blog-excerpt {
        font-size: 13px;
        line-height: 1.6;
    }

    .blog-meta {
        font-size: 11px;
        gap: 12px;
    }

    .blog-meta i {
        font-size: 11px;
    }

    .blog-category {
        font-size: 10px;
        padding: 3px 12px;
        top: 12px;
        left: 12px;
    }

    .blog-overlay-link {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .blog-read-more {
        font-size: 13px;
    }

    .view-all-btn {
        padding: 12px 24px;
        font-size: 13px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .blog-title {
        font-size: 16px;
    }

    .blog-excerpt {
        font-size: 12px;
    }

    .blog-meta {
        font-size: 10px;
        gap: 10px;
    }
}

/* =====================================================
   BLOG CARD HOVER EFFECTS - ADDITIONAL
   ===================================================== */

/* Decorative line on hover */
.blog-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #d42d00, #5a6d52);
    transition: width 0.5s ease;
    border-radius: 0 0 20px 20px;
}

.blog-card:hover::after {
    width: 100%;
}

.blog-card {
    position: relative;
}

/* =====================================================
   BLOG CARD ANIMATIONS
   ===================================================== */

@keyframes blogCardIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.blog-card.visible {
    animation: blogCardIn 0.6s ease forwards;
}

/* =====================================================
   IMAGE LOADING PLACEHOLDER
   ===================================================== */

.blog-image-wrapper img {
    background: #e8e0d6;
}

.blog-image-wrapper img:not([src]) {
    opacity: 0;
}

.blog-image-wrapper img[src] {
    opacity: 1;
    transition: opacity 0.3s ease;
}



/* =====================================================
   CONTACT / CONSULTANCE SECTION
   ===================================================== */

.contact {
    padding: 100px 0;
    background: #f6f1eb;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 45, 0, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(90, 109, 82, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* ===== CONTACT WRAPPER ===== */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    position: relative;
    z-index: 1;
    align-items: start;
}

/* ===== CONTACT INFO ===== */

.contact-info {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.contact-info.visible {
    opacity: 1;
    transform: translateX(0);
}

.contact-info-card {
    background: #fff;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.contact-info-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-info-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f8f5f0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-detail:hover {
    background: rgba(212, 45, 0, 0.05);
    transform: translateX(5px);
}

.contact-detail-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: #d42d00;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.contact-detail:hover .contact-detail-icon {
    background: #5a6d52;
    transform: scale(1.05);
}

.contact-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-detail-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail-value {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-value:hover {
    color: #d42d00;
}

/* Social Links */
.contact-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f8f5f0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.contact-social-link:hover {
    background: #d42d00;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 45, 0, 0.3);
}

.contact-social-link:nth-child(2):hover {
    background: #e4405f;
}
.contact-social-link:nth-child(3):hover {
    background: #ff0000;
}
.contact-social-link:nth-child(4):hover {
    background: #bd081c;
}
.contact-social-link:nth-child(5):hover {
    background: #0077b5;
}

/* ===== CONTACT FORM ===== */

.contact-form-wrapper {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease 0.2s;
}

.contact-form-wrapper.visible {
    opacity: 1;
    transform: translateX(0);
}

.contact-form {
    background: #fff;
    padding: 45px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.required {
    color: #d42d00;
}

.optional {
    color: #999;
    font-weight: 400;
    font-size: 13px;
}

/* Form Input Wrapper */
.form-input-wrapper {
    position: relative;
}

.form-input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-input-wrapper:focus-within .form-input-icon {
    color: #d42d00;
}

.textarea-icon {
    top: 18px;
    transform: none;
}

/* Form Inputs */
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 20px 14px 48px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #333;
    background: #f8f5f0;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    outline: none;
}

.form-select {
    padding: 14px 20px 14px 48px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
}

.form-textarea {
    padding: 14px 20px 14px 48px;
    resize: vertical;
    min-height: 120px;
    font-family: 'Inter', sans-serif;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: #d42d00;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(212, 45, 0, 0.08);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #dc3545;
    background: #fff;
}

.form-input.error:focus,
.form-select.error:focus,
.form-textarea.error:focus {
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.08);
}

/* Form Error */
.form-error {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #dc3545;
    margin-top: 6px;
    display: none;
    align-items: center;
    gap: 6px;
}

.form-error.show {
    display: flex;
}

.form-error::before {
    content: '⚠';
    font-size: 14px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 16px 30px;
    background: #d42d00;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    background: #5a6d52;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 45, 0, 0.3);
}

.submit-btn:active {
    transform: scale(0.98);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px) rotate(-10deg);
}

.submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.submit-btn.loading span::after {
    content: '...';
    animation: dots 1.2s steps(4, end) infinite;
}

@keyframes dots {
    0% { content: ''; }
    25% { content: '.'; }
    50% { content: '..'; }
    75% { content: '...'; }
}

/* Form Success */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
    animation: successIn 0.6s ease forwards;
}

.form-success.show {
    display: block;
}

@keyframes successIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.form-success i {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 15px;
    display: block;
}

.form-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.form-success p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #666;
}

/* =====================================================
   CONTACT RESPONSIVE
   ===================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .contact-info-card {
        padding: 30px 25px;
    }

    .contact-form {
        padding: 35px 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .contact {
        padding: 70px 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-info {
        order: 2;
    }

    .contact-form-wrapper {
        order: 1;
    }

    .contact-info-card {
        padding: 28px 22px;
    }

    .contact-info-title {
        font-size: 24px;
    }

    .contact-info-text {
        font-size: 14px;
    }

    .contact-detail {
        padding: 12px;
        gap: 12px;
    }

    .contact-detail-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 15px;
    }

    .contact-detail-value {
        font-size: 14px;
    }

    .contact-form {
        padding: 30px 22px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 12px 16px 12px 42px;
        font-size: 14px;
    }

    .form-textarea {
        min-height: 100px;
    }

    .submit-btn {
        padding: 14px 24px;
        font-size: 15px;
    }

    .contact-social-link {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .form-success h3 {
        font-size: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .contact {
        padding: 50px 0;
    }

    .contact-wrapper {
        gap: 25px;
    }

    .contact-info-card {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .contact-info-title {
        font-size: 22px;
    }

    .contact-info-text {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .contact-details {
        gap: 12px;
        margin-bottom: 20px;
    }

    .contact-detail {
        padding: 10px;
        gap: 10px;
        border-radius: 10px;
    }

    .contact-detail-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 13px;
        border-radius: 10px;
    }

    .contact-detail-label {
        font-size: 10px;
    }

    .contact-detail-value {
        font-size: 13px;
    }

    .contact-form {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .form-label {
        font-size: 13px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 10px 14px 10px 38px;
        font-size: 13px;
        border-radius: 10px;
    }

    .form-input-icon {
        left: 12px;
        font-size: 14px;
    }

    .form-textarea {
        min-height: 80px;
    }

    .form-error {
        font-size: 12px;
    }

    .submit-btn {
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 10px;
        gap: 10px;
    }

    .contact-social {
        gap: 8px;
    }

    .contact-social-link {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .form-success i {
        font-size: 48px;
    }

    .form-success h3 {
        font-size: 18px;
    }

    .form-success p {
        font-size: 13px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .contact-info-card {
        padding: 18px 14px;
    }

    .contact-form {
        padding: 20px 14px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 8px 12px 8px 34px;
        font-size: 12px;
    }

    .form-input-icon {
        left: 10px;
        font-size: 12px;
    }

    .submit-btn {
        font-size: 13px;
        padding: 10px 16px;
    }

    .contact-detail-value {
        font-size: 12px;
    }
}

/* =====================================================
   CONTACT FORM ANIMATIONS
   ===================================================== */

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    animation: slideUp 0.5s ease forwards;
    opacity: 0;
}

.form-group:nth-child(1) {
    animation-delay: 0.1s;
}

.form-group:nth-child(2) {
    animation-delay: 0.2s;
}

.form-group:nth-child(3) {
    animation-delay: 0.3s;
}

.form-group:nth-child(4) {
    animation-delay: 0.4s;
}

.submit-btn {
    animation: slideUp 0.5s ease 0.5s forwards;
    opacity: 0;
}

/* =====================================================
   SELECT DROPDOWN CUSTOM STYLING
   ===================================================== */

.form-select option {
    padding: 10px;
    font-family: 'Inter', sans-serif;
}

/* =====================================================
   INPUT AUTO-FILL STYLES
   ===================================================== */

.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover,
.form-input:-webkit-autofill:focus,
.form-textarea:-webkit-autofill,
.form-textarea:-webkit-autofill:hover,
.form-textarea:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    -webkit-text-fill-color: #333 !important;
    border-color: #d42d00 !important;
}


/* =====================================================
   FOOTER - FULL WIDTH
   ===================================================== */

.footer {
    background: #1a1a1a;
    color: #fff;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

/* Footer Container - No Side Spacing */
.footer-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

/* ===== FOOTER TOP ===== */

.footer-top {
    padding: 70px 60px 50px;
    background: linear-gradient(180deg, #1a1a1a 0%, #222 100%);
    position: relative;
}

/* Decorative Gradient Line */
.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d42d00, #5a6d52, #d42d00);
    background-size: 300% 100%;
    animation: gradientMove 4s ease-in-out infinite;
}

@keyframes gradientMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Decorative Background Pattern */
.footer-top::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 45, 0, 0.03) 0%, transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
}

/* ===== FOOTER GRID ===== */

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* ===== FOOTER COLUMN ===== */

.footer-col {
    animation: footerFadeUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.footer-col:nth-child(1) {
    animation-delay: 0.1s;
}
.footer-col:nth-child(2) {
    animation-delay: 0.2s;
}
.footer-col:nth-child(3) {
    animation-delay: 0.3s;
}
.footer-col:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes footerFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== BRAND COLUMN ===== */

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

/* Text Logo Fallback */
.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.footer-logo-text span {
    color: #d42d00;
}

.footer-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

/* ===== SOCIAL LINKS ===== */

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
}

.footer-social-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 45, 0, 0.3);
}

.footer-social-link:nth-child(1):hover {
    background: #1877f2;
    color: #fff;
}
.footer-social-link:nth-child(2):hover {
    background: #e4405f;
    color: #fff;
}
.footer-social-link:nth-child(3):hover {
    background: #ff0000;
    color: #fff;
}
.footer-social-link:nth-child(4):hover {
    background: #bd081c;
    color: #fff;
}
.footer-social-link:nth-child(5):hover {
    background: #0077b5;
    color: #fff;
}

/* ===== FOOTER HEADINGS ===== */

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #d42d00;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.footer-col:hover .footer-heading::after {
    width: 60px;
}

/* ===== FOOTER LINKS ===== */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #d42d00;
    font-size: 18px;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

/* ===== FOOTER CONTACT ===== */

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-contact li:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-contact li i {
    color: #d42d00;
    font-size: 16px;
    margin-top: 2px;
    min-width: 18px;
    transition: all 0.3s ease;
}

.footer-contact li:hover i {
    transform: scale(1.2);
    color: #5a6d52;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: #fff;
}

/* ===== FOOTER BOTTOM ===== */

.footer-bottom {
    background: #111;
    padding: 20px 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-copyright span {
    color: #d42d00;
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-divider {
    color: rgba(255, 255, 255, 0.15);
}

/* ===== BACK TO TOP BUTTON ===== */

.footer-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #d42d00;
    color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    z-index: 999;
    box-shadow: 0 8px 30px rgba(212, 45, 0, 0.4);
}

.footer-back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.footer-back-to-top:hover {
    background: #5a6d52;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(90, 109, 82, 0.4);
}

.footer-back-to-top:active {
    transform: scale(0.9);
}

/* =====================================================
   FOOTER RESPONSIVE
   ===================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .footer-top {
        padding: 60px 40px 40px;
    }

    .footer-bottom {
        padding: 18px 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-brand {
        max-width: 100%;
        grid-column: span 2;
    }

    .footer-description {
        max-width: 500px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .footer-top {
        padding: 50px 25px 35px;
    }

    .footer-bottom {
        padding: 16px 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-description {
        max-width: 100%;
        font-size: 14px;
    }

    .footer-heading {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-heading::after {
        width: 30px;
    }

    .footer-col:hover .footer-heading::after {
        width: 45px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-contact li {
        font-size: 13px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-copyright {
        font-size: 13px;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 8px;
    }

    .footer-bottom-links a {
        font-size: 12px;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-social-link {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .footer-back-to-top {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
    }

    .footer-logo img {
        height: 45px;
    }

    .footer-logo-text {
        font-size: 26px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .footer-top {
        padding: 40px 18px 30px;
    }

    .footer-bottom {
        padding: 14px 18px;
    }

    .footer-grid {
        gap: 25px;
    }

    .footer-description {
        font-size: 13px;
        line-height: 1.7;
    }

    .footer-heading {
        font-size: 17px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-contact li {
        font-size: 12px;
        gap: 10px;
        margin-bottom: 10px;
    }

    .footer-contact li i {
        font-size: 14px;
        min-width: 16px;
    }

    .footer-social-link {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .footer-social {
        gap: 8px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .footer-bottom-links a {
        font-size: 11px;
    }

    .footer-divider {
        font-size: 11px;
    }

    .footer-back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 15px;
        right: 15px;
    }

    .footer-logo img {
        height: 40px;
    }

    .footer-logo-text {
        font-size: 22px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .footer-top {
        padding: 30px 14px 25px;
    }

    .footer-bottom {
        padding: 12px 14px;
    }

    .footer-grid {
        gap: 20px;
    }

    .footer-heading {
        font-size: 15px;
    }

    .footer-links a {
        font-size: 11px;
    }

    .footer-contact li {
        font-size: 11px;
    }

    .footer-social-link {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }

    .footer-copyright {
        font-size: 11px;
    }
}

/* =====================================================
   FOOTER ANIMATIONS
   ===================================================== */

/* Hover Glow Effect on Footer */
.footer-col:hover .footer-heading::after {
    width: 60px;
}

/* Pulse animation for contact icons */
.footer-contact li i {
    animation: iconPulse 2s ease-in-out infinite;
}

.footer-contact li:nth-child(1) i {
    animation-delay: 0s;
}
.footer-contact li:nth-child(2) i {
    animation-delay: 0.3s;
}
.footer-contact li:nth-child(3) i {
    animation-delay: 0.6s;
}
.footer-contact li:nth-child(4) i {
    animation-delay: 0.9s;
}

@keyframes iconPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* Shimmer effect on footer bottom border */
.footer-bottom {
    position: relative;
    overflow: hidden;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -100%;
    width: 300%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 45, 0, 0.3), rgba(90, 109, 82, 0.3), transparent);
    animation: shimmerLine 6s ease-in-out infinite;
}

@keyframes shimmerLine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* =====================================================
   FOOTER PRINT STYLES
   ===================================================== */

@media print {
    .footer {
        background: #fff !important;
        color: #333 !important;
    }

    .footer-top::before,
    .footer-top::after,
    .footer-bottom::before {
        display: none !important;
    }

    .footer-social-link,
    .footer-back-to-top {
        display: none !important;
    }

    .footer-links a,
    .footer-contact li {
        color: #333 !important;
    }

    .footer-logo img {
        filter: none !important;
    }
}



/* =====================================================
   CONTACT SECTION
   ===================================================== */

.contact {
    padding: 100px 0;
    background: #f6f1eb;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 45, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* ===== CONTACT WRAPPER ===== */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    position: relative;
    z-index: 1;
}

/* ===== CONTACT INFO ===== */

.contact-info {
    display: flex;
    align-items: stretch;
}

.contact-info-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    width: 100%;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-info-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-info-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

/* ===== CONTACT DETAILS ===== */

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(212, 45, 0, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d42d00;
    font-size: 18px;
    transition: all 0.3s ease;
}

.contact-detail:hover .contact-detail-icon {
    background: #d42d00;
    color: #fff;
    transform: scale(1.05);
}

.contact-detail-content {
    flex: 1;
    padding-top: 2px;
}

.contact-detail-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.contact-detail-value {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-value:hover {
    color: #d42d00;
}

/* ===== SOCIAL LINKS ===== */

.contact-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f6f1eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-link:hover {
    background: #d42d00;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 45, 0, 0.3);
}

/* ===== CONTACT FORM ===== */

.contact-form-wrapper {
    background: #fff;
    padding: 50px 45px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

/* Form Groups */
.form-group {
    margin-bottom: 22px;
}

.form-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.required {
    color: #d42d00;
    font-weight: 700;
}

.optional {
    color: #999;
    font-weight: 400;
    font-size: 13px;
}

/* Input Wrapper */
.form-input-wrapper {
    position: relative;
}

.form-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 16px;
    transition: color 0.3s ease;
    pointer-events: none;
}

.textarea-icon {
    top: 18px;
    transform: none;
}

/* Inputs */
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px 14px 48px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #1a1a1a;
    background: #f8f5f0;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    outline: none;
}

.form-select {
    padding-right: 16px;
    appearance: none;
    cursor: pointer;
}

.form-textarea {
    padding-top: 16px;
    resize: vertical;
    min-height: 120px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    background: #fff;
    border-color: #d42d00;
    box-shadow: 0 0 0 4px rgba(212, 45, 0, 0.08);
}

.form-input:focus ~ .form-input-icon,
.form-select:focus ~ .form-input-icon,
.form-textarea:focus ~ .form-input-icon {
    color: #d42d00;
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #e74c3c;
    background: #fff5f5;
}

/* Error Messages */
.form-error {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #e74c3c;
    margin-top: 6px;
    display: none;
}

.form-error.visible {
    display: block;
}

/* Submit Button */
.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 35px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #d42d00;
    border: 2px solid #d42d00;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 5px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    background: #5a6d52;
    border-color: #5a6d52;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 45, 0, 0.3);
}

.submit-btn:active {
    transform: scale(0.97);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-btn .spinner {
    display: none;
}

.submit-btn.loading .spinner {
    display: inline-block;
}

.submit-btn.loading #submitText,
.submit-btn.loading #submitIcon {
    display: none;
}

/* Success Message */
.form-success {
    display: none;
    text-align: center;
    padding: 30px 20px;
    margin-top: 20px;
    background: rgba(90, 109, 82, 0.08);
    border-radius: 12px;
    border: 2px solid #5a6d52;
}

.form-success.show {
    display: block;
    animation: successFadeIn 0.5s ease;
}

@keyframes successFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-success i {
    font-size: 48px;
    color: #5a6d52;
    margin-bottom: 15px;
}

.form-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.form-success p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #666;
}

/* Error Message */
.form-error-message {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    margin-top: 15px;
    background: #fff5f5;
    border: 2px solid #e74c3c;
    border-radius: 12px;
    color: #e74c3c;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.form-error-message.show {
    display: flex;
}

.form-error-message i {
    font-size: 20px;
}

/* =====================================================
   CONTACT RESPONSIVE
   ===================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-card {
        padding: 40px 35px;
    }

    .contact-form-wrapper {
        padding: 40px 35px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .contact {
        padding: 70px 0;
    }

    .contact-wrapper {
        gap: 30px;
    }

    .contact-info-card {
        padding: 30px 25px;
    }

    .contact-info-title {
        font-size: 28px;
    }

    .contact-info-text {
        font-size: 15px;
    }

    .contact-form-wrapper {
        padding: 30px 25px;
    }

    .contact-detail {
        gap: 12px;
    }

    .contact-detail-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 15px;
    }

    .contact-detail-value {
        font-size: 14px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 12px 14px 12px 44px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 14px 30px;
        font-size: 15px;
    }

    .contact-social-link {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .form-success h3 {
        font-size: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .contact {
        padding: 50px 0;
    }

    .contact-info-card {
        padding: 25px 20px;
    }

    .contact-info-title {
        font-size: 24px;
    }

    .contact-form-wrapper {
        padding: 25px 18px;
    }

    .contact-detail {
        gap: 10px;
    }

    .contact-detail-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 13px;
        border-radius: 10px;
    }

    .contact-detail-value {
        font-size: 13px;
    }

    .contact-detail-label {
        font-size: 10px;
    }

    .form-label {
        font-size: 13px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 10px 12px 10px 40px;
        font-size: 13px;
        border-radius: 10px;
    }

    .form-input-icon {
        left: 14px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 12px 24px;
        font-size: 14px;
        border-radius: 10px;
    }

    .contact-social-link {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .form-success h3 {
        font-size: 18px;
    }

    .form-success p {
        font-size: 13px;
    }

    .form-error-message {
        font-size: 13px;
        padding: 12px 16px;
    }
}