
/* =========================================================
   Painting GTA - Modern Premium Styles
   File: painting_style.css
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
    --primary: #0f4c81;
    --primary-dark: #0a3559;
    --secondary: #f59e0b;
    --secondary-dark: #d97706;
    --accent: #22c55e;
    --text: #1f2937;
    --text-light: #6b7280;
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --border: #e5e7eb;
    --shadow-sm: 0 4px 12px rgba(15, 76, 129, 0.08);
    --shadow-md: 0 12px 30px rgba(15, 76, 129, 0.12);
    --shadow-lg: 0 24px 50px rgba(15, 76, 129, 0.18);
    --radius: 16px;
    --radius-lg: 24px;
    --transition: all 0.35s ease;
}

/* ---------- Base ---------- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    background: #f4f7fb !important;;
    line-height: 1.65;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1280px;
}

/* ---------- Header ---------- */
header {
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

header nav a {
    transition: var(--transition);
}

header nav a:hover {
    color: var(--primary) !important;
}

header img {
    width: auto;
    transition: var(--transition);
}

header img:hover {
    transform: scale(1.03);
}

.group:hover .group-hover\:visible {
    visibility: visible;
}

.group:hover .group-hover\:opacity-100 {
    opacity: 1;
}

/* ---------- Buttons ---------- */
.btn-primary,
a[href*="painting-gta-booking"],
button[type="submit"] {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.btn-primary:hover,
a[href*="painting-gta-booking"]:hover,
button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    filter: brightness(1.03);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}
/* Smooth premium section spacing */
section {
    position: relative;
}

/* Better containers */
.container {
    max-width: 1280px;
}

/* ---------- Hero ---------- */
/*#home > section {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 6rem;
    background:
        radial-gradient(circle at 15% 20%, rgba(245, 158, 11, 0.25), transparent 35%),
        radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.12), transparent 30%),
        linear-gradient(135deg, #0b3a63 0%, #0f4c81 45%, #1d76c2 100%) !important;
}*/

#home h1 {
    /*font-size: clamp(2.25rem, 5vw, 4.5rem);*/
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

#home p {
    /*color: rgba(255,255,255,0.92) !important;*/
    color: darkslategray;
}

#home .max-w-4xl {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 32px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}
main {
    padding-top: 5px;
}

/* ---------- Sections ---------- */
section section {
    position: relative;
}

h2 {
    letter-spacing: -0.02em;
}

/* ---------- Cards ---------- */
.rounded-lg.border,
.shadow-sm,
.shadow-lg,
.shadow-xl {
    border-radius: var(--radius) !important;
    border: 1px solid rgba(229, 231, 235, 0.85) !important;
    box-shadow: var(--shadow-sm) !important;
    transition: var(--transition);
    overflow: hidden;
}

.rounded-lg.border:hover,
.shadow-sm:hover,
.shadow-lg:hover,
.shadow-xl:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg) !important;
}

/* ---------- Service Cards ---------- */
#services .p-6.bg-gradient-to-r {
    background: linear-gradient(135deg, var(--primary), #1d76c2) !important;
}

#services .inline-flex.rounded-full {
    background: #eff6ff !important;
    color: var(--primary) !important;
    border: 1px solid #dbeafe !important;
    font-weight: 600;
}

/* ---------- Gallery ---------- */
#gallery img {
    width: 100%;
    height: 250px !important;
    object-fit: cover;
    transition: transform 0.6s ease;
}

#gallery .rounded-lg:hover img {
    transform: scale(1.08);
}

#gallery .absolute.inset-0.bg-black\/20 {
    background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.15)) !important;
}

/* ---------- Contact Form ---------- */
input,
textarea,
select {
    border: 1px solid var(--border) !important;
    border-radius: 12px !important;
    transition: var(--transition);
    background: #fff;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.12) !important;
    outline: none !important;
}

textarea {
    min-height: 130px;
    resize: vertical;
}

/* ---------- Service Areas ---------- */
#contact .bg-red-50 {
    background: linear-gradient(135deg, #fff7ed, #fffbeb) !important;
    border: 1px solid #fde68a;
    font-weight: 600;
    color: #92400e;
    transition: var(--transition);
}

#contact .bg-red-50:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-sm);
}

/* ---------- Footer ---------- */
footer {
    color: rgba(255,255,255,0.75);
    padding: 4rem 2rem 2rem;
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.15), transparent 25%),
        linear-gradient(135deg, #0a3559, #0f4c81) !important;
}

footer a {
    transition: var(--transition);
}

footer a:hover {
    color: #fff !important;
    padding-left: 4px;
}

/* ---------- Utilities ---------- */
.text-white-400 {
    color: #ffffff !important;
}

.bg-background {
    background: #fff !important;
}

.border-border\/40 {
    border-color: rgba(229, 231, 235, 0.8) !important;
}

/* ---------- Animations ---------- */
@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#home .max-w-4xl,
#services .rounded-lg,
#gallery .rounded-lg,
#contact .rounded-lg {
    animation: floatUp 0.8s ease both;
}

