:root {
    --nav-height: 72px;
    --site-gradient: linear-gradient(135deg, #efe8dc 0%, #eef1f4 52%, #e3ecf1 100%);
}


@import url('https://fonts.googleapis.com/css2?family=Coiny&family=Cormorant+Garamond:wght@500;600;700&family=Fjalla+One&family=Manrope:wght@500;600&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');

.navbar {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
    min-height: var(--nav-height);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(46, 46, 46, 0.8);
}

@media (max-width: 991.98px) {
    .navbar.menu-open {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(46, 46, 46, 0.8);
    }

    .navbar-collapse.show {
        background: transparent;
    }
}

.navbar-brand {
    color: #000000;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
}
.navbar-brand:hover {
    color: #2a2a2a;
}

.brand-logo {
    display: block;
    width: auto;
    height: 42px;
}

.nav-link {
    color: rgba(0, 0, 0, 0.6) ;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem ;
    border-radius: 4px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
    color: #6183a4 ;
    background: rgba(255, 255, 255, 0.1);
}

.navbar .dropdown-menu {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(46, 46, 46, 0.14);
    border-radius: 12px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
    padding: 0.45rem;
}

.navbar .dropdown-item {
    border-radius: 8px;
    color: rgba(0, 0, 0, 0.72);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.55rem 0.75rem;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background: rgba(111, 143, 155, 0.12);
    color: #2f5f72;
}

.navbar .dropdown-item.active,
.navbar .dropdown-item:active {
    background: rgba(111, 143, 155, 0.18);
    color: #2f5f72;
}

.navbar .dropdown-toggle::after {
    margin-left: 0.45rem;
    vertical-align: 0.15em;
}




body {
    padding-top: 0;
    background: var(--site-gradient);
}


#hero {
    background: var(--site-gradient);
    width: 100vw;
    min-height: 300px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: calc(var(--nav-height) + 2rem) 0 2rem;
    text-align: center;
    
}

#hero h1 {
    font-family: 'Fjalla One', sans-serif;
    font-weight: 700;
    letter-spacing: 0.03em;
}

#hero p {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

#about {
    background-color: #ffffff;
    font-family: noto serif, serif;
    width: 100vw;
    min-height: 240px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 2rem 0;
    
}

#about a {
    transition: transform 0.2s ease;
}

#about a:hover {
    transform: scale(1.03);
}

.about-icon {
    color: #7db7d0;
}

#contact {
    background-color: #b4c6ce;
    font-family: noto serif, serif;
    width: 100vw;
    min-height: 340px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 2rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 10%;
    padding-right: 10%;
}

#about-me {
    background: linear-gradient(135deg, #e8edf0 0%, #f4f1e8 54%, #e6edf0 100%);
    font-family: noto serif, serif;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 3rem 0;
}

#about-me h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.about-image {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.about-copy {
    padding-left: 1rem;
}

.about-copy h3 {
    font-size: 1.7rem;
    padding-left: 0;
    margin-bottom: 1rem;
}

.about-copy p {
    color: #40484d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
    .about-copy {
        padding-left: 0;
    }
}

@media (max-width: 575.98px) {
    #about-me h2 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    #about-me .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .about-copy {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
}

.glass-btn {
    background: rgba(255, 255, 255, 0.22);
    color: #1f1f1f;
    border: 1px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
}

.glass-btn:hover,
.glass-btn:focus {
    background: rgba(255, 255, 255, 0.32);
    color: #111;
    border-color: rgba(255, 255, 255, 0.65);
    transform: translateY(-1px);
}

.glass-btn:active {
    transform: translateY(0);
}


.glass-btn-light {
    background: rgba(255, 255, 255, 0.22);
    color: #c0c0c0;
    border: 1px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
}

.glass-btn-light:hover,
.glass-btn-light:focus {
    background: rgba(255, 255, 255, 0.32);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.65);
    transform: translateY(-1px);
}

.glass-btn-light:active {
    transform: translateY(0);
}


#films {
    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('../assets/images/wedding.jpg');
    background-size: cover;
    background-position: 10% 90%;
    background-repeat: no-repeat;
    width: 100vw;
    min-height: 380px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 2rem 0;
    padding-left: 10%;
    padding-right: 10%;
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: noto serif, serif;
}

