@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===================================
   CSS VARIABLES
   =================================== */
:root {
    --burnt-sienna: #C46C2B;
    --charcoal-brown: #2B1B10;
    --primary-color: var(--charcoal-brown);
    --secondary-color: #F7F2EE;
    --accent-color: var(--burnt-sienna);
    --text-light: #ffffff;
    --text-dark: var(--charcoal-brown);
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --overlay-light: rgba(0, 0, 0, 0.4);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lora', serif;
    --font-ui: 'Poppins', sans-serif;
}

/* ===================================
   GLOBAL STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: var(--font-ui);
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--secondary-color);
    line-height: 1.8;
    font-weight: 400;

    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-ui);
    color: var(--charcoal-brown);
    font-weight: 700;
    line-height: 1.2;
}

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

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin: 0;
}

.navbar-brand-wrapper {
    display: flex;
}

.navbar-brand-mobile {
    padding: 0;
    margin: 0;
}

.navbar-brand-mobile img {
    transition: var(--transition);
    display: block;
}

.navbar.scrolled .navbar-brand-mobile img {
    height: 45px !important;
    width: 45px !important;
}

.navbar-brand img {
    transition: var(--transition);
}

.navbar.scrolled .navbar-brand img {
    height: 80px !important;
    width: 80px !important;
}

.brand-subtitle {
    font-size: 16px;
    color: var(--charcoal-brown);
    opacity: 0.85;
    letter-spacing: 1.5px;
    text-transform: lowercase;
    font-weight: 400;
    margin-top: 0.25rem;
    font-family: var(--font-ui);
}

.navbar-nav {
    gap: 2rem;
}

.navbar-nav .nav-link {
    color: var(--charcoal-brown);
    font-size: 18px;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.5px;
    font-family: var(--font-ui);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

.navbar-toggler {
   border: none !important;
    position: relative;
    transition: var(--transition);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(196, 108, 43, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(43,27,16)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: transform 0.3s ease-in-out;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(43,27,16)' stroke-linecap='round' stroke-width='2' d='M7 7l16 16M23 7L7 23'/%3e%3c/svg%3e");
}

/* ===================================
   MOBILE NAVBAR STYLES
   =================================== */
