/* ================================================================
   STYLE.CSS - COOL AIR CARE ENGINEERS
   FULLY RESPONSIVE - MOBILE & LAPTOP
   ================================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background:black;
    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(26, 115, 232, 0.12);
    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);
}

.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, #1a73e8, #0d47a1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 8px 24px rgba(26, 115, 232, 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(26, 115, 232, 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: 24px;
    font-weight: 800;
    letter-spacing: -0.7px;
    color: #ffffff;
}

.logo-text .brand span {
    color: #1a73e8;
}

.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: #1a73e8;
    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: #1a73e8;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    background: rgba(26, 115, 232, 0.12);
    color: #ffffff;
    transform: translateY(-2px);
}

.nav-links li a:hover i {
    opacity: 1;
    transform: scale(1.1);
    color: #4dabf7;
}

.nav-links li a.active {
    background: rgba(26, 115, 232, 0.15);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(26, 115, 232, 0.1);
}

.nav-links li a.active i {
    opacity: 1;
    color: #4dabf7;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, #1a73e8, #4dabf7);
    border-radius: 6px;
    box-shadow: 0 0 12px rgba(26, 115, 232, 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, #1a73e8, #0d47a1);
    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(26, 115, 232, 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.2) 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, #4dabf7, #1a73e8);
    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(26, 115, 232, 0.4);
}

.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(26, 115, 232, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(26, 115, 232, 0); }
    100% { box-shadow: 0 0 0 0 rgba(26, 115, 232, 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(26, 115, 232, 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: #4dabf7;
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: #4dabf7;
}

@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(26, 115, 232, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(26, 115, 232, 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(26, 115, 232, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(26, 115, 232, 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: #1a73e8;
    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: 48px;
    font-weight: 600;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -1px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #1a73e8, #4dabf7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.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, #1a73e8, #0d47a1);
    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(26, 115, 232, 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, #4dabf7, #1a73e8);
    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(26, 115, 232, 0.4);
}

.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(26, 115, 232, 0.3);
    transform: translateY(-2px);
    color: #ffffff;
}

.hero-actions .btn-secondary i {
    color: #1a73e8;
    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: #1a73e8;
}

.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(26, 115, 232, 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(26, 115, 232, 0.1);
    border-color: rgba(26, 115, 232, 0.2);
    transform: translateY(-4px);
}

.hero-card .icon-item i {
    font-size: 28px;
    color: #1a73e8;
}

.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: #1a73e8;
    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(26, 115, 232, 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(26, 115, 232, 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(77, 171, 247, 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 - GRADIENT CARDS & 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(26, 115, 232, 0.12);
    border: 1px solid rgba(26, 115, 232, 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: #1a73e8;
}

.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, #1a73e8, #4dabf7);
    -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-residential {
    background: linear-gradient(145deg, rgba(30, 30, 55, 0.9), rgba(15, 15, 30, 0.95));
    border: 1px solid rgba(26, 115, 232, 0.08);
}
.category-residential::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(26, 115, 232, 0.05), transparent 60%);
    pointer-events: none;
}

.category-maintenance {
    background: linear-gradient(145deg, rgba(40, 30, 45, 0.9), rgba(20, 15, 25, 0.95));
    border: 1px solid rgba(26, 115, 232, 0.06);
}
.category-maintenance::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(77, 171, 247, 0.04), transparent 60%);
    pointer-events: none;
}

.category-gas {
    background: linear-gradient(145deg, rgba(30, 40, 50, 0.9), rgba(15, 20, 30, 0.95));
    border: 1px solid rgba(26, 115, 232, 0.08);
}
.category-gas::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(26, 115, 232, 0.04), transparent 60%);
    pointer-events: none;
}

.category-repair {
    background: linear-gradient(145deg, rgba(45, 35, 30, 0.9), rgba(20, 15, 12, 0.95));
    border: 1px solid rgba(26, 115, 232, 0.07);
}
.category-repair::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 60% 70%, rgba(77, 171, 247, 0.03), transparent 60%);
    pointer-events: none;
}

.category-commercial {
    background: linear-gradient(145deg, rgba(30, 50, 45, 0.9), rgba(15, 30, 25, 0.95));
    border: 1px solid rgba(26, 115, 232, 0.07);
}
.category-commercial::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 40% 60%, rgba(26, 115, 232, 0.04), 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(26, 115, 232, 0.15), rgba(26, 115, 232, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1a73e8;
    border: 1px solid rgba(26, 115, 232, 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(26, 115, 232, 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-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;
}

.category-residential .service-card:hover {
    background: rgba(26, 115, 232, 0.06);
    border-color: rgba(26, 115, 232, 0.25);
    box-shadow: 0 16px 48px rgba(26, 115, 232, 0.15);
}

.category-maintenance .service-card:hover {
    background: rgba(0, 180, 216, 0.05);
    border-color: rgba(0, 180, 216, 0.25);
    box-shadow: 0 16px 48px rgba(0, 180, 216, 0.15);
}

.category-gas .service-card:hover {
    background: rgba(77, 171, 247, 0.05);
    border-color: rgba(77, 171, 247, 0.25);
    box-shadow: 0 16px 48px rgba(77, 171, 247, 0.15);
}

.category-repair .service-card:hover {
    background: rgba(255, 152, 0, 0.04);
    border-color: rgba(255, 152, 0, 0.2);
    box-shadow: 0 16px 48px rgba(255, 152, 0, 0.1);
}

.category-commercial .service-card:hover {
    background: rgba(26, 115, 232, 0.05);
    border-color: rgba(26, 115, 232, 0.2);
    box-shadow: 0 16px 48px rgba(26, 115, 232, 0.12);
}

.service-card .card-image {
    width: 100%;
    height: 140px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-residential .service-card .card-image {
    background: linear-gradient(145deg, rgba(26, 115, 232, 0.15), rgba(13, 71, 161, 0.05));
}
.category-maintenance .service-card .card-image {
    background: linear-gradient(145deg, rgba(0, 180, 216, 0.12), rgba(13, 71, 161, 0.04));
}
.category-gas .service-card .card-image {
    background: linear-gradient(145deg, rgba(77, 171, 247, 0.12), rgba(26, 115, 232, 0.04));
}
.category-repair .service-card .card-image {
    background: linear-gradient(145deg, rgba(255, 152, 0, 0.1), rgba(255, 152, 0, 0.03));
}
.category-commercial .service-card .card-image {
    background: linear-gradient(145deg, rgba(26, 115, 232, 0.1), rgba(0, 180, 216, 0.04));
}

.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 .icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: #1a73e8;
    opacity: 0.15;
    z-index: 1;
    transition: all 0.4s ease;
}

.service-card:hover .card-image .icon-overlay {
    opacity: 0.25;
    transform: translate(-50%, -50%) scale(1.1);
}

.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, #1a73e8, #0d47a1);
    color: #fff;
    box-shadow: 0 4px 16px rgba(26, 115, 232, 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(26, 115, 232, 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: #1a73e8;
}

.service-card .card-actions .btn-call:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(26, 115, 232, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ================================================================ */
/*  ABOUT SECTION - FULLY RESPONSIVE                               */
/* ================================================================ */
.about-section {
    max-width: 1320px;
    margin: 0 auto;
    padding: 80px 32px 100px;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 115, 232, 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 {
    text-align: center;
    margin-bottom: 60px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(26, 115, 232, 0.12);
    border: 1px solid rgba(26, 115, 232, 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: #1a73e8; }

.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, #1a73e8, #4dabf7);
    -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 {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.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, #1a73e8, #4dabf7);
    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);
}

.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, #1a73e8, #4dabf7);
    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(26, 115, 232, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.mv-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.15), rgba(26, 115, 232, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #1a73e8;
    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);
}

.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, #1a73e8, #4dabf7);
    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(26, 115, 232, 0.08);
    border-color: rgba(26, 115, 232, 0.15);
    transform: translateY(-3px);
}