#portfolio {
    background-color: #ffffff;
    font-family: noto serif, serif;
    width: 100vw;
    min-height: 240px;
    max-height: 650px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
}

.portfolio-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 auto;
}

#experience {
    background-color: #ffffff;
    font-family: noto serif, serif;
    width: 100vw;
    min-height: 240px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 2rem 0;
    text-align: center;
}



.charity-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    padding: 1rem;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.charity-logo-card:hover {
    transform: translateY(-2px);
   
}

.charity-logo-card img {
    width: 100%;
    max-width: 160px;
    max-height: 56px;
    object-fit: contain;
}


h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
    padding-left: 10%;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.footer-socials a:hover {
    opacity: 1;
}

.contact-body {
    background: var(--site-gradient);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.contact-page {
    max-width: 900px;
    margin: 0 auto;
    padding: calc(var(--nav-height) + 2rem) 1rem 3rem;
    font-family: noto serif, serif;
    flex: 1;
}

.contact-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.contact-title {
    font-family: coiny, sans-serif;
    letter-spacing: 0.02em;
}

.form-control,
.form-select {
    border-radius: 10px;
    border-color: rgba(0, 0, 0, 0.14);
}

.form-control:focus,
.form-select:focus {
    border-color: #6f8f9b;
    box-shadow: 0 0 0 0.2rem rgba(111, 143, 155, 0.2);
}

.contact-meta a {
    color: #1f1f1f;
    text-decoration: none;
}

.contact-meta a:hover {
    text-decoration: underline;
}

.web-design-body {
    background: var(--site-gradient);
    min-height: 100vh;
}

.web-services-body {
    background: var(--site-gradient);
}

.web-services-shell {
    width: min(980px, calc(100% - 2rem));
    margin: 0 auto;
    padding: calc(var(--nav-height) + 3rem) 0 3.5rem;
    font-family: 'Fjalla One', sans-serif;
    color: #1f1f1f;
}

.web-services-intro {
    margin-bottom: 2.5rem;
}

.web-services-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    color: #676767;
    margin-bottom: 0.5rem;
}

.web-services-intro h1 {
    font-family: 'Fjalla One', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.web-services-lead {
    max-width: 70ch;
    line-height: 1.8;
    color: #333;
}

.web-services-list {
    display: grid;
    gap: 1rem;
}

.web-service-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 1.4rem;
}

/* web design card color */
.web-design-body .web-services-list .card {
    background: rgba(201, 197, 197, 0.92);
    border: 1px solid rgba(45, 45, 45, 0.12);
    border-radius: 20px;
    overflow: hidden;
}

.web-design-body .web-services-list .card-body {
    text-align: center;
}

.web-design-body .web-services-list .card h2 {
    padding-left: 0;
}

