/* ================================================================
   STYLE.CSS - AMAN INTERIOR
   Complete responsive styles
   ================================================================ */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: #0d0d0d;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ================================================================
   NAVBAR - FULLY RESPONSIVE
   ================================================================ */
.navbar-wrapper {
    background: rgba(18, 18, 28, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 215, 175, 0.08);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar-wrapper.scrolled {
    background: rgba(12, 12, 20, 0.96);
    box-shadow: 0 8px 50px rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(255, 215, 175, 0.12);
}

.navbar {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 82px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4a373, #b87c4b);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 8px 24px rgba(184, 124, 75, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
    border-radius: 16px;
    pointer-events: none;
}

.logo:hover .logo-icon {
    transform: scale(1.06) rotate(-3deg);
    box-shadow: 0 12px 36px rgba(184, 124, 75, 0.5);
}

.logo-icon i {
    position: relative;
    z-index: 2;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-text .brand {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.7px;
    color: #ffffff;
}

.logo-text .brand span {
    background: linear-gradient(135deg, #d4a373, #f5d6b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text .tag {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.4px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-text .tag i {
    color: #d4a373;
    font-size: 10px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 22px;
    border-radius: 60px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links li a i {
    font-size: 15px;
    color: #d4a373;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    background: rgba(212, 163, 115, 0.12);
    color: #ffffff;
    transform: translateY(-2px);
}

.nav-links li a:hover i {
    opacity: 1;
    transform: scale(1.1);
    color: #f5d6b3;
}

.nav-links li a.active {
    background: rgba(212, 163, 115, 0.15);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(184, 124, 75, 0.1);
}

.nav-links li a.active i {
    opacity: 1;
    color: #f5d6b3;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, #b87c4b, #f5d6b3);
    border-radius: 6px;
    box-shadow: 0 0 12px rgba(184, 124, 75, 0.4);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateX(-50%);
}

.nav-links li a:hover::after {
    width: 60%;
}

.nav-links li a.active::after {
    width: 60%;
}

.btn-cta {
    background: linear-gradient(135deg, #d4a373 0%, #b87c4b 100%);
    color: #fff !important;
    padding: 12px 32px !important;
    border-radius: 60px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    letter-spacing: 0.4px;
    box-shadow: 0 8px 28px rgba(184, 124, 75, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 40%, rgba(255,255,255,0.05) 100%);
    border-radius: 60px;
    pointer-events: none;
    z-index: 1;
}

.btn-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f5d6b3, #d4a373);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 60px;
    z-index: 0;
}

.btn-cta:hover::after {
    opacity: 1;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 40px rgba(184, 124, 75, 0.5);
}

.btn-cta span,
.btn-cta i {
    position: relative;
    z-index: 2;
}

.btn-cta i {
    color: #fff !important;
    font-size: 15px !important;
    opacity: 1 !important;
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(184, 124, 75, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(184, 124, 75, 0); }
    100% { box-shadow: 0 0 0 0 rgba(184, 124, 75, 0); }
}
.btn-cta {
    animation: pulse-ring 2.5s infinite;
}
.btn-cta:hover {
    animation: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px 6px;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.hamburger:hover {
    background: rgba(212, 163, 115, 0.1);
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #f5d6b3;
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: #f5d6b3;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-16px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ================================================================
   HERO SECTION - FULLY RESPONSIVE
   ================================================================ */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 32px 60px;
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    min-height: calc(100vh - 82px);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(184, 124, 75, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(212, 163, 115, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 163, 115, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 163, 115, 0.15);
    padding: 8px 20px;
    border-radius: 60px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    width: fit-content;
    letter-spacing: 0.3px;
}

.hero-badge i {
    color: #d4a373;
    font-size: 14px;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 600;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -1px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #d4a373, #f5d6b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #b87c4b, transparent);
    border-radius: 6px;
    opacity: 0.3;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    max-width: 520px;
}

.hero-description strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
}

.hero-actions .btn-primary {
    background: linear-gradient(135deg, #d4a373, #b87c4b);
    color: #fff;
    padding: 16px 36px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 28px rgba(184, 124, 75, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border: none;
    cursor: pointer;
}

.hero-actions .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 40%, rgba(255,255,255,0.05) 100%);
    border-radius: 60px;
    pointer-events: none;
    z-index: 1;
}

.hero-actions .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f5d6b3, #d4a373);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 60px;
    z-index: 0;
}

.hero-actions .btn-primary:hover::after {
    opacity: 1;
}

.hero-actions .btn-primary span,
.hero-actions .btn-primary i {
    position: relative;
    z-index: 2;
}

.hero-actions .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 40px rgba(184, 124, 75, 0.5);
}

.hero-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 16px 32px;
    border-radius: 60px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.hero-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 163, 115, 0.3);
    transform: translateY(-2px);
    color: #ffffff;
}

.hero-actions .btn-secondary i {
    color: #d4a373;
    font-size: 16px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 8px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-stats .stat-item {
    display: flex;
    flex-direction: column;
}

.hero-stats .stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.hero-stats .stat-number span {
    color: #d4a373;
}

.hero-stats .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1/1;
    margin: 0 auto;
}

.hero-card {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(30, 30, 50, 0.6), rgba(20, 20, 35, 0.8));
    backdrop-filter: blur(20px);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(212, 163, 115, 0.08), transparent 60%);
    pointer-events: none;
}

.hero-card .icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.hero-card .icon-item {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 20px 12px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-card .icon-item:hover {
    background: rgba(212, 163, 115, 0.1);
    border-color: rgba(212, 163, 115, 0.2);
    transform: translateY(-4px);
}

.hero-card .icon-item i {
    font-size: 28px;
    color: #d4a373;
}

.hero-card .icon-item span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.hero-card .card-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 6px;
    position: relative;
    z-index: 2;
}

.hero-card .card-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 2;
}