@media (max-width: 991px) {
    .navbar {
        padding: 0.7rem 0;
    }

    .navbar.scrolled {
        padding: 0.5rem 0;
    }

    .navbar-brand-wrapper {
        margin-bottom: 0 !important;
    }

    .navbar-brand img {
        height: 80px !important;
        width: 80px !important;
    }

    .navbar.scrolled .navbar-brand img {
        height: 70px !important;
        width: 70px !important;
    }

    .brand-subtitle {
        font-size: 0.65rem;
        margin-top: 0.15rem;
    }

    .navbar-nav {
        gap: 0.5rem;
        padding: 1rem 0;
    }

    .navbar-nav .nav-link {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 0.55rem 0;
    }

    .navbar.scrolled {
        padding: 0.4rem 0;
    }

    .navbar-brand-mobile img {
        height: 65px !important;
        width: 65px !important;
    }

    .navbar.scrolled .navbar-brand-mobile img {
        height: 42px !important;
        width: 42px !important;
    }

    .navbar-nav {
        gap: 0;
        padding: 0.8rem 0;
    }

    .navbar-nav .nav-link {
        font-size: 0.875rem;
        padding: 0.6rem 0;
    }

    .navbar-toggler {
        padding: 0.4rem 0.6rem;
    }
}

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

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(43, 27, 16, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(196, 108, 43, 0.3) 100%),
        radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    padding-top: 15rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.1;
    font-family: var(--font-ui);
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.5),
        0 5px 30px rgba(196, 108, 43, 0.3);
    letter-spacing: 2px;
    /* text-transform: uppercase; */
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.btn-custom {
    background: linear-gradient(135deg, var(--burnt-sienna) 0%, #9a5a2a 100%);
    color: var(--text-light);
    border: none;
    padding: 1.1rem 3rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 
        0 10px 30px rgba(196, 108, 43, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.2);
    font-family: var(--font-ui);
    text-transform: uppercase;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    box-shadow: 
        0 10px 30px rgba(255, 255, 255, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--charcoal-brown);
    box-shadow: 
        0 15px 40px rgba(255, 255, 255, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition);
}

.btn-custom:hover::before {
    left: 100%;
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(196, 108, 43, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--text-light);
    font-size: 2rem;
    animation: bounce 2s infinite;
    opacity: 0.9;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ===================================
   SECTION HEADINGS
   =================================== */
.section-heading {
    font-family: var(--font-ui);
    font-size: clamp(3rem, 6vw, 3.5rem);
    font-weight: 500;
    font-style: normal;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
    /* text-transform: uppercase; */
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
}

.section-subheading {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 4rem;
    line-height: 1.6;
    font-family: var(--font-ui);
}

/* ===================================
   PHOTOGRAPHY SECTION
   =================================== */
.pictures-section {
    background: var(--secondary-color);
    position: relative;
    padding: 100px 10px 100px 10px !important;
}

.masonry-grid {
    column-count: 3;
    column-gap: 1rem;
    padding: 0;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    padding: 0;
}

.picture-card {
    height: auto;
    overflow: hidden;
    position: relative;
    display: block;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.picture-card:hover {
    box-shadow: 0 15px 40px rgba(196, 108, 43, 0.2);
    transform: translateY(-5px);
}

.picture-img {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
}

.picture-img a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.picture-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

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

.picture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.45) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.picture-icon {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    opacity: 0.95;
    transition: var(--transition);
    transform: scale(0.8);
}

.picture-card:hover .picture-icon {
    transform: scale(1.1);
    opacity: 1;
}

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

.picture-overlay h3 {
    font-family: var(--font-ui);
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-style: normal;
    transform: translateY(20px);
    transition: var(--transition);
    letter-spacing: -0.5px;
}

.picture-card:hover .picture-overlay h3 {
    transform: translateY(0);
}

.picture-overlay p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    text-align: center;
    transform: translateY(20px);
    transition: var(--transition);
    transition-delay: 0.05s;
}

.picture-card:hover .picture-overlay p {
    transform: translateY(0);
}

.glightbox-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.btn-view {
    background: var(--accent-color);
    color: var(--text-light);
    border: none;
    padding: 0.85rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 50px;
    transform: translateY(20px);
    transition-delay: 0.1s;
    box-shadow: 0 5px 20px rgba(196, 108, 43, 0.3);
}

.picture-card:hover .btn-view {
    transform: translateY(0);
}

.btn-view:hover {
    background: var(--text-light);
    color: var(--accent-color);
    transform: scale(1.05) translateY(0);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* ===================================
   REELS SECTION
   =================================== */
.micro-reels-section {
    background: #1a1a1a;
    color: var(--text-light);
    padding: 80px 0 !important;
}

.micro-reels-section .section-heading,
.micro-reels-section .section-subheading {
    color: var(--text-light);
}

.reel-card {
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.reel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(196, 108, 43, 0.3);
}

.reel-thumbnail {
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.reel-thumbnail a {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: var(--transition);
}

.reel-card:hover .reel-video {
    filter: brightness(1);
    transform: scale(1.05);
}

.reel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.45) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.reel-icon {
    font-size: 3.5rem;
    color: var(--text-light);
    opacity: 0.95;
    transition: var(--transition);
    transform: scale(0.8);
}

.reel-thumbnail:hover .reel-overlay {
    opacity: 1;
}

.reel-thumbnail:hover .reel-icon {
    transform: scale(1.1);
    opacity: 1;
}

.reel-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
    z-index: 1;
}

.reel-info h4 {
    font-family: var(--font-ui);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-style: normal;
    letter-spacing: -0.5px;
}

.reel-info p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.85;
}

/* ===================================
   DESIGN WORK SECTION
   =================================== */
.design-work-section {
    background: linear-gradient(135deg, rgba(43, 27, 16, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%),
                url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"%3E%3Crect fill="%232B1B10" width="1920" height="1080"/%3E%3C/svg%3E');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 80px 0 !important;
}

.design-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.design-work-section .container {
    position: relative;
    z-index: 2;
}

.design-work-section .container-fluid {
    position: relative;
    z-index: 2;
}

.design-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
    height: 100%;
}

.design-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 60px rgba(196, 108, 43, 0.2);
    border-color: rgba(196, 108, 43, 0.3);
}

.design-card-inner {
    padding: 3rem 2.5rem;
    color: var(--text-light);
}

.design-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color) 0%, #9a5a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(196, 108, 43, 0.3);
}

.design-card:hover .design-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 30px rgba(196, 108, 43, 0.5);
}

.design-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-style: normal;
    color: var(--text-light);
    letter-spacing: -0.5px;
}