.web-design-body .web-services-list .card-img-top {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.web-service-item h2 {
    font-size: 1.3rem;
    margin-bottom: 0.65rem;
    color: #161616;
    padding-left: 0;
}

.web-service-item p {
    margin-bottom: 0.55rem;
    line-height: 1.75;
    color: #353535;
}

.web-service-meta {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #5a5a5a;
}

.web-services-outro {
    margin-top: 2rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.web-services-outro h2 {
    padding-left: 0;
    margin-bottom: 0.65rem;
}

.web-services-outro p {
    margin-bottom: 1rem;
    max-width: 66ch;
    line-height: 1.75;
}

.service-hero {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: calc(var(--nav-height) + 3rem) 0 3.5rem;
    font-family: noto serif, serif;
}

.service-hero-inner,
.service-section,
.service-cta {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.service-hero-panel {
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(111, 143, 155, 0.14);
    color: #2b4c59;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-hero h1,
.service-section h2,
.service-cta h2 {
    font-family: coiny, sans-serif;
}

.service-hero h1 {
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 0.95;
    margin: 1rem 0 1rem;
}

.service-lead {
    font-size: 1.08rem;
    line-height: 1.75;
    color: #394247;
    max-width: 62ch;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.hero-point {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 18px;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-point strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #1f1f1f;
}

.service-section {
    padding: 0 0 3rem;
    font-family: noto serif, serif;
}

.service-section h2 {
    padding-left: 0;
    margin-bottom: 0.85rem;
}

.service-copy {
    color: #49545a;
    max-width: 68ch;
    line-height: 1.75;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.service-card .card-body {
    padding: 1.5rem;
}

.service-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(180, 198, 206, 0.35);
    color: #22414f;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.service-list li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
}

.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.95rem;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: #6f8f9b;
}

.process-step {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 1.4rem;
    height: 100%;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    background: #1f1f1f;
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.72) 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.07);
    height: 100%;
}

.pricing-card.featured {
    border-color: rgba(111, 143, 155, 0.45);
    transform: translateY(-6px);
}

.pricing-badge {
    display: inline-block;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(111, 143, 155, 0.14);
    color: #2b4c59;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pricing-value {
    font-family: coiny, sans-serif;
    font-size: 2rem;
    color: #1f1f1f;
    margin: 0.75rem 0 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 1.15rem 1.25rem;
}

.service-cta {
    padding: 0 0 3.5rem;
}

.service-cta-panel {
    background: linear-gradient(135deg, rgba(180, 198, 206, 0.9), rgba(255, 255, 255, 0.72));
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.photography-body {
    background: var(--site-gradient);
    min-height: 100vh;
}

.photo-hero {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: calc(var(--nav-height) + 3rem) 0 3.5rem;
    font-family: noto serif, serif;
}

.photo-hero-inner,
.photo-section,
.photo-cta {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.photo-hero-panel {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 28px;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.photo-hero-copy {
    padding: 2rem;
}

.photo-hero h1,
.photo-section h2,
.photo-cta h2 {
    font-family: coiny, sans-serif;
}

.photo-hero h1 {
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 0.95;
    margin: 1rem 0 1rem;
}

.photo-lead {
    font-size: 1.08rem;
    line-height: 1.75;
    color: #40484d;
    max-width: 62ch;
}

.photo-visual {
    min-height: 100%;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.06), rgba(17, 17, 17, 0.16)), url('../assets/images/wedding.jpg');
    background-size: cover;
    background-position: center;
    min-height: 340px;
}

.photo-stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.photo-stat {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 1rem;
}

.photo-stat strong {
    display: block;
    font-family: coiny, sans-serif;
    font-size: 1.5rem;
    color: #1f1f1f;
}

.photo-section {
    padding: 0 0 3rem;
    font-family: noto serif, serif;
}

.photo-section h2 {
    padding-left: 0;
    margin-bottom: 0.85rem;
}

.photo-copy {
    color: #4b5459;
    max-width: 68ch;
    line-height: 1.75;
}

.photo-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.photo-card .card-body {
    padding: 1.5rem;
}

.photo-card .service-icon {
    background: rgba(121, 144, 158, 0.18);
    color: #24404c;
}

.photo-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.photo-list li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
}

.photo-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.95rem;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: #6f8f9b;
}

.photo-step {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 1.4rem;
    height: 100%;
}

.photo-cta {
    padding: 0 0 3.5rem;
}

.photo-cta-panel {
    background: linear-gradient(135deg, rgba(246, 226, 193, 0.9), rgba(255, 255, 255, 0.72));
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767.98px) {
    .photo-stat-row {
        grid-template-columns: 1fr;
    }
}

.videography-body {
    background: linear-gradient(135deg, #efe8dc 0%, #eef1f4 52%, #e3ecf1 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.videography-body .web-services-shell {
    flex: 1;
}

.video-hero {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: calc(var(--nav-height) + 3rem) 0 3.5rem;
    font-family: noto serif, serif;
}

.video-hero-inner,
.video-section,
.video-cta {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.video-hero-panel {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 28px;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.video-hero-copy {
    padding: 2rem;
}

.video-hero h1,
.video-section h2,
.video-cta h2 {
    font-family: coiny, sans-serif;
}

.video-hero h1 {
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 0.95;
    margin: 1rem 0 1rem;
}

.video-lead {
    font-size: 1.08rem;
    line-height: 1.75;
    color: #40484d;
    max-width: 62ch;
}

.video-visual {
    min-height: 100%;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.1), rgba(17, 17, 17, 0.34)), url('../assets/images/wedding.jpg');
    background-size: cover;
    background-position: center;
    min-height: 340px;
}

.video-stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.video-stat {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 1rem;
}

.video-stat strong {
    display: block;
    font-family: coiny, sans-serif;
    font-size: 1.5rem;
    color: #1f1f1f;
}

.video-section {
    padding: 0 0 3rem;
    font-family: noto serif, serif;
}

.video-section h2 {
    padding-left: 0;
    margin-bottom: 0.85rem;
}

.video-copy {
    color: #4b5459;
    max-width: 68ch;
    line-height: 1.75;
}

.video-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.video-card .card-body {
    padding: 1.5rem;
}

.video-card .service-icon {
    background: rgba(160, 134, 99, 0.18);
    color: #5b452f;
}

.video-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.video-list li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
}

.video-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.95rem;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: #8a6f54;
}