.hero-card .card-subtitle i {
    color: #d4a373;
    margin: 0 4px;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.floating-element.e1 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.15), transparent);
    top: -20px;
    right: -20px;
    animation: float 6s ease-in-out infinite;
}

.floating-element.e2 {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(184, 124, 75, 0.1), transparent);
    bottom: -10px;
    left: -10px;
    animation: float 8s ease-in-out infinite reverse;
}

.floating-element.e3 {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(245, 214, 179, 0.08), transparent);
    top: 50%;
    right: -30px;
    animation: float 7s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

/* ================================================================
   SERVICES SECTION - FULLY RESPONSIVE
   ================================================================ */
.services-section {
    max-width: 1320px;
    margin: 0 auto;
    padding: 60px 32px 80px;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 163, 115, 0.12);
    border: 1px solid rgba(212, 163, 115, 0.15);
    padding: 6px 20px;
    border-radius: 60px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.3px;
    margin-bottom: 16px;
}

.services-header .section-badge i {
    color: #d4a373;
}

.services-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.services-header h2 span {
    background: linear-gradient(135deg, #d4a373, #f5d6b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.4);
    max-width: 600px;
    margin: 12px auto 0;
    line-height: 1.6;
}

.service-category {
    margin-bottom: 50px;
    border-radius: 30px;
    padding: 40px 40px 45px;
    position: relative;
    overflow: hidden;
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-ceiling {
    background: linear-gradient(145deg, rgba(30, 30, 55, 0.9), rgba(15, 15, 30, 0.95));
    border: 1px solid rgba(212, 163, 115, 0.08);
}

.category-ceiling::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(184, 124, 75, 0.05), transparent 60%);
    pointer-events: none;
}

.category-walls {
    background: linear-gradient(145deg, rgba(40, 30, 45, 0.9), rgba(20, 15, 25, 0.95));
    border: 1px solid rgba(212, 163, 115, 0.06);
}

.category-walls::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(245, 214, 179, 0.04), transparent 60%);
    pointer-events: none;
}

.category-interior {
    background: linear-gradient(145deg, rgba(30, 40, 50, 0.9), rgba(15, 20, 30, 0.95));
    border: 1px solid rgba(212, 163, 115, 0.08);
}

.category-interior::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(184, 124, 75, 0.04), transparent 60%);
    pointer-events: none;
}

.category-renovation {
    background: linear-gradient(145deg, rgba(45, 35, 30, 0.9), rgba(20, 15, 12, 0.95));
    border: 1px solid rgba(212, 163, 115, 0.07);
}

.category-renovation::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 60% 70%, rgba(245, 214, 179, 0.03), transparent 60%);
    pointer-events: none;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.category-header .cat-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(212, 163, 115, 0.15), rgba(184, 124, 75, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #d4a373;
    border: 1px solid rgba(212, 163, 115, 0.1);
    flex-shrink: 0;
}

.category-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.category-header h3 span {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 400;
    font-size: 16px;
    margin-left: 10px;
}

.category-header .cat-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 163, 115, 0.2), transparent);
    margin-left: 16px;
}

.service-grid {
    display: grid;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.service-grid.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.service-grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.service-grid.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.service-grid.grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

/* ----- SERVICE CARD WITH IMAGE ----- */
.service-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 163, 115, 0.25);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.service-card .card-image {
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(40, 40, 60, 0.8), rgba(20, 20, 35, 0.9));
}

.service-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.08);
}

.service-card .card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.service-card:hover .card-image::after {
    opacity: 0.5;
}

.service-card .card-image i {
    font-size: 48px;
    color: #d4a373;
    opacity: 0.6;
    z-index: 1;
    transition: all 0.4s ease;
}

.service-card:hover .card-image i {
    opacity: 1;
    transform: scale(1.1);
    color: #f5d6b3;
}

/* Hide icon when image is present */
.service-card .card-image img + i {
    display: none;
}

/* Fallback: show icon if image fails to load */
.service-card .card-image img:not([src]),
.service-card .card-image img[src=""],
.service-card .card-image img[src*="error"] {
    display: none;
}

.service-card .card-image img:not([src]) + i,
.service-card .card-image img[src=""] + i,
.service-card .card-image img[src*="error"] + i {
    display: block;
    font-size: 48px;
    color: #d4a373;
    opacity: 0.6;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Category-specific image backgrounds */
.category-ceiling .service-card .card-image {
    background: linear-gradient(145deg, rgba(50, 40, 60, 0.9), rgba(25, 20, 35, 0.95));
}

.category-walls .service-card .card-image {
    background: linear-gradient(145deg, rgba(60, 40, 50, 0.9), rgba(30, 20, 30, 0.95));
}

.category-interior .service-card .card-image {
    background: linear-gradient(145deg, rgba(40, 55, 65, 0.9), rgba(20, 30, 40, 0.95));
}

.category-renovation .service-card .card-image {
    background: linear-gradient(145deg, rgba(55, 45, 35, 0.9), rgba(30, 25, 20, 0.95));
}

.service-card .card-body {
    padding: 16px 18px 20px;
}

.service-card .card-name {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.2px;
    margin-bottom: 4px;
}

.service-card .card-count {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 400;
    margin-bottom: 14px;
}

.service-card .card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.service-card .card-actions .btn-book {
    flex: 1;
    min-width: 80px;
    padding: 9px 16px;
    border-radius: 60px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #d4a373, #b87c4b);
    color: #fff;
    box-shadow: 0 4px 16px rgba(184, 124, 75, 0.25);
}

.service-card .card-actions .btn-book i {
    font-size: 12px;
}

.service-card .card-actions .btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 124, 75, 0.4);
}

.service-card .card-actions .btn-call {
    padding: 9px 16px;
    border-radius: 60px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
}

.service-card .card-actions .btn-call i {
    font-size: 12px;
    color: #d4a373;
}