.value-item i {
    font-size: 22px;
    color: #1a73e8;
    display: block;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.value-item:hover i {
    transform: scale(1.1);
    color: #4dabf7;
}

.value-item span {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.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, #1a73e8, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::after { opacity: 1; }
.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(26, 115, 232, 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, #1a73e8, #4dabf7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number .plus { -webkit-text-fill-color: #1a73e8; }
.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(26, 115, 232, 0.3); }

.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: #1a73e8;
    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: #1a73e8;
    text-decoration: none;
    transition: color 0.3s ease;
}
.info-item a:hover { color: #4dabf7; }

.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: #1a73e8; }

.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(26, 115, 232, 0.08);
    border-color: rgba(26, 115, 232, 0.15);
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* ================================================================ */
/*  CONTACT SECTION - FULLY RESPONSIVE                             */
/* ================================================================ */
.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;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -30px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.06), 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, #1a73e8, 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 {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease forwards;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(26, 115, 232, 0.12);
    border: 1px solid rgba(26, 115, 232, 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: #1a73e8; }

.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, #1a73e8, #4dabf7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-header p {
    font-size: 18px;
    color: #6f5e4e;
    max-width: 600px;
    margin: 12px auto 0;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.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, #1a73e8, #4dabf7, #1a73e8);
    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, #1a73e8, #4dabf7);
    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;
}

.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: #1a73e8;
    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: #1a73e8;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 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='%231a73e8' 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-btn {
    position: relative;
    padding: 16px 32px;
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    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, #4dabf7, #1a73e8);
    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(26, 115, 232, 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%);
}

