/* ============================
   PLAVA TUFNA — CSS
   Prefixed with .pt- to avoid conflicts
   ============================ */

:root {
    --pt-blue-deep: #0B1D3A;
    --pt-blue-mid: #1A3A5C;
    --pt-blue-accent: #2E6B9E;
    --pt-blue-light: #6EC1E4;
    --pt-blue-pale: #E8F4FD;
    --pt-gold: #D4A853;
    --pt-gold-light: #F0D48A;
    --pt-gold-dark: #B8892E;
    --pt-cream: #FDF8F0;
    --pt-white: #FFFFFF;
    --pt-gray-100: #F7F8FA;
    --pt-gray-200: #E9ECF0;
    --pt-gray-400: #9CA3AF;
    --pt-gray-600: #6B7280;
    --pt-gray-800: #1F2937;
    --pt-text: #2D3748;
    --pt-font-heading: 'Playfair Display', Georgia, serif;
    --pt-font-body: 'Inter', -apple-system, sans-serif;
    --pt-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --pt-shadow-sm: 0 2px 8px rgba(11, 29, 58, 0.06);
    --pt-shadow-md: 0 8px 30px rgba(11, 29, 58, 0.1);
    --pt-shadow-lg: 0 20px 60px rgba(11, 29, 58, 0.15);
}

/* ── RESET for PT sections ── */
.pt-hero *, .pt-section *, .pt-stats *, .pt-cta *, .pt-service-hero * {
    box-sizing: border-box;
}

.pt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================
   HERO
   ============================ */
.pt-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pt-blue-deep);
    overflow: hidden;
}

.pt-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: ptHeroZoom 20s ease-in-out infinite alternate;
}

@keyframes ptHeroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.pt-hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(212, 168, 83, 0.15) 3px, transparent 3px);
    background-size: 60px 60px;
    z-index: 1;
}

.pt-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.pt-hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--pt-gold);
    border-radius: 50px;
    color: var(--pt-gold);
    font-family: var(--pt-font-body);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: ptFadeUp 1s ease 0.3s both;
}

.pt-hero h1 {
    font-family: var(--pt-font-heading) !important;
    font-size: clamp(2.8rem, 6vw, 5rem) !important;
    font-weight: 700 !important;
    color: var(--pt-white) !important;
    line-height: 1.1 !important;
    margin-bottom: 1.5rem !important;
    animation: ptFadeUp 1s ease 0.5s both;
}

.pt-hero h1 em {
    font-style: italic;
    color: var(--pt-gold);
}

.pt-hero-subtitle {
    font-family: var(--pt-font-body);
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.75);
    font-weight: 300;
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    animation: ptFadeUp 1s ease 0.7s both;
}

.pt-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: ptFadeUp 1s ease 0.9s both;
}

.pt-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--pt-gold);
    animation: ptBounce 2s ease-in-out infinite;
}

@keyframes ptFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes ptBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================
   BUTTONS
   ============================ */
.pt-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-family: var(--pt-font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: var(--pt-transition);
    cursor: pointer;
    border: none;
}

.pt-btn-primary {
    background: var(--pt-gold) !important;
    color: var(--pt-blue-deep) !important;
}

.pt-btn-primary:hover {
    background: var(--pt-gold-light) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 168, 83, 0.4);
    color: var(--pt-blue-deep) !important;
}

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

.pt-btn-outline:hover {
    border-color: var(--pt-white) !important;
    background: rgba(255,255,255,0.1) !important;
    transform: translateY(-3px);
    color: var(--pt-white) !important;
}

/* ============================
   SECTION COMMON
   ============================ */
.pt-section {
    padding: 7rem 2rem;
    position: relative;
}

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

.pt-section-tag {
    display: inline-block;
    font-family: var(--pt-font-body);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pt-gold-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.pt-section-title {
    font-family: var(--pt-font-heading) !important;
    font-size: clamp(2rem, 4vw, 3rem) !important;
    font-weight: 700 !important;
    color: var(--pt-blue-deep) !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
}

.pt-section-subtitle {
    font-family: var(--pt-font-body);
    font-size: 1.05rem;
    color: var(--pt-gray-600);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* ============================
   ABOUT
   ============================ */
.pt-about { background: var(--pt-white); }

.pt-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.pt-about-image { position: relative; }

.pt-about-image img {
    border-radius: 20px;
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: var(--pt-shadow-lg);
}

.pt-about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, var(--pt-gold) 3px, transparent 3px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 0;
    border-radius: 20px;
}

.pt-about-badge {
    position: absolute;
    top: 30px;
    right: -30px;
    background: var(--pt-gold);
    color: var(--pt-blue-deep);
    padding: 1.2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--pt-shadow-md);
    z-index: 2;
}