.service-card .card-actions .btn-call:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 163, 115, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Category-specific card hover */
.category-ceiling .service-card:hover {
    background: rgba(212, 163, 115, 0.06);
}

.category-walls .service-card:hover {
    background: rgba(212, 163, 115, 0.05);
}

.category-interior .service-card:hover {
    background: rgba(212, 163, 115, 0.06);
}

.category-renovation .service-card:hover {
    background: rgba(212, 163, 115, 0.04);
}

/* ================================================================
   RESPONSIVE BREAKPOINTS
   ================================================================ */

/* ===== TABLETS & LAPTOPS (1024px and below) ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }
    .hero-content {
        gap: 40px;
    }
    .service-grid.grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
    .service-grid.grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== SMALL TABLETS (820px and below) ===== */
@media (max-width: 820px) {
    /* Navbar */
    .navbar {
        padding: 0 24px;
        height: 74px;
    }
    .logo-text .tag {
        display: none;
    }
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-radius: 14px;
    }
    .logo-text .brand {
        font-size: 20px;
    }
    .logo {
        gap: 10px;
    }

    .hamburger {
        display: flex;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        position: absolute;
        top: 74px;
        left: 0;
        background: rgba(12, 12, 20, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px 28px 32px;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
        border-top: 1px solid rgba(255, 215, 175, 0.08);
        border-radius: 0 0 28px 28px;
        animation: slideDown 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links li a {
        padding: 16px 20px;
        font-size: 16px;
        border-radius: 16px;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 14px;
        color: rgba(255, 255, 255, 0.85);
    }
    .nav-links li a i {
        width: 28px;
        text-align: center;
        font-size: 17px;
    }
    .nav-links li a:hover {
        background: rgba(212, 163, 115, 0.1);
        transform: none;
    }
    .nav-links li a::after {
        display: none;
    }
    .nav-links .btn-cta-mobile {
        margin-top: 16px;
        list-style: none;
    }
    .nav-links .btn-cta-mobile a {
        background: linear-gradient(135deg, #d4a373, #b87c4b);
        color: #fff !important;
        justify-content: center;
        font-weight: 600;
        padding: 18px 24px !important;
        border-radius: 60px !important;
        box-shadow: 0 8px 28px rgba(184, 124, 75, 0.3);
        transition: all 0.3s ease;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 16px !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        position: relative;
        overflow: hidden;
        text-decoration: none;
    }
    .nav-links .btn-cta-mobile a::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 40%, rgba(255,255,255,0.05) 100%);
        border-radius: 60px;
        pointer-events: none;
        z-index: 1;
    }
    .nav-links .btn-cta-mobile a::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, #f5d6b3, #d4a373);
        opacity: 0;
        transition: opacity 0.5s ease;
        border-radius: 60px;
        z-index: 0;
    }
    .nav-links .btn-cta-mobile a:hover::after {
        opacity: 1;
    }
    .nav-links .btn-cta-mobile a i {
        color: #fff !important;
        opacity: 1 !important;
        font-size: 18px !important;
        width: auto !important;
        position: relative;
        z-index: 2;
    }
    .nav-links .btn-cta-mobile a span {
        position: relative;
        z-index: 2;
    }
    .nav-links .btn-cta-mobile a:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 36px rgba(184, 124, 75, 0.5);
    }
    .navbar .btn-cta-desktop {
        display: none !important;
    }

    /* Hero */
    .hero {
        padding: 30px 24px 50px;
        min-height: auto;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-title {
        font-size: 38px;
    }
    .hero-description {
        font-size: 16px;
    }
    .hero-visual-wrapper {
        max-width: 400px;
    }
    .hero-card {
        padding: 30px;
        border-radius: 30px;
    }
    .hero-card .icon-grid {
        gap: 14px;
    }
    .hero-card .icon-item {
        padding: 16px 10px;
    }
    .hero-card .icon-item i {
        font-size: 22px;
    }
    .hero-stats {
        gap: 24px;
    }
    .hero-stats .stat-number {
        font-size: 24px;
    }

    /* Services */
    .services-section {
        padding: 40px 20px 60px;
    }
    .services-header h2 {
        font-size: 34px;
    }
    .service-category {
        padding: 28px 20px 32px;
        border-radius: 20px;
    }
    .category-header h3 {
        font-size: 20px;
    }
    .category-header h3 span {
        font-size: 14px;
    }
    .category-header .cat-line {
        display: none;
    }
    
    /* Fix: 2 columns on tablets */
    .service-grid.grid-4,
    .service-grid.grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-grid.grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-grid.grid-2 {
        grid-template-columns: 1fr 1fr;
    }
    
    .service-card .card-image {
        height: 130px;
    }
    .service-card .card-image i {
        font-size: 36px;
    }
    .service-card .card-name {
        font-size: 14px;
    }
}