/* ---------- Sticky Mobile CTA ---------- */
@media (max-width: 768px) {
    #home .max-w-4xl {
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }

    header img {
        height: 72px !important;
    }

    #home h1 {
        font-size: 2.2rem;
    }

    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    footer .grid,
    #contact .grid,
    #gallery .grid,
    #services .grid {
        gap: 1.5rem !important;
    }
}

/* ---------- Large Screens ---------- */
@media (min-width: 1280px) {
    #home > section {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}




/* ── HEADER ── */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    }

    .header-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 2rem;
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .logo img {
        height: 77px;
        width: auto;
        object-fit: contain;
    }

    nav.desktop-nav {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    nav.desktop-nav a, nav.desktop-nav button.nav-link {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
      text-decoration: none;
      background: none;
      border: none;
      cursor: pointer;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 0;
    }

    nav.desktop-nav a:hover, nav.desktop-nav button.nav-link:hover { color: var(--accent); }

    .dropdown-wrap { position: relative; }

    .dropdown-menu {
      position: absolute;
      top: calc(100% + 14px);
      left: 0;
      min-width: 240px;
      background: #fff;
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border);
      padding: 8px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-6px);
      transition: all 0.22s ease;
      z-index: 200;
    }

    .dropdown-wrap:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-menu a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border-radius: 10px;
      font-size: 14px;
      color: var(--text) !important;
      text-decoration: none;
      transition: background 0.15s, color 0.15s;
      font-weight: 500;
    }

    .dropdown-menu a:hover { background: #fff5ee; color: var(--accent) !important; }
    .dropdown-menu a i { color: var(--accent); width: 18px; }

    .header-right {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .header-phone {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 14px;
      color: var(--text);
      text-decoration: none;
      background: var(--surface);
      padding: 9px 16px;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      transition: all 0.2s;
      white-space: nowrap;
    }

    .header-phone:hover { background: #fff5ee; color: var(--accent); border-color: var(--accent); }
    .header-phone i { color: var(--accent); font-size: 13px; }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      background: var(--accent);
      color: #fff;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 14px;
      border-radius: var(--radius);
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
      white-space: nowrap;
      box-shadow: 0 4px 16px rgba(232,93,4,0.3);
    }

    .btn-primary:hover {
      background: #cf4e00;
      transform: translateY(-1px);
      box-shadow: 0 6px 24px rgba(232,93,4,0.38);
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: 1px solid var(--border);
      width: 42px; height: 42px;
      border-radius: 10px;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: var(--text);
    }

    .mobile-nav {
      display: none;
      position: fixed;
      top: 76px; left: 0; right: 0;
      background: #fff;
      border-bottom: 1px solid var(--border);
      padding: 1.5rem;
      z-index: 99;
      box-shadow: var(--shadow-md);
      flex-direction: column;
      gap: 6px;
    }

    .mobile-nav.open { display: flex; }

    .mobile-nav a {
      padding: 12px 16px;
      border-radius: 10px;
      font-weight: 600;
      font-size: 15px;
      color: var(--text);
      text-decoration: none;
      transition: background 0.15s;
    }

    .mobile-nav a:hover { background: var(--surface); color: var(--accent); }

/* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(to bottom, rgba(26,26,46,0.78) 0%, rgba(26,26,46,0.65) 100%),
        url('https://images.unsplash.com/photo-1562259949-e8e7689d7828?q=80&w=2070') center/cover no-repeat;
    }

    .hero-content {
      max-width: 1280px;
      margin: 0 auto;
      padding: 5rem 2rem;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 4rem;
      align-items: center;
      width: 100%;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(232,93,4,0.2);
      border: 1px solid rgba(232,93,4,0.4);
      color: #ffc49b;
      padding: 6px 16px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 1.5rem;
    }

    .hero h1 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(2.6rem, 5vw, 4rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.08;
      letter-spacing: -0.03em;
      margin-bottom: 1.25rem;
    }

    .hero h1 span { color: var(--accent-light); }

    .hero p {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.8);
      margin-bottom: 2rem;
      max-width: 520px;
    }

    .hero-ctas {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-outline-white {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      background: rgba(255,255,255,0.1);
      color: #fff;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 15px;
      border-radius: var(--radius);
      border: 1.5px solid rgba(255,255,255,0.35);
      text-decoration: none;
      transition: all 0.2s;
      backdrop-filter: blur(8px);
    }

    .btn-outline-white:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.6); }

    .btn-cta-hero {
      padding: 13px 28px;
      font-size: 15px;
      box-shadow: 0 6px 28px rgba(232,93,4,0.4);
    }

    .hero-stats {
      display: flex;
      gap: 2rem;
      margin-top: 3rem;
      flex-wrap: wrap;
    }

    .hero-stat { text-align: left; }
    .hero-stat .num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; }
    .hero-stat .label { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 4px; }

    /* Hero Quote Card */
    .hero-card {
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px);
      border-radius: var(--radius-lg);
      padding: 2rem;
      box-shadow: var(--shadow-lg);
    }

    .hero-card h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 1.25rem;
      color: var(--text);
    }

    .hero-card .form-group { margin-bottom: 14px; }

    .hero-card input, .hero-card textarea, .hero-card select {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      color: var(--text);
      background: var(--off-white);
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
    }

    .hero-card input:focus, .hero-card textarea:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 4px rgba(232,93,4,0.1);
      background: #fff;
    }

    .hero-card textarea { min-height: 90px; resize: vertical; }

    .hero-card .submit-btn {
      width: 100%;
      padding: 13px;
      background: var(--accent);
      color: #fff;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 15px;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.2s;
      box-shadow: 0 4px 16px rgba(232,93,4,0.3);
    }

    .hero-card .submit-btn:hover { background: #cf4e00; transform: translateY(-1px); }

    /* ── TRUST BAR ── */
    .trust-bar {
      background: var(--primary);
      padding: 1rem 2rem;
    }

    .trust-bar-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3rem;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,0.85);
      font-size: 14px;
      font-weight: 500;
    }

    .trust-item i { color: var(--accent-light); font-size: 18px; }