.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 {
    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(26, 115, 232, 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(26, 115, 232, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.quick-item:hover::before { opacity: 1; }
.quick-item:hover {
    background: #ffffff;
    border-color: #1a73e8;
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(26, 115, 232, 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(26, 115, 232, 0.1);
    color: #1a73e8;
}

.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: #1a73e8;
    transform: translateX(4px);
}

.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: #1a73e8;
}
.hour-item .day {
    font-size: 14px;
    color: #6f5e4e;
}
.hour-item .time {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    background: rgba(26, 115, 232, 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 {
    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: #1a73e8;
    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, #1a73e8, #0d47a1);
    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(26, 115, 232, 0.3);
}
.map-btn:active { transform: scale(0.98); }
.map-btn i { font-size: 16px; }

.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, #1a73e8, #4dabf7);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-icon:hover::before { opacity: 0.1; }
.social-icon:hover {
    background: #ffffff;
    border-color: #1a73e8;
    color: #1a73e8;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(26, 115, 232, 0.12);
}
.social-icon:active { transform: scale(0.95); }
.social-icon i { position: relative; z-index: 1; }

/* ================================================================ */
/*  SCROLLBAR STYLING                                               */
/* ================================================================ */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #1a1a2e; }
::-webkit-scrollbar-thumb { background: #1a73e8; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #4dabf7; }

* { transition: all 0.3s ease; }

/* ================================================================ */
/*  RESPONSIVE BREAKPOINTS - FULLY MOBILE OPTIMIZED                */
/* ================================================================ */

/* ===== LAPTOPS (1024px and below) ===== */
@media (max-width: 1024px) {
    .hero-title { font-size: 40px; }
    .hero-content { gap: 40px; }
    .service-grid.grid-4 { grid-template-columns: repeat(3, 1fr); }
    .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); }
    .contact-content { grid-template-columns: 1fr 1fr; gap: 30px; }
    .contact-header h2 { font-size: 38px; }
}

/* ===== TABLETS (820px and below) ===== */
@media (max-width: 820px) {
    .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(26, 115, 232, 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, #1a73e8, #0d47a1);
        color: #fff !important;
        justify-content: center;
        font-weight: 600;
        padding: 18px 24px !important;
        border-radius: 60px !important;
        box-shadow: 0 8px 28px rgba(26, 115, 232, 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, #4dabf7, #1a73e8);
        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(26, 115, 232, 0.5);
    }
    .navbar .btn-cta-desktop { display: none !important; }

    .hero {
        padding: 30px 24px 50px;
        min-height: auto;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-title { font-size: 34px; }
    .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-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; }
    .service-grid.grid-4 { 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: 120px; }
    .service-card .card-name { font-size: 14px; }

    .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); }

    .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) {
    .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 {
        padding: 20px 16px 40px;
    }
    .hero-title { font-size: 28px; }
    .hero-description { font-size: 15px; }
    .hero-actions .btn-primary { padding: 14px 24px; font-size: 13px; }
    .hero-actions .btn-secondary { padding: 14px 20px; 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-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; }
    
    .service-grid.grid-4,
    .service-grid.grid-3,
    .service-grid.grid-2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card .card-image { height: 160px; }
    .service-card .card-body { padding: 16px 16px 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;
    }

    .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; }

    .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) {
    .hero-title { font-size: 24px; }
    .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; }
    
    .service-card .card-image { height: 140px; }
    .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;
    }
    
    .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-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; }
}

/* ===== EXTRA SMALL DEVICES (340px and below) ===== */
@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; 
    }
    .service-card .card-image { height: 120px; }
}