/* ===== MOBILE (550px and below) ===== */
@media (max-width: 550px) {
    /* Navbar */
    .navbar {
        padding: 0 16px;
        height: 66px;
    }
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
        border-radius: 12px;
    }
    .logo-text .brand {
        font-size: 18px;
    }
    .nav-links {
        top: 66px;
        padding: 16px 18px 24px;
        border-radius: 0 0 20px 20px;
    }
    .nav-links li a {
        font-size: 15px;
        padding: 14px 16px;
        border-radius: 14px;
    }
    .nav-links .btn-cta-mobile a {
        padding: 16px 20px !important;
        font-size: 14px !important;
    }
    .hamburger {
        width: 38px;
        height: 38px;
    }
    .hamburger span {
        width: 24px;
    }
    .hamburger.open span:nth-child(1),
    .hamburger.open span:nth-child(3) {
        width: 24px;
    }

    /* Hero */
    .hero {
        padding: 20px 16px 40px;
    }
    .hero-title {
        font-size: 30px;
    }
    .hero-description {
        font-size: 15px;
    }
    .hero-actions .btn-primary {
        padding: 14px 28px;
        font-size: 13px;
    }
    .hero-actions .btn-secondary {
        padding: 14px 24px;
        font-size: 13px;
    }
    .hero-stats {
        gap: 16px;
        flex-wrap: wrap;
    }
    .hero-stats .stat-number {
        font-size: 20px;
    }
    .hero-visual-wrapper {
        max-width: 100%;
    }
    .hero-card {
        padding: 24px 16px;
        border-radius: 24px;
    }
    .hero-card .icon-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
    }
    .hero-card .icon-item {
        padding: 12px 8px;
        border-radius: 14px;
    }
    .hero-card .icon-item i {
        font-size: 18px;
    }
    .hero-card .icon-item span {
        font-size: 9px;
    }
    .hero-card .card-title {
        font-size: 20px;
    }
    .hero-badge {
        font-size: 11px;
        padding: 6px 16px;
    }
    .floating-element.e1,
    .floating-element.e2,
    .floating-element.e3 {
        display: none;
    }

    /* Services - FIX: 1 card per row on mobile */
    .services-header h2 {
        font-size: 28px;
    }
    .services-header p {
        font-size: 15px;
    }
    .service-category {
        padding: 16px 12px 20px;
        border-radius: 16px;
        margin-bottom: 24px;
    }
    .category-header {
        gap: 10px;
        margin-bottom: 16px;
    }
    .category-header .cat-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 12px;
    }
    .category-header h3 {
        font-size: 16px;
    }
    .category-header h3 span {
        display: none;
    }
    
    /* IMPORTANT: 1 column on mobile */
    .service-grid.grid-4,
    .service-grid.grid-5,
    .service-grid.grid-3,
    .service-grid.grid-2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card .card-image {
        height: 200px;
    }
    .service-card .card-image i {
        font-size: 48px;
    }
    .service-card .card-body {
        padding: 16px 18px 20px;
    }
    .service-card .card-name {
        font-size: 16px;
    }
    .service-card .card-count {
        font-size: 13px;
        margin-bottom: 14px;
    }
    .service-card .card-actions .btn-book,
    .service-card .card-actions .btn-call {
        font-size: 13px;
        padding: 10px 18px;
    }
    .service-card .card-actions .btn-book i,
    .service-card .card-actions .btn-call i {
        font-size: 13px;
    }
}

/* ===== SMALL PHONES (400px and below) ===== */
@media (max-width: 400px) {
    .service-card .card-image {
        height: 160px;
    }
    .service-card .card-name {
        font-size: 14px;
    }
    .service-card .card-actions .btn-book,
    .service-card .card-actions .btn-call {
        font-size: 11px;
        padding: 8px 14px;
    }
    .hero-title {
        font-size: 26px;
    }
    .hero-actions .btn-primary {
        padding: 12px 20px;
        font-size: 12px;
    }
    .hero-actions .btn-secondary {
        padding: 12px 18px;
        font-size: 12px;
    }
    .hero-stats .stat-number {
        font-size: 18px;
    }
    .hero-stats .stat-label {
        font-size: 11px;
    }
    .hero-card .icon-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 6px;
    }
    .hero-card .icon-item {
        padding: 8px 6px;
        border-radius: 10px;
    }
    .hero-card .icon-item i {
        font-size: 14px;
    }
    .hero-card .icon-item span {
        font-size: 8px;
    }
    .hero-card .card-title {
        font-size: 18px;
    }
    .hero-card .card-subtitle {
        font-size: 12px;
    }
}

/* ================================================================
   UTILITY & MISC
   ================================================================ */

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: #b87c4b;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d4a373;
}

/* Smooth transitions for all interactive elements */
* {
    transition: all 0.3s ease;
}

/* ================================================================
   ABOUT SECTION - MODERN & ADVANCED
   ================================================================ */
.about-section {
    max-width: 1320px;
    margin: 0 auto;
    padding: 80px 32px 100px;
    position: relative;
}

/* Animated background */
.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.04), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* ===== ABOUT HEADER ===== */
.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 163, 115, 0.12);
    border: 1px solid rgba(212, 163, 115, 0.15);
    padding: 6px 20px;
    border-radius: 60px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.3px;
    margin-bottom: 16px;
}

.about-badge i {
    color: #d4a373;
}

.about-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.about-header h2 span {
    background: linear-gradient(135deg, #d4a373, #f5d6b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.4);
    max-width: 600px;
    margin: 12px auto 0;
    line-height: 1.6;
}

/* ===== ABOUT CONTENT ===== */
.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

/* ===== LEFT SIDE: TEXT ===== */
.about-text {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.about-story h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.about-story h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #b87c4b, #d4a373);
    margin-top: 8px;
    border-radius: 6px;
}

.about-story p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 16px;
}