/* ── SECTION STYLES ── */
    .section { padding: 6rem 2rem; }
    .section-inner { max-width: 1280px; margin: 0 auto; }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff5ee;
      color: var(--accent);
      padding: 5px 14px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .section-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.03em;
      line-height: 1.15;
      margin-bottom: 1rem;
    }

    .section-sub {
      font-size: 1.05rem;
      color: var(--text-muted);
      max-width: 540px;
    }

    .section-header { margin-bottom: 3.5rem; }
    .section-header.center { text-align: center; }
    .section-header.center .section-sub { margin: 0 auto; }


/* ── TESTIMONIALS ── */
    .testimonials-bg { background: var(--primary); }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }

    .testi-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-lg);
      padding: 1.75rem;
      transition: all 0.3s;
    }

    .testi-card:hover { background: rgba(255,255,255,0.11); transform: translateY(-4px); }

    .stars { color: var(--accent-light); font-size: 15px; margin-bottom: 1rem; letter-spacing: 2px; }

    .testi-text {
      font-size: 15px;
      color: rgba(255,255,255,0.85);
      line-height: 1.7;
      margin-bottom: 1.5rem;
      font-style: italic;
    }

    .testi-author { display: flex; align-items: center; gap: 12px; }

    .testi-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--accent);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 15px;
      color: #fff;
      flex-shrink: 0;
    }

    .testi-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 14px; color: #fff; }
    .testi-loc { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }

    /* ── FAQ ── */
    .faqs-bg { background: var(--off-white); }

    .faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

    .faq-item {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: box-shadow 0.2s;
    }

    .faq-item.open { box-shadow: var(--shadow-md); border-color: rgba(232,93,4,0.3); }

    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 1.5rem;
      cursor: pointer;
      gap: 1rem;
    }

    .faq-q span {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      font-size: 15px;
      color: var(--text);
    }

    .faq-icon {
      width: 32px; height: 32px;
      border-radius: 50%;
      background: var(--surface);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
      color: var(--accent);
      flex-shrink: 0;
      transition: transform 0.3s, background 0.2s;
    }

    .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: #fff; }

    .faq-a {
      display: none;
      padding: 0 1.5rem 1.25rem;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .faq-item.open .faq-a { display: block; }

     /* ── FOOTER ── */
    .footer-inner {
      max-width: 1280px;
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand p {
      font-size: 14px;
      line-height: 1.7;
      margin: 1rem 0 1.5rem;
      color: rgba(255,255,255,0.6);
    }

    .footer-brand img { 
        height: 77px;
        width: auto;
        opacity: 0.9; 
    }

    .social-links { display: flex; gap: 10px; }

    .social-link {
      width: 38px; height: 38px;
      border-radius: 10px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.7);
      font-size: 16px;
      text-decoration: none;
      transition: all 0.2s;
    }

    .social-link:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }

    .footer-col h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 14px;
      color: #fff;
      margin-bottom: 1rem;
      letter-spacing: 0.02em;
    }

    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }

    .footer-links a {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 13.5px;
      transition: all 0.2s;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .footer-links a:hover { color: #fff; padding-left: 4px; }
    .footer-links a i { font-size: 12px; color: darkgrey; }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13.5px;
      color: rgba(255,255,255,0.65);
      margin-bottom: 10px;
    }

    .footer-contact-item i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }
    .footer-contact-item a { color: rgba(255,255,255,0.65); text-decoration: none; }
    .footer-contact-item a:hover { color: #fff; }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 1.75rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.45); }

    .footer-bottom-links { display: flex; gap: 1.5rem; }
    .footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
    .footer-bottom-links a:hover { color: rgba(255,255,255,0.85); }

    .footer-disclaimer {
      margin-top: 1.5rem;
      padding-top: 1.25rem;
      border-top: 1px solid rgba(255,255,255,0.07);
      font-size: 11px;
      color: rgba(255,255,255,0.3);
      line-height: 1.6;
    }