.video-step {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 1.4rem;
    height: 100%;
}

.video-cta {
    padding: 0 0 3.5rem;
}

.video-cta-panel {
    background: linear-gradient(135deg, rgba(215, 199, 175, 0.9), rgba(255, 255, 255, 0.72));
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.videography-feature {
    margin-top: 2.25rem;
}

.video-embed-wrapper {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin: 0 auto 2rem;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
}

.video-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

@media (max-width: 767.98px) {
    .video-stat-row {
        grid-template-columns: 1fr;
    }
}

.graphic-design-body {
    background: var(--site-gradient);
    min-height: 100vh;
}

.photography-body {
    background: var(--site-gradient);
    min-height: 100vh;
}

.photo-masonry {
    column-count: 3;
    column-gap: 1rem;
}

.photo-masonry figure {
    margin: 0 0 1rem;
    break-inside: avoid;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(180, 198, 206, 0.24);
    border: 1px solid rgba(24, 24, 24, 0.12);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.photo-masonry img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991.98px) {
    .photo-masonry {
        column-count: 2;
    }
}

@media (max-width: 575.98px) {
    .photo-masonry {
        column-count: 1;
    }
}

.graphic-masonry {
    column-count: 3;
    column-gap: 1rem;
}

.graphic-masonry figure {
    margin: 0 0 1rem;
    break-inside: avoid;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(180, 198, 206, 0.3);
    border: 1px solid rgba(24, 24, 24, 0.12);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.graphic-masonry img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991.98px) {
    .graphic-masonry {
        column-count: 2;
    }
}

@media (max-width: 575.98px) {
    .graphic-masonry {
        column-count: 1;
    }
}

.graphic-hero {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: calc(var(--nav-height) + 3rem) 0 3.5rem;
    font-family: noto serif, serif;
}

.graphic-hero-inner,
.graphic-section,
.graphic-cta {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.graphic-hero-panel {
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 28px;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.graphic-hero-copy {
    padding: 2rem;
}

.graphic-hero h1,
.graphic-section h2,
.graphic-cta h2 {
    font-family: coiny, sans-serif;
}

.graphic-hero h1 {
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 0.95;
    margin: 1rem 0 1rem;
}

.graphic-lead {
    font-size: 1.08rem;
    line-height: 1.75;
    color: #40484d;
    max-width: 62ch;
}

.graphic-visual {
    min-height: 100%;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.07), rgba(17, 17, 17, 0.2)), url('../assets/images/porfoliopng.png');
    background-size: cover;
    background-position: center;
    min-height: 340px;
}

.graphic-stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.graphic-stat {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 1rem;
}

.graphic-stat strong {
    display: block;
    font-family: coiny, sans-serif;
    font-size: 1.5rem;
    color: #1f1f1f;
}

.graphic-section {
    padding: 0 0 3rem;
    font-family: noto serif, serif;
}

.graphic-section h2 {
    padding-left: 0;
    margin-bottom: 0.85rem;
}

.graphic-copy {
    color: #4b5459;
    max-width: 68ch;
    line-height: 1.75;
}

.graphic-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.graphic-card .card-body {
    padding: 1.5rem;
}

.graphic-card .service-icon {
    background: rgba(134, 160, 120, 0.18);
    color: #4b5e3d;
}

.graphic-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.graphic-list li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
}

.graphic-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.95rem;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: #7b9a65;
}

.graphic-step {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 1.4rem;
    height: 100%;
}

.graphic-cta {
    padding: 0 0 3.5rem;
}

.graphic-cta-panel {
    background: linear-gradient(135deg, rgba(217, 226, 197, 0.9), rgba(255, 255, 255, 0.72));
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767.98px) {
    .graphic-stat-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .hero-points {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }
}