.about-story p strong {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== MISSION & VISION ===== */
.about-mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mission-box,
.vision-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 24px 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mission-box::before,
.vision-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #b87c4b, #d4a373);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mission-box:hover::before,
.vision-box:hover::before {
    opacity: 1;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 163, 115, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.mv-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(212, 163, 115, 0.15), rgba(184, 124, 75, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #d4a373;
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.mission-box:hover .mv-icon,
.vision-box:hover .mv-icon {
    transform: scale(1.05) rotate(-3deg);
}

.mission-box h4,
.vision-box h4 {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.mission-box p,
.vision-box p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== CORE VALUES ===== */
.about-values h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.about-values h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #b87c4b, #d4a373);
    margin-top: 6px;
    border-radius: 6px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.value-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 14px 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
}

.value-item:hover {
    background: rgba(212, 163, 115, 0.08);
    border-color: rgba(212, 163, 115, 0.15);
    transform: translateY(-3px);
}

.value-item i {
    font-size: 22px;
    color: #d4a373;
    display: block;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.value-item:hover i {
    transform: scale(1.1);
    color: #f5d6b3;
}

.value-item span {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== RIGHT SIDE: VISUAL ===== */
.about-visual {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* ===== STATS GRID ===== */
.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 22px 18px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #b87c4b, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 163, 115, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #d4a373, #f5d6b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number .plus {
    -webkit-text-fill-color: #d4a373;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-icon {
    margin-top: 8px;
}

.stat-icon i {
    font-size: 20px;
    color: rgba(212, 163, 115, 0.3);
}

/* ===== INFO CARD ===== */
.about-info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 24px 22px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    font-size: 18px;
    color: #d4a373;
    margin-top: 2px;
    width: 22px;
    flex-shrink: 0;
}

.info-item div {
    display: flex;
    flex-direction: column;
}

.info-item strong {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item span,
.info-item a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.info-item a {
    color: #d4a373;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #f5d6b3;
}

/* ===== SERVICE AREAS ===== */
.about-service-areas {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 22px 24px;
}

.about-service-areas h4 {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-service-areas h4 i {
    color: #d4a373;
}

.areas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.areas-tags span {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 5px 14px;
    border-radius: 60px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.areas-tags span:hover {
    background: rgba(212, 163, 115, 0.08);
    border-color: rgba(212, 163, 115, 0.15);
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* ================================================================
   ABOUT SECTION - RESPONSIVE
   ================================================================ */

/* Tablets */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-header h2 {
        font-size: 38px;
    }
    
    .about-visual {
        order: -1;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Small Tablets */
@media (max-width: 820px) {
    .about-section {
        padding: 60px 24px 80px;
    }
    
    .about-header h2 {
        font-size: 32px;
    }
    
    .about-mission-vision {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 550px) {
    .about-section {
        padding: 40px 16px 60px;
    }
    
    .about-header h2 {
        font-size: 28px;
    }
    
    .about-header p {
        font-size: 15px;
    }
    
    .about-story p {
        font-size: 15px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .stat-number {
        font-size: 26px;
    }
    
    .about-info-card {
        padding: 18px 16px;
    }
    
    .about-service-areas {
        padding: 18px 16px;
    }
    
    .areas-tags span {
        font-size: 11px;
        padding: 4px 12px;
    }
}

/* Small Phones */
@media (max-width: 400px) {
    .about-header h2 {
        font-size: 24px;
    }
    
    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .value-item {
        padding: 12px 10px;
    }
    
    .value-item i {
        font-size: 18px;
    }
    
    .value-item span {
        font-size: 12px;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .stat-card {
        padding: 16px 12px;
    }
    
    .stat-number {
        font-size: 22px;
    }
}

/* ================================================================
   CONTACT SECTION - LIGHT & VIBRANT WITH ANIMATIONS
   ================================================================ */
.contact-section {
    max-width: 1320px;
    margin: 0 auto;
    padding: 80px 32px 100px;
    position: relative;
    background: linear-gradient(145deg, #f8f4f0, #f0ebe5);
    border-radius: 50px 50px 0 0;
    margin-top: 40px;
    overflow: hidden;
}

/* Animated decorative elements */
.contact-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -30px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatGlow 8s ease-in-out infinite;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4a373, transparent);
    opacity: 0.3;
    animation: shimmerLine 3s ease-in-out infinite;
}

@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(-20px, -30px) scale(1.1); opacity: 0.8; }
}

@keyframes shimmerLine {
    0%, 100% { opacity: 0.2; transform: scaleX(1); }
    50% { opacity: 0.6; transform: scaleX(1.1); }
}

/* ===== CONTACT HEADER ===== */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease forwards;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 163, 115, 0.12);
    border: 1px solid rgba(212, 163, 115, 0.15);
    padding: 6px 20px;
    border-radius: 60px;
    font-size: 13px;
    font-weight: 500;
    color: #8a7a6a;
    letter-spacing: 0.3px;
    margin-bottom: 16px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.contact-badge i {
    color: #b87c4b;
}

.contact-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.2;
}

.contact-header h2 span {
    background: linear-gradient(135deg, #b87c4b, #d4a373);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.contact-header h2 span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #b87c4b, #d4a373);
    animation: expandLine 3s ease-in-out infinite;
}

@keyframes expandLine {
    0%, 100% { width: 0; }
    50% { width: 100%; }
}

.contact-header p {
    font-size: 18px;
    color: #6f5e4e;
    max-width: 600px;
    margin: 12px auto 0;
    line-height: 1.6;
}

/* ================================================================
   CONTACT CONTENT
   ================================================================ */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 50px;
    align-items: start;
}

/* ================================================================
   LEFT: CONTACT FORM
   ================================================================ */
.contact-form-wrapper {
    position: relative;
    animation: fadeInLeft 0.8s ease 0.2s forwards;
    opacity: 0;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 30px;
    padding: 40px 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #b87c4b, #d4a373, #b87c4b);
    background-size: 200% 100%;
    animation: gradientMove 3s ease-in-out infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
}

.form-card:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.form-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
}

.form-card h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #b87c4b, #d4a373);
    margin-top: 8px;
    border-radius: 6px;
    animation: expandWidth 2s ease-in-out infinite;
}

@keyframes expandWidth {
    0%, 100% { width: 50px; }
    50% { width: 80px; }
}

.form-card > p {
    font-size: 14px;
    color: #8a7a6a;
    margin-bottom: 28px;
}

/* ===== FORM STYLES ===== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    animation: fadeInUp 0.6s 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; }
.form-group:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #4a3a2a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: #b87c4b;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group:hover label i {
    transform: scale(1.2) rotate(5deg);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: #f8f4f0;
    border: 1px solid #e8dfd7;
    border-radius: 14px;
    color: #1a1a2e;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #b87c4b;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(184, 124, 75, 0.08);
    transform: scale(1.01);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0a090;
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23b87c4b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    color: #4a3a2a;
}

.form-group select option {
    background: #ffffff;
    color: #1a1a2e;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== SUBMIT BUTTON ===== */
.submit-btn {
    position: relative;
    padding: 16px 32px;
    background: linear-gradient(135deg, #b87c4b, #d4a373);
    color: #fff;
    border: none;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    margin-top: 8px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
    animation: fadeInUp 0.6s ease 0.6s forwards;
    opacity: 0;
}

.submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 40%, rgba(255,255,255,0.05) 100%);
    border-radius: 60px;
    pointer-events: none;
    z-index: 1;
}

.submit-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #d4a373, #b87c4b);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 60px;
    z-index: 0;
}

.submit-btn:hover::after {
    opacity: 1;
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 40px rgba(184, 124, 75, 0.35);
}

.submit-btn:active {
    transform: scale(0.98);
}

.submit-btn i {
    position: relative;
    z-index: 2;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(4px) rotate(-5deg);
}

.submit-btn span {
    position: relative;
    z-index: 2;
}

.btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.submit-btn:hover .btn-shine {
    transform: rotate(45deg) translateX(100%);
}

/* ================================================================
   RIGHT: CONTACT INFO
   ================================================================ */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    animation: fadeInRight 0.8s ease 0.3s forwards;
    opacity: 0;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== QUICK CONTACT ===== */
.quick-contact {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 30px;
    padding: 28px 26px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.quick-contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.03), transparent);
    transition: all 0.6s ease;
}

.quick-contact:hover::before {
    transform: scale(1.5);
}

.quick-contact:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
}

.quick-contact h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.quick-contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: #f8f4f0;
    border: 1px solid #e8dfd7;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.quick-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(184, 124, 75, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.quick-item:hover::before {
    opacity: 1;
}

.quick-item:hover {
    background: #ffffff;
    border-color: #d4a373;
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(184, 124, 75, 0.08);
}

.quick-item .quick-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.quick-item .phone-icon {
    background: rgba(184, 124, 75, 0.1);
    color: #b87c4b;
}

.quick-item .email-icon {
    background: rgba(74, 222, 128, 0.1);
    color: #22c55e;
}

.quick-item .whatsapp-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.quick-item:hover .quick-icon {
    transform: scale(1.1) rotate(-5deg);
}

.quick-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.quick-label {
    font-size: 11px;
    font-weight: 500;
    color: #8a7a6a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-value {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a2e;
}

.quick-arrow {
    color: #d0c0b0;
    font-size: 14px;
    transition: all 0.4s ease;
}

.quick-item:hover .quick-arrow {
    color: #b87c4b;
    transform: translateX(4px);
}

/* ===== BUSINESS HOURS ===== */
.business-hours {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 30px;
    padding: 28px 26px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.business-hours:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
}

.business-hours h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 18px;
    font-family: 'Playfair Display', serif;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0ebe5;
    transition: all 0.3s ease;
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item:hover {
    padding-left: 8px;
    border-color: #d4a373;
}

.hour-item .day {
    font-size: 14px;
    color: #6f5e4e;
}

.hour-item .time {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    background: rgba(212, 163, 115, 0.08);
    padding: 2px 12px;
    border-radius: 60px;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 8px 18px;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.15);
    border-radius: 60px;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a2e;
    animation: pulse 2s ease-in-out infinite;
}

.availability-badge .dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* ===== LOCATION CARD ===== */
.location-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 30px;
    padding: 28px 26px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
}

.location-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-card h3 i {
    color: #b87c4b;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.location-card address {
    font-style: normal;
    color: #6f5e4e;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 18px;
}

.location-card address strong {
    color: #1a1a2e;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #b87c4b, #d4a373);
    border: none;
    border-radius: 60px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 100%;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.map-btn:hover::before {
    opacity: 1;
}

.map-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(184, 124, 75, 0.3);
}

.map-btn:active {
    transform: scale(0.98);
}

.map-btn i {
    font-size: 16px;
}

/* ===== SOCIAL LINKS ===== */
.social-links {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 30px;
    padding: 28px 26px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.social-links:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
}

.social-links h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.social-icons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.social-icon {
    width: 48px;
    height: 48px;
    background: #f8f4f0;
    border: 1px solid #e8dfd7;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6f5e4e;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #d4a373, #b87c4b);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-icon:hover::before {
    opacity: 0.1;
}

.social-icon:hover {
    background: #ffffff;
    border-color: #d4a373;
    color: #b87c4b;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(184, 124, 75, 0.12);
}

.social-icon:active {
    transform: scale(0.95);
}

.social-icon i {
    position: relative;
    z-index: 1;
}

/* ================================================================
   RESPONSIVE BREAKPOINTS - FULLY MOBILE FRIENDLY
   ================================================================ */

/* Tablets & Large Screens (1024px and below) */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .contact-header h2 {
        font-size: 38px;
    }
}

/* Small Tablets (820px and below) */
@media (max-width: 820px) {
    .contact-section {
        padding: 60px 24px 80px;
        border-radius: 30px 30px 0 0;
        margin-top: 30px;
    }
    
    .contact-header h2 {
        font-size: 34px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-card {
        padding: 30px 28px;
    }
    
    .contact-info-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .quick-contact {
        grid-column: 1 / -1;
    }
}

/* Mobile (550px and below) */
@media (max-width: 550px) {
    .contact-section {
        padding: 40px 16px 60px;
        border-radius: 20px 20px 0 0;
        margin-top: 20px;
    }
    
    .contact-section::before {
        width: 150px;
        height: 150px;
        top: -30px;
        right: -15px;
    }
    
    .contact-header {
        margin-bottom: 40px;
    }
    
    .contact-header h2 {
        font-size: 28px;
    }
    
    .contact-header p {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .contact-badge {
        font-size: 12px;
        padding: 4px 16px;
    }
    
    .contact-content {
        gap: 30px;
    }
    
    .form-card {
        padding: 24px 18px;
        border-radius: 24px;
    }
    
    .form-card h3 {
        font-size: 20px;
    }
    
    .form-card > p {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .contact-form {
        gap: 16px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 12px;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .submit-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .contact-info-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .quick-contact {
        padding: 20px 18px;
        border-radius: 24px;
    }
    
    .quick-contact h3 {
        font-size: 17px;
        margin-bottom: 16px;
    }
    
    .quick-item {
        padding: 12px 14px;
        border-radius: 14px;
    }
    
    .quick-item .quick-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
        border-radius: 10px;
    }
    
    .quick-value {
        font-size: 13px;
    }
    
    .quick-label {
        font-size: 10px;
    }
    
    .business-hours,
    .location-card,
    .social-links {
        padding: 20px 18px;
        border-radius: 24px;
    }
    
    .business-hours h3,
    .location-card h3,
    .social-links h3 {
        font-size: 17px;
        margin-bottom: 14px;
    }
    
    .hour-item {
        padding: 8px 0;
    }
    
    .hour-item .day,
    .hour-item .time {
        font-size: 13px;
    }
    
    .location-card address {
        font-size: 13px;
    }
    
    .map-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
        border-radius: 12px;
    }
    
    .availability-badge {
        font-size: 12px;
        padding: 6px 14px;
    }
}

/* Small Phones (400px and below) */
@media (max-width: 400px) {
    .contact-section {
        padding: 30px 12px 50px;
    }
    
    .contact-header h2 {
        font-size: 24px;
    }
    
    .contact-header p {
        font-size: 14px;
    }
    
    .form-card {
        padding: 20px 14px;
        border-radius: 20px;
    }
    
    .form-card h3 {
        font-size: 18px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .submit-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .quick-contact,
    .business-hours,
    .location-card,
    .social-links {
        padding: 16px 14px;
        border-radius: 20px;
    }
    
    .quick-contact h3,
    .business-hours h3,
    .location-card h3,
    .social-links h3 {
        font-size: 16px;
    }
    
    .quick-item {
        padding: 10px 12px;
        gap: 12px;
    }
    
    .quick-item .quick-icon {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    
    .quick-value {
        font-size: 12px;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    
    .hour-item .day,
    .hour-item .time {
        font-size: 12px;
    }
    
    .hour-item .time {
        padding: 2px 10px;
    }
}

/* Fix for very small devices */
@media (max-width: 340px) {
    .contact-section {
        padding: 20px 10px 40px;
    }
    
    .form-card {
        padding: 16px 12px;
    }
    
    .quick-item {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .quick-item .quick-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .quick-details {
        align-items: center;
    }
    
    .quick-arrow {
        display: none;
    }
    
    .social-icon {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }
}
/* ================================================================
   FLOATING WHATSAPP & CALL BUTTONS - LEFT & RIGHT
   ================================================================ */

/* Common styles for both buttons */
.float-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    overflow: visible;
    z-index: 2;
}

/* Button wrapper for icon and tooltip */
.btn-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* ================================================================
   LEFT SIDE - CALL BUTTON (RED)
   ================================================================ */
.floating-btn-left {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Call Button - Red */
.call-btn {
    background: linear-gradient(135deg, #FF4136, #DC3545);
    box-shadow: 0 8px 30px rgba(220, 53, 69, 0.5);
    animation: wave-call 2.5s ease-in-out infinite;
}

.call-btn:hover {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 12px 40px rgba(220, 53, 69, 0.6);
}

/* ================================================================
   RIGHT SIDE - WHATSAPP BUTTON (WHATSAPP GREEN)
   ================================================================ */
.floating-btn-right {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    animation: slideInRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* WhatsApp Button - Green */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    animation: wave-whatsapp 2.5s ease-in-out infinite 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

/* ================================================================
   ANIMATIONS
   ================================================================ */

/* Slide in from left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide in from right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Call button wave */
@keyframes wave-call {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-12deg);
    }
    50% {
        transform: rotate(12deg);
    }
    75% {
        transform: rotate(-6deg);
    }
}

/* WhatsApp button wave */
@keyframes wave-whatsapp {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(12deg);
    }
    50% {
        transform: rotate(-12deg);
    }
    75% {
        transform: rotate(6deg);
    }
}

/* ================================================================
   RIPPLE EFFECTS
   ================================================================ */

.float-btn .ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 2.5s ease-out infinite;
    pointer-events: none;
}

.float-btn .ripple:nth-child(2) {
    animation-delay: 0.5s;
}

.call-btn .ripple {
    background: rgba(255, 65, 54, 0.3);
}

.whatsapp-btn .ripple {
    background: rgba(37, 211, 102, 0.3);
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* ================================================================
   TOOLTIP
   ================================================================ */

.float-btn .btn-tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    letter-spacing: 0.3px;
}

/* Left button tooltip (appears on right side) */
.floating-btn-left .btn-tooltip {
    left: 75px;
    transform: translateX(-10px);
}

.floating-btn-left .btn-tooltip::after {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-right: 8px solid rgba(0, 0, 0, 0.85);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.floating-btn-left .float-btn:hover .btn-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Right button tooltip (appears on left side) */
.floating-btn-right .btn-tooltip {
    right: 75px;
    transform: translateX(10px);
}

.floating-btn-right .btn-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid rgba(0, 0, 0, 0.85);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.floating-btn-right .float-btn:hover .btn-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ================================================================
   BADGE / NOTIFICATION DOT
   ================================================================ */

.float-btn .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 22px;
    height: 22px;
    background: #ff4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    padding: 0 6px;
    box-shadow: 0 2px 10px rgba(255, 68, 68, 0.4);
    z-index: 3;
    animation: pulse-badge 2s ease-in-out infinite;
}

.call-btn .badge {
    background: #ff4444;
}

.whatsapp-btn .badge {
    background: #25D366;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ================================================================
   RESPONSIVE DESIGN
   ================================================================ */

/* Tablets */
@media (max-width: 820px) {
    .floating-btn-left {
        bottom: 25px;
        left: 20px;
    }
    
    .floating-btn-right {
        bottom: 25px;
        right: 20px;
    }
    
    .float-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .float-btn .btn-tooltip {
        font-size: 12px;
        padding: 6px 14px;
    }
}

/* Mobile */
@media (max-width: 550px) {
    .floating-btn-left {
        bottom: 20px;
        left: 15px;
    }
    
    .floating-btn-right {
        bottom: 20px;
        right: 15px;  /* ✅ Fixed: 15px instead of 30px */
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .float-btn .btn-tooltip {
        display: none;
    }
    
    .float-btn .badge {
        min-width: 18px;
        height: 18px;
        font-size: 8px;
        padding: 0 4px;
    }
}

/* Small phones */
@media (max-width: 380px) {
    .floating-btn-left {
        bottom: 15px;
        left: 10px;
    }
    
    .floating-btn-right {
        bottom: 15px;
        right: 10px;  /* ✅ Fixed: 10px for very small screens */
    }
    
    .float-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

/* Extra small devices */
@media (max-width: 340px) {
    .floating-btn-left {
        bottom: 12px;
        left: 8px;
    }
    
    .floating-btn-right {
        bottom: 12px;
        right: 8px;  /* ✅ Fixed: 8px for extra small */
    }
    
    .float-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .float-btn .badge {
        min-width: 16px;
        height: 16px;
        font-size: 7px;
        padding: 0 3px;
        top: -3px;
        right: -3px;
    }
}

/* ================================================================
   SCROLL REVEAL ANIMATION
   ================================================================ */

.floating-btn-left.hidden {
    opacity: 0;
    transform: translateX(-30px);
}

.floating-btn-right.hidden {
    opacity: 0;
    transform: translateX(30px);
}

.floating-btn-left.show {
    opacity: 1;
    transform: translateX(0);
}

.floating-btn-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* ================================================================
   REDUCED MOTION PREFERENCE
   ================================================================ */

@media (prefers-reduced-motion: reduce) {
    .float-btn {
        animation: none !important;
    }
    
    .float-btn .ripple {
        animation: none !important;
        display: none;
    }
    
    .float-btn .btn-tooltip {
        transition: none !important;
    }
    
    .floating-btn-left,
    .floating-btn-right {
        animation: none !important;
    }
}

/* ================================================================
   GLOW EFFECT (Optional - adds extra pop)
   ================================================================ */

.call-btn::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF4136, #DC3545);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
    filter: blur(12px);
}

.call-btn:hover::after {
    opacity: 0.4;
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
    filter: blur(12px);
}

.whatsapp-btn:hover::after {
    opacity: 0.4;
}

/* ================================================================ */
/*  SERVICE AREAS - FIX FOR CONTACT SECTION - BETTER VISIBILITY     */
/* ================================================================ */

/* --- Container for service areas in Contact section --- */
.service-areas-card {
    margin-top: 1.5rem;
    padding: 1.5rem 1.8rem;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.service-areas-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
}

.service-areas-card h3 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
    font-family: 'Playfair Display', serif;
}

.service-areas-card h3 i {
    color: #b87c4b;
    font-size: 1.2rem;
}

/* --- Tags Grid - IMPROVED VISIBILITY --- */
.service-areas-card .areas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 0.8rem;
}

.service-areas-card .areas-tags span {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, #f0ebe5, #e8dfd7);
    color: #2a2a2e;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid #d5cbc0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    letter-spacing: 0.3px;
    cursor: default;
}

/* --- Hover effect for tags - more prominent --- */
.service-areas-card .areas-tags span:hover {
    background: linear-gradient(135deg, #b87c4b, #d4a373);
    color: #ffffff;
    border-color: #b87c4b;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 25px rgba(184, 124, 75, 0.35);
}

/* --- Alternative: More subtle but readable style --- */
/* Uncomment below for a cleaner, more minimal look */
/*
.service-areas-card .areas-tags span {
    background: #f8f4f0;
    color: #3a3a3e;
    border: 1px solid #e0d8d0;
    font-weight: 500;
    padding: 0.4rem 1.1rem;
}
*/

/* ================================================================ */
/*  RESPONSIVE FOR SERVICE AREAS                                    */
/* ================================================================ */

@media (max-width: 820px) {
    .service-areas-card {
        padding: 1.2rem 1.2rem;
    }
    
    .service-areas-card .areas-tags span {
        font-size: 0.75rem;
        padding: 0.35rem 0.9rem;
    }
}

@media (max-width: 550px) {
    .service-areas-card {
        padding: 1rem 1rem;
        border-radius: 20px;
    }
    
    .service-areas-card h3 {
        font-size: 1rem;
        gap: 0.4rem;
    }
    
    .service-areas-card .areas-tags {
        gap: 0.4rem 0.5rem;
    }
    
    .service-areas-card .areas-tags span {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
        border-radius: 30px;
    }
}

/* ================================================================ */
/*  FIX FOR ABOUT SECTION SERVICE AREAS                            */
/* ================================================================ */

.about-service-areas .areas-tags span {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 14px;
    border-radius: 60px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.about-service-areas .areas-tags span:hover {
    background: rgba(212, 163, 115, 0.15);
    border-color: rgba(212, 163, 115, 0.25);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ================================================================ */
/*  DARK MODE SUPPORT                                              */
/* ================================================================ */

@media (prefers-color-scheme: dark) {
    .service-areas-card {
        background: #2a2a2a;
        border-color: #3a3a3a;
    }
    
    .service-areas-card h3 {
        color: #ffffff;
    }
    
    .service-areas-card .areas-tags span {
        background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
        color: #e8e8e8;
        border-color: #4a4a4a;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    
    .service-areas-card .areas-tags span:hover {
        background: linear-gradient(135deg, #b87c4b, #d4a373);
        color: #ffffff;
        border-color: #b87c4b;
    }
}