.pt-about-badge-number {
    font-family: var(--pt-font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.pt-about-badge-label {
    font-family: var(--pt-font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.pt-about-text .pt-section-tag { text-align: left; }
.pt-about-text .pt-section-title { text-align: left; }

.pt-about-text p {
    font-family: var(--pt-font-body);
    color: var(--pt-gray-600);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.pt-about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 2rem;
}

.pt-about-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pt-about-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--pt-blue-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--pt-blue-accent);
}

.pt-about-feature span {
    font-family: var(--pt-font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--pt-gray-800);
}

/* ============================
   SERVICES
   ============================ */
.pt-services {
    background: #3772a3;
    overflow: hidden;
}

.pt-services .pt-section-title {
    color: var(--pt-white) !important;
}

.pt-services .pt-section-subtitle {
    color: rgba(255,255,255,0.6) !important;
}

.pt-services-dots {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(circle, rgba(212, 168, 83, 0.1) 3px, transparent 3px);
    background-size: 30px 30px;
}

.pt-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.pt-service-card {
    display: block;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--pt-transition);
    position: relative;
    text-decoration: none !important;
    color: inherit !important;
}

.pt-service-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.pt-service-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.pt-service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pt-service-card:hover .pt-service-card-image img {
    transform: scale(1.1);
}

.pt-service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 29, 58, 0.6) 0%, transparent 100%);
}

.pt-service-card-content {
    padding: 2rem;
}

.pt-service-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--pt-gold), var(--pt-gold-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    color: var(--pt-blue-deep);
}

.pt-service-card h3 {
    font-family: var(--pt-font-heading) !important;
    font-size: 1.3rem !important;
    margin-bottom: 0.6rem !important;
    color: var(--pt-white) !important;
}

.pt-service-card p {
    font-family: var(--pt-font-body);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.pt-service-link {
    font-family: var(--pt-font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--pt-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--pt-transition);
}

.pt-service-card:hover .pt-service-link {
    color: var(--pt-gold-light);
    letter-spacing: 2px;
}

/* ============================
   GALLERY
   ============================ */
.pt-gallery { background: var(--pt-gray-100); }

.pt-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 1.2rem;
}

.pt-gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.pt-gallery-item:first-child { grid-row: span 2; }

.pt-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pt-gallery-item:hover img { transform: scale(1.08); }

.pt-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 29, 58, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--pt-transition);
}

.pt-gallery-item:hover .pt-gallery-overlay { opacity: 1; }

.pt-gallery-overlay span {
    color: var(--pt-white);
    font-family: var(--pt-font-heading);
    font-size: 1.1rem;
}

/* ============================
   STATS
   ============================ */
.pt-stats {
    background: var(--pt-gold);
    padding: 3.5rem 2rem;
}

.pt-stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.pt-stat-item { position: relative; }

.pt-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: rgba(11, 29, 58, 0.15);
}

.pt-stat-number {
    font-family: var(--pt-font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--pt-blue-deep);
    line-height: 1;
}

.pt-stat-label {
    font-family: var(--pt-font-body);
    font-size: 0.85rem;
    color: var(--pt-blue-mid);
    font-weight: 500;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================
   TESTIMONIALS
   ============================ */
.pt-testimonials { background: var(--pt-white); }

.pt-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pt-testimonial-card {
    background: var(--pt-gray-100);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--pt-transition);
}

.pt-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--pt-shadow-md);
}

.pt-testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1.2rem;
    color: var(--pt-gold);
}

.pt-testimonial-card blockquote {
    font-family: var(--pt-font-body);
    font-size: 1rem;
    color: var(--pt-gray-600);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    border: none;
    padding: 0;
}

.pt-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pt-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pt-blue-accent), var(--pt-blue-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pt-white);
    font-family: var(--pt-font-body);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.pt-testimonial-name {
    font-family: var(--pt-font-body);
    font-weight: 600;
    color: var(--pt-gray-800);
    font-size: 0.95rem;
}

.pt-testimonial-role {
    font-family: var(--pt-font-body);
    font-size: 0.8rem;
    color: var(--pt-gray-400);
}

/* ============================
   FAQ
   ============================ */
.pt-faq { background: var(--pt-cream); }

.pt-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.pt-faq-item {
    background: var(--pt-white);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--pt-shadow-sm);
    transition: var(--pt-transition);
}

.pt-faq-item:hover { box-shadow: var(--pt-shadow-md); }

.pt-faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--pt-font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--pt-gray-800);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--pt-transition);
}

.pt-faq-question:hover { color: var(--pt-blue-accent); }

.pt-faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--pt-blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--pt-transition);
    color: var(--pt-blue-accent);
}

.pt-faq-item.pt-active .pt-faq-icon {
    background: var(--pt-gold);
    transform: rotate(45deg);
    color: var(--pt-blue-deep);
}

.pt-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.pt-faq-item.pt-active .pt-faq-answer {
    max-height: 300px;
}