.design-card p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.design-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.design-features li {
    padding: 0.6rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.design-features i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.btn-design {
    background: var(--text-light);
    color: #000;
    border: none;
    padding: 0.85rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 30px;
    width: 100%;
}

.btn-design:hover {
    background: var(--accent-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(196, 108, 43, 0.3);
}

/* ===================================
   BRANDS SECTION
   =================================== */
.brands-section {
    background: var(--secondary-color);
    padding: 80px 0 !important;
}

.brand-heading {
    font-family: var(--font-ui);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    font-style: normal;
    color: var(--accent-color);
    letter-spacing: -0.5px;
}

.brand-logo {
    transition: var(--transition);
    padding: 1rem;
}

.brand-item {
    width: 100%;
    height: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
    padding: 1rem;
}

.brand-logo:hover .brand-item {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* ===================================
   ABOUT SECTION - LEFT IMAGE + RIGHT CONTENT
   =================================== */
.about-section {
    background: linear-gradient(135deg, rgba(43, 27, 16, 0.97) 0%, rgba(0, 0, 0, 0.92) 100%),
                url('data:image/svg+xml,%3Csvg width="1920" height="1080" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" /%3E%3CfeColorMatrix values="0 0 0 0 0, 0 0 0 0 0, 0 0 0 0 0, 0 0 0 0.03 0"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 !important;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(196, 108, 43, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(43, 27, 16, 0.3) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

/* Image Wrapper */
.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
}

.about-image-decorative {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(196, 108, 43, 0.3) 100%);
    border-radius: 300px 20px 300px 20px;
    z-index: 1;
}

.about-main-image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 300px 20px 300px 20px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 2;
    transition: var(--transition);
}

.about-image-wrapper:hover .about-main-image {
    transform: scale(1.02);
    box-shadow: 
        0 40px 100px rgba(196, 108, 43, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Content */
.about-content {
    color: var(--text-light);
}

.about-title {
    font-family: var(--font-ui);
    font-size: clamp(3rem, 6vw, 3.5rem);
    font-weight: 500;
    font-style: normal;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: 2px;
    /* text-transform: uppercase; */
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
}

.about-subtitle {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    font-family: var(--font-ui);
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

/* Features */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(196, 108, 43, 0.15);
    border-color: rgba(196, 108, 43, 0.3);
    transform: translateX(5px);
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Stats */
.about-stats {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-family: var(--font-ui);
    font-size: 3rem;
    font-weight: 500;
    color: var(--accent-color);
    font-style: normal;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    font-family: var(--font-ui);
}

@media (max-width: 991px) {
    .about-image-wrapper {
        height: 500px;
        margin-bottom: 3rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-image-wrapper {
        height: 400px;
    }
    
    .about-image-decorative {
        border-radius: 200px 15px 200px 15px;
    }
    
    .about-main-image {
        border-radius: 200px 15px 200px 15px;
    }
    .hero-content {
        padding-top: 5rem;
    }
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    background: var(--secondary-color);
    padding: 100px 0 !important;
}
.contact-section a{text-decoration: none;}

.contact-title {
    font-family: var(--font-ui);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 500;
    font-style: normal;
    color: var(--text-dark);
    letter-spacing: 2px;
    /* text-transform: uppercase; */
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    font-family: var(--font-body);
}

.contact-info-box {
    padding: 2rem 1.5rem;
    border-radius: 12px;
    background: rgba(196, 108, 43, 0.05);
    border: 1px solid rgba(196, 108, 43, 0.1);
    transition: var(--transition);
}

.contact-info-box:hover {
    background: rgba(196, 108, 43, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 108, 43, 0.1);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-info-box h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-ui);
}

.contact-info-box p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    font-family: var(--font-body);
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    font-family: var(--font-ui);
}

.contact-input {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.9rem 1.2rem;
    background: #fff;
    transition: var(--transition);
    font-size: 1rem;
    color: var(--text-dark);
    font-family: var(--font-body);
}

.contact-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(196, 108, 43, 0.1);
    border-color: var(--accent-color);
    background: #fff;
}

.btn-submit {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 1.1rem 4rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-ui);
    text-transform: uppercase;
}

.btn-submit:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 108, 43, 0.3);
}

/* ===================================
   FOOTER
   =================================== */
.footer-section {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 40px 0 !important;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--accent-color);
    color: var(--text-light);
    transform: translateY(-3px);
}

.footer-text {
    font-size: 0.9rem;
    opacity: 0.85;
    color: var(--text-light);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1200px) {
    .masonry-grid {
        column-count: 2;
    }
    
    .navbar-nav {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-custom {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .reel-card {
        height: 400px;
    }
    
    .team-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .masonry-grid {
        column-count: 1;
    }
    
    .navbar-nav {
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 8px;
        gap: 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    .brand-subtitle {
        font-size: 0.65rem;
    }
    
    .reel-card {
        height: 450px;
    }
    
    .design-card-inner {
        padding: 2rem 1.5rem;
    }
    
    .hero-section {
        min-height: 500px;
    }
    
    .scroll-indicator {
        font-size: 1.5rem;
        bottom: 1rem;
    }
    
    .brand-item {
        height: 100px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn-custom {
        padding: 0.85rem 2rem;
        font-size: 0.75rem;
    }
    
    .section-heading {
        font-size: 2rem;

    }
    
    .section-subheading {
        font-size: 0.95rem;
    }
    
    .reel-card {
        height: 400px;
    }
    
    .team-image-wrapper {
        height: 250px;
    }
    
    .team-info {
        padding: 2rem 1.5rem;
    }
    
    .contact-info-box {
        margin-bottom: 1rem;
    }
}

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

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-3 { margin-top: 1rem; }
.mt-5 { margin-top: 3rem; }

.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }  