/**
 * Dinterio Design Studio - Styles
 * Premium Turnkey Interiors
 */

/* ========================================
   0. Google Fonts Import
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ========================================
   1. CSS Variables & Reset
   ======================================== */
:root {
    --color-gold: #E53935;
    --color-gold-light: #FF5252;
    --color-dark: #1A1A1A;
    --color-dark-light: #2A2A2A;
    --color-light: #F5F5F7;
    --color-white: #FFFFFF;
    --color-gray-50: #F9FAFB;
    --color-gray-100: #F3F4F6;
    --color-gray-200: #E5E7EB;
    --color-gray-300: #D1D5DB;
    --color-gray-400: #9CA3AF;
    --color-gray-500: #6B7280;
    --color-gray-600: #4B5563;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background: var(--color-white);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

/* ========================================
   2. Utility Classes
   ======================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

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

.text-dark {
    color: var(--color-dark);
}

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

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

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

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

.font-light {
    font-weight: 300;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wide {
    letter-spacing: 0.05em;
}

.tracking-wider {
    letter-spacing: 0.1em;
}

.tracking-widest {
    letter-spacing: 0.2em;
}

.hidden {
    display: none;
}

.block {
    display: block;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.inline-flex {
    display: inline-flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.rounded-sm {
    border-radius: 0.125rem;
}

.rounded {
    border-radius: 0.25rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

.opacity-60 {
    opacity: 0.6;
}

.opacity-70 {
    opacity: 0.7;
}

.opacity-80 {
    opacity: 0.8;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

.z-30 {
    z-index: 30;
}

.z-40 {
    z-index: 40;
}

.z-50 {
    z-index: 50;
}

.overflow-hidden {
    overflow: hidden;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========================================
   3. Components - Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    border-radius: 0.125rem;
    transition: var(--transition);
    text-transform: uppercase;
    white-space: nowrap;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

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

.btn-gold:hover {
    background: var(--color-gold-light);
    transform: scale(1.02);
}

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

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
}

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

.btn-dark:hover {
    background: var(--color-dark-light);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
}

.btn-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-outline-dark {
    background: transparent;
    border: 1px solid rgba(26, 26, 26, 0.2);
    color: var(--color-dark);
}

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

.btn-outline-light {
    background: transparent;
    border: 1px solid rgba(229, 57, 53, 0.3);
    color: var(--color-white);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-block {
    width: 100%;
}

/* ========================================
   4. Components - Forms
   ======================================== */
.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(26, 26, 26, 0.6);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--color-gray-200);
    border-radius: 0.125rem;
    background: var(--color-white);
    color: var(--color-dark);
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-gold);
}

.form-input::placeholder {
    color: rgba(26, 26, 26, 0.4);
}

textarea.form-input {
    resize: none;
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239CA3AF'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
}

.form-error {
    color: #EF4444;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* ========================================
   5. Layout - Top Bar
   ======================================== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: var(--color-dark);
    color: var(--color-white);
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    text-align: center;
    letter-spacing: 0.1em;
    display: none;
}

@media (min-width: 768px) {
    .top-bar {
        display: block;
    }
}

/* ========================================
   6. Layout - Navbar
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .navbar {
        top: 35px;
    }
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
    padding: 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 98px;
    padding: 0 1rem;
}

.navbar-logo img {
    height: 4.5rem;
    width: auto;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .navbar-logo img {
        height: 6rem;
    }
}

.navbar-links {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .navbar-links {
        display: flex;
    }
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-dark);
    transition: var(--transition);
}

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

.mobile-menu-btn {
    display: flex;
    padding: 0.5rem;
    color: var(--color-dark);
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-dark);
    border-bottom: 1px solid rgba(229, 57, 53, 0.2);
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.mobile-menu-content {
    padding: 0.5rem 1rem 1.5rem;
    text-align: center;
}

.mobile-badge {
    padding: 0.75rem 0;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(229, 57, 53, 0.3);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-link:hover {
    color: var(--color-gold);
}

.mobile-menu-buttons {
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ========================================
   7. Components - Modal
   ======================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.modal-content {
    position: relative;
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    max-width: 28rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-2xl);
    animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@media (min-width: 768px) {
    .modal-content {
        padding: 2rem;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem;
    color: var(--color-gray-500);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--color-gold);
}

.modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
}

.modal-subtitle {
    color: rgba(26, 26, 26, 0.6);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.modal-footer-text {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(26, 26, 26, 0.4);
    margin-top: 1rem;
}

/* Success State */
.modal-success {
    text-align: center;
    padding: 2rem 0;
}

.modal-success .success-icon {
    width: 4rem;
    height: 4rem;
    color: #22C55E;
    margin: 0 auto 1rem;
}

/* ========================================
   8. WhatsApp Button
   ======================================== */
.whatsapp-button {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    width: 3.5rem;
    height: 3.5rem;
    background: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   9. Main Content
   ======================================== */
.main-content {
    padding-top: 5rem;
}

@media (min-width: 768px) {
    .main-content {
        padding-top: 7rem;
    }
}

/* ========================================
   10. Hero Section
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: #000;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    padding-top: 4rem;
}

.hero-inner {
    max-width: 56rem;
}

.hero-badge {
    font-size: 0.625rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-badge {
        font-size: 0.875rem;
        letter-spacing: 0.4em;
    }
}

.hero-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.1;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    max-width: 42rem;
    margin: 0 auto 1.5rem;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
}

.hero-buttons .btn {
    width: 100%;
}

@media (min-width: 640px) {
    .hero-buttons .btn {
        width: auto;
    }
}

.hero-indicators {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 0.75rem;
}

.hero-indicator {
    height: 0.375rem;
    width: 1rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    transition: var(--transition-slow);
    cursor: pointer;
}

.hero-indicator.active {
    width: 2.5rem;
    background: var(--color-gold);
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    z-index: 20;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: bounce 2s infinite;
}

@media (min-width: 768px) {
    .hero-scroll {
        display: flex;
    }
}

.hero-scroll span {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    writing-mode: vertical-rl;
}

.hero-scroll-line {
    width: 1px;
    height: 5rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* ========================================
   11. Sections
   ======================================== */
.section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 6rem 0;
    }
}

.section-dark {
    background: var(--color-dark);
    color: var(--color-white);
}

.section-light {
    background: var(--color-gray-50);
}

.section-gold {
    background: var(--color-gold);
    color: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

.section-subtitle {
    font-size: 0.75rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 0.875rem;
        letter-spacing: 0.3em;
    }
}

.section-dark .section-subtitle,
.section-gold .section-subtitle {
    color: var(--color-gold);
}

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

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    max-width: 42rem;
    margin: 1rem auto 0;
    color: rgba(26, 26, 26, 0.6);
    font-weight: 300;
}

.section-dark .section-description {
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   12. Cards & Grids
   ======================================== */
.grid-2 {
    display: grid;
    gap: 1.5rem;
}

.grid-3 {
    display: grid;
    gap: 1.5rem;
}

.grid-4 {
    display: grid;
    gap: 1.5rem;
}

.grid-6 {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: var(--transition-slow);
}

@media (min-width: 768px) {
    .card {
        padding: 2rem;
    }
}

.card:hover {
    border-color: rgba(229, 57, 53, 0.3);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(229, 57, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
    transition: var(--transition-slow);
}

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

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card:hover .card-title {
    color: var(--color-gold);
}

.card-text {
    color: rgba(26, 26, 26, 0.6);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(26, 26, 26, 0.6);
    margin-top: 0.25rem;
}

.section-gold .stat-number,
.section-dark .stat-number {
    color: var(--color-white);
}

.section-gold .stat-label {
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   13. Portfolio Grid
   ======================================== */
.portfolio-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.portfolio-item {
    display: block;
    position: relative;
}

.portfolio-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 0.125rem;
    margin-bottom: 1rem;
}

.aspect-square {
    aspect-ratio: 1 / 1 !important;
}

.aspect-video {
    aspect-ratio: 16 / 9 !important;
}

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

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

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

.portfolio-item:hover .portfolio-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.portfolio-overlay span {
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--color-white);
    opacity: 0;
    transition: var(--transition-slow);
}

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

.portfolio-location {
    font-size: 0.75rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.portfolio-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    transition: var(--transition);
}

@media (min-width: 768px) {
    .portfolio-name {
        font-size: 1.25rem;
    }
}

.portfolio-item:hover .portfolio-name {
    color: var(--color-gold);
}

.portfolio-desc {
    color: rgba(26, 26, 26, 0.6);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.portfolio-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--color-gray-100);
    font-size: 0.75rem;
    color: rgba(26, 26, 26, 0.7);
    border-radius: 9999px;
    margin-top: 0.75rem;
}

/* ========================================
   14. Blog Grid
   ======================================== */
.blog-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 640px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem 3rem;
    }
}

.blog-item {
    display: flex;
    flex-direction: column;
}

.blog-image {
    position: relative;
    overflow: hidden;
    border-radius: 0.125rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .blog-image {
        /* height removed to use aspect-video class */
    }
}

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

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

.blog-meta {
    font-size: 0.75rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .blog-title {
        font-size: 1.5rem;
    }
}

.blog-item:hover .blog-title {
    color: var(--color-gold);
}

.blog-excerpt {
    color: rgba(26, 26, 26, 0.6);
    font-size: 0.875rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.blog-item:hover .blog-read-more {
    transform: translateX(0.5rem);
    color: var(--color-gold);
}

.blog-read-more::after {
    content: '';
    display: block;
    width: 2rem;
    height: 1px;
    background: var(--color-gold);
}

/* ========================================
   15. Testimonials
   ======================================== */
.testimonials-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

@media (min-width: 768px) {
    .testimonial-card {
        padding: 2rem;
    }
}

.section-light .testimonial-card {
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-xl);
}

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

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.section-light .testimonial-text {
    color: rgba(26, 26, 26, 0.7);
}

.testimonial-author {
    font-weight: 700;
}

.testimonial-location {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.section-light .testimonial-location {
    color: rgba(26, 26, 26, 0.5);
}

/* ========================================
   16. Video Section
   ======================================== */
.video-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.video-item {
    position: relative;
}

.video-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
}

.video-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: 1rem;
    color: var(--color-dark);
    transition: var(--transition);
}

.video-item:hover .video-title {
    color: var(--color-gold);
}

/* ========================================
   17. Process Steps
   ======================================== */
.process-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 640px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    text-align: center;
    padding: 1.5rem;
}

.process-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(229, 57, 53, 0.2);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .process-number {
        font-size: 3.75rem;
    }
}

.process-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.process-desc {
    color: rgba(26, 26, 26, 0.6);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* ========================================
   18. Areas/Tags
   ======================================== */
.areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.area-tag {
    padding: 0.75rem 1.5rem;
    background: var(--color-gray-50);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    transition: var(--transition);
    cursor: pointer;
}

.area-tag:hover {
    background: var(--color-gold);
    color: var(--color-white);
}

/* ========================================
   19. Footer
   ======================================== */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding-top: 5rem;
    padding-bottom: 2.5rem;
    border-top: 1px solid rgba(229, 57, 53, 0.2);
}

.footer-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    height: 6rem;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.footer-heading {
    color: var(--color-gold);
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: var(--transition);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.contact-icon {
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 0.125rem;
    width: 1.25rem;
    height: 1.25rem;
}

.contact-item a:hover {
    color: var(--color-gold);
}

.footer-banner {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-title {
    color: var(--color-gold);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.banner-subtitle {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

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

/* ========================================
   20. About Page Specific
   ======================================== */
.about-image-container {
    position: relative;
}

.about-image-border-top {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 5rem;
    height: 5rem;
    border-top: 2px solid var(--color-gold);
    border-left: 2px solid var(--color-gold);
    z-index: 10;
}

.about-image-border-bottom {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 5rem;
    height: 5rem;
    border-bottom: 2px solid var(--color-gold);
    border-right: 2px solid var(--color-gold);
    z-index: 10;
}

.about-image {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 0.125rem;
    box-shadow: var(--shadow-2xl);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-image:hover img {
    transform: scale(1.1);
}

/* ========================================
   21. Contact Page Specific
   ======================================== */
.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.contact-info-card {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

@media (min-width: 768px) {
    .contact-info-card {
        padding: 2rem;
    }
}

.contact-info-card h2 {
    color: var(--color-gold);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-form-card {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-gray-100);
}

@media (min-width: 768px) {
    .contact-form-card {
        padding: 2rem;
    }
}

.budget-note {
    background: rgba(229, 57, 53, 0.1);
    border: 1px solid rgba(229, 57, 53, 0.3);
    color: var(--color-gold);
    padding: 0.75rem;
    border-radius: 0.125rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: rgba(26, 26, 26, 0.7);
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.why-choose-bullet {
    width: 1.5rem;
    height: 1.5rem;
    background: rgba(229, 57, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.why-choose-bullet span {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--color-gold);
    border-radius: 50%;
}

/* ========================================
   22. Landing Page Specific
   ======================================== */
/* ========================================
   22. Landing Page Specific (Premium Redesign)
   ======================================== */
.landing-sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: var(--color-dark);
    padding: 0.75rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(229, 57, 53, 0.3);
}

.landing-sticky-bar p {
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    letter-spacing: 0.05em;
}

.landing-sticky-bar a {
    font-weight: 600;
    color: var(--color-gold);
}

.landing-hero {
    padding-top: 5rem;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--color-dark);
}

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

.landing-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.landing-hero-overlay {
    position: absolute;
    inset: 0;
}

.landing-hero-content {
    position: relative;
    z-index: 10;
}

.landing-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .landing-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.landing-form-card {
    background: var(--color-white);
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    max-width: 32rem;
    margin: 0 auto;
    position: relative;
}

@media (min-width: 768px) {
    .landing-form-card {
        padding: 3rem;
    }
}

@media (min-width: 1024px) {
    .landing-form-card {
        margin: 0 0 0 auto;
    }
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    padding-top: 2rem;
}

.trust-badge {
    display: flex;
    flex-direction: column;
}

.trust-badge svg {
    display: none;
}

.landing-brand-logo {
    height: 7rem;
    width: auto;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .landing-brand-logo {
        height: 10rem;
    }
}

/* ========================================
   23. Admin Page
   ======================================== */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-50);
    padding: 1rem;
}

.admin-login-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-xl);
    max-width: 24rem;
    width: 100%;
}

.admin-dashboard {
    padding: 2rem 1rem;
    background: var(--color-gray-50);
    min-height: 100vh;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.admin-tab {
    padding: 0.75rem 1.5rem;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
}

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

.admin-table {
    width: 100%;
    background: var(--color-white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-gray-100);
}

.admin-table th {
    background: var(--color-gray-50);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: var(--color-gray-600);
}

.admin-table td {
    font-size: 0.875rem;
}

.admin-actions {
    display: flex;
    gap: 0.5rem;
}

.admin-btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0.25rem;
    transition: var(--transition);
}

.admin-btn-approve {
    background: #22C55E;
    color: white;
}

.admin-btn-archive {
    background: var(--color-gray-500);
    color: white;
}

.admin-btn-delete {
    background: #EF4444;
    color: white;
}

.admin-btn:hover {
    opacity: 0.8;
}

/* ========================================
   24. Page Hero
   ======================================== */
.page-hero {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 5rem 0 4rem;
}

@media (min-width: 768px) {
    .page-hero {
        padding: 7rem 0 5rem;
    }
}

.page-hero-content {
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.page-hero-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 640px) {
    .page-hero-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .page-hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .page-hero-title {
        font-size: 3.75rem;
    }
}

.page-hero-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .page-hero-desc {
        font-size: 1.125rem;
    }
}

/* ========================================
   25. Icon Styles
   ======================================== */
.icon {
    width: 1.5rem;
    height: 1.5rem;
}

.icon-sm {
    width: 1rem;
    height: 1rem;
}

.icon-lg {
    width: 2rem;
    height: 2rem;
}

/* ========================================
   26. Animation Utilities
   ======================================== */
.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   27. Service List Items
   ======================================== */
.service-features {
    margin-top: 1.5rem;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(26, 26, 26, 0.7);
    margin-bottom: 0.5rem;
}

.service-feature svg {
    color: var(--color-gold);
    width: 0.875rem;
    height: 0.875rem;
    flex-shrink: 0;
}

/* ========================================
   28. Two Column Layout
   ======================================== */
.two-col-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .two-col-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Success/Error Messages */
.alert {
    padding: 1rem;
    border-radius: 0.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.alert-success {
    background: #DCFCE7;
    border: 1px solid #86EFAC;
    color: #166534;
}

.alert-error {
    background: #FEE2E2;
    border: 1px solid #FCA5A5;
    color: #991B1B;
}

/* Border Styling */
.border-t {
    border-top: 1px solid var(--color-gray-200);
}

.border-b {
    border-bottom: 1px solid var(--color-gray-200);
}

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

/* Aspect Ratios */
.aspect-square {
    aspect-ratio: 1/1;
}

.aspect-video {
    aspect-ratio: 16/9;
}

.aspect-4-3 {
    aspect-ratio: 4/3;
}

.aspect-4-5 {
    aspect-ratio: 4/5;
}

/* Object Fit */
.object-cover {
    object-fit: cover;
}