.pt-faq-answer-inner {
    padding: 0 2rem 1.5rem;
    font-family: var(--pt-font-body);
    color: var(--pt-gray-600);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ============================
   CTA
   ============================ */
.pt-cta {
    background: var(--pt-blue-deep);
    padding: 7rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pt-cta-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(212, 168, 83, 0.06) 4px, transparent 4px);
    background-size: 50px 50px;
}

.pt-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.pt-cta h2 {
    font-family: var(--pt-font-heading) !important;
    font-size: clamp(2rem, 4vw, 3rem) !important;
    color: var(--pt-white) !important;
    margin-bottom: 1rem !important;
}

.pt-cta h2 em { color: var(--pt-gold); font-style: italic; }

.pt-cta-content > p {
    font-family: var(--pt-font-body);
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.pt-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pt-cta-contact {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.pt-cta-contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255,255,255,0.6);
    font-family: var(--pt-font-body);
    font-size: 0.9rem;
}

.pt-cta-contact-item svg { color: var(--pt-gold); }

/* ============================
   SERVICE PAGE — HERO
   ============================ */
.pt-service-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pt-blue-deep);
    overflow: hidden;
}

.pt-service-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.pt-service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 6rem 2rem 4rem;
}

.pt-breadcrumb {
    display: inline-block;
    color: var(--pt-gold) !important;
    font-family: var(--pt-font-body);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-decoration: none !important;
    transition: var(--pt-transition);
}

.pt-breadcrumb:hover { opacity: 0.7; }

.pt-service-hero-content h1 {
    font-family: var(--pt-font-heading) !important;
    font-size: clamp(2.2rem, 5vw, 3.5rem) !important;
    font-weight: 700 !important;
    color: var(--pt-white) !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
}

.pt-service-hero-content h1 em {
    color: var(--pt-gold);
    font-style: italic;
}

.pt-service-hero-content p {
    font-family: var(--pt-font-body);
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    font-weight: 300;
}

/* ── Service Intro ── */
.pt-service-intro { background: var(--pt-white); }

.pt-service-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pt-service-intro-text .pt-section-tag { text-align: left; }
.pt-service-intro-text .pt-section-title { text-align: left; }

.pt-service-intro-text p {
    font-family: var(--pt-font-body);
    color: var(--pt-gray-600);
    font-size: 1.05rem;
    line-height: 1.8;
}

.pt-service-intro-image img {
    border-radius: 20px;
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: var(--pt-shadow-lg);
}

/* ── Service Features Grid ── */
.pt-service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.pt-service-feature-card {
    background: var(--pt-white);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--pt-transition);
    box-shadow: var(--pt-shadow-sm);
}

.pt-service-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--pt-shadow-md);
}

.pt-service-feature-number {
    font-family: var(--pt-font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pt-gold);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 1rem;
}

.pt-service-feature-card h3 {
    font-family: var(--pt-font-heading) !important;
    font-size: 1.3rem !important;
    color: var(--pt-blue-deep) !important;
    margin-bottom: 0.8rem !important;
}

.pt-service-feature-card p {
    font-family: var(--pt-font-body);
    color: var(--pt-gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ── Includes ── */
.pt-service-includes { background: var(--pt-white); }

.pt-service-includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.pt-includes-list {
    display: grid;
    gap: 1rem;
}

.pt-includes-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--pt-font-body);
    font-size: 1rem;
    color: var(--pt-gray-800);
    padding: 0.8rem 1.2rem;
    background: var(--pt-gray-100);
    border-radius: 12px;
    transition: var(--pt-transition);
}

.pt-includes-item:hover {
    background: var(--pt-blue-pale);
}

/* ============================
   SCROLL ANIMATIONS
   ============================ */
.pt-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.pt-reveal.pt-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
    .pt-services-grid { grid-template-columns: repeat(2, 1fr); }
    .pt-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .pt-stat-item:nth-child(2)::after { display: none; }
}

@media (max-width: 768px) {
    .pt-section { padding: 4rem 1.5rem; }

    .pt-about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .pt-about-image img { height: 350px; }
    .pt-about-badge { right: 10px; top: -15px; }
    .pt-about-features { grid-template-columns: 1fr; }

    .pt-services-grid { grid-template-columns: 1fr; }

    .pt-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .pt-gallery-item:first-child { grid-row: span 1; }
    .pt-gallery-item { height: 200px; }

    .pt-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .pt-stat-item::after { display: none !important; }

    .pt-testimonials-grid { grid-template-columns: 1fr; }

    .pt-service-intro-grid { grid-template-columns: 1fr; }
    .pt-service-features-grid { grid-template-columns: 1fr; }
    .pt-service-includes-grid { grid-template-columns: 1fr; gap: 2rem; }

    .pt-cta-contact { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .pt-hero h1 { font-size: 2.2rem !important; }
    .pt-hero-buttons { flex-direction: column; align-items: center; }
    .pt-gallery-grid { grid-template-columns: 1fr; }
    .pt-stats-grid { grid-template-columns: 1fr; }
    .pt-cta-buttons { flex-direction: column; align-items: center; }
}
