/* Responsive tweaks */

/* =========================================================
   MOBILE: iPhone SE / small screens (0 - 550px)
   ========================================================= */
   
@media (max-width: 550px) {
  .index-page,
  section,
  .section-container {
    height: auto !important;
    min-height: 100vh;
  }

  section {
    padding: 0 1.2rem;
  }

  .logo img {
    max-width: 150px;
  }

  .specializing {
    font-size: 0.9rem;
  }

  .button-container {
    flex-direction: row;
    gap: 0.5rem;
  }

  .btn {
    min-width: 110px;
    padding: 0.8rem 1rem;
    font-size: 14px;
  }

  #socials-container {
    margin-top: 2rem !important;
    gap: 0.8rem;
  }

  .social-icons img {
    width: 30px;
    height: 30px;
  }
}

/* =========================================================
   TABLETS: 551px - 920px
   ========================================================= */
@media (min-width: 551px) and (max-width: 920px) {
  .logo img {
    max-width: 200px;
  }

  .specializing {
    font-size: 1rem;
  }

  .btn {
    min-width: 140px;
    padding: 1rem;
  }

  #socials-container {
    margin-top: 4rem !important;
  }
}

/* =========================================================
   LARGE DEVICES: 921px - 1280px
   ========================================================= */
@media (min-width: 921px) and (max-width: 1280px) {
  .logo img {
    max-width: 250px;
  }

  .specializing {
    font-size: 1.2rem;
  }

  .btn {
    font-size: 17px;
    min-width: 150px;
  }

  #socials-container {
    margin-top: 3rem;
  }
}

/* Hamburger*/

/* Show hamburger nav on small screens, hide desktop nav */
@media screen and (max-width: 1024px) {
  #desktop-nav {
    display: none;
  }

  #hamburger-nav {
    display: block;
    position: relative;
    z-index: 1000;
  }
}

/* Hamburger Navigation - Mobile Only */
@media screen and (max-width: 1024px) {
  #hamburger-nav {
    display: flex; /* show only on mobile */
    align-items: center;
    position: relative;
    z-index: 1000;
    background-color: var(--black-clr);
    padding: 1rem;
  }

  #hamburger-nav .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  #hamburger-nav .mobile-logo {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  #hamburger-nav .mobile-logo img {
    width: 130px; /* default mobile size */
    max-width: 100%;
    height: auto;
    transition: width 0.3s ease;
  }

  .hamburger-menu {
    display: flex;
    align-items: center;
    cursor: pointer;
    z-index: 1100;
    padding-right: 2rem;
    margin-right: 1.3rem;
  }

  .hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 22px;
    width: 28px;
    cursor: pointer;
  }

  .hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: red;
    transition: all 0.3s ease-in-out;
  }

  .hamburger-icon.open span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger-icon.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger-icon.open span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

@media screen and (max-width: 1367px) {
  .menu-links {
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    position: fixed;
    top: 0;
    right: 0;
    height: 80vh; /* full viewport height */
    width: 80%; /* default tablet/mobile width */
    background-color: black;
    padding: 4rem 2rem 3rem 2rem; /* top padding for header, bottom for socials */
    overflow-y: auto; /* scroll if too many links */
    z-index: 1000;
  }
}

/* Projects  */

/* ========== RESPONSIVE STYLES ========== */

/* Tablets: Reduce columns and adjust font sizes */
@media screen and (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .project-block {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .project-block img {
    max-width: 90%;
    margin: 0 auto;
  }

  .project-details {
    padding: 1rem;
  }

  .project-header h1 {
    font-size: 2.5rem;
  }

  .project-header p {
    font-size: 1.1rem;
  }
}

/* Mobile: Single column layout */
@media screen and (max-width: 768px) {
  .portfolio-title {
    font-size: 2rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .portfolio-item img {
    height: 200px;
  }

  .project-header h1 {
    font-size: 2rem;
  }

  .project-header p {
    font-size: 1rem;
  }

  .project-details h2 {
    font-size: 1.5rem;
  }

  .project-details p {
    font-size: 0.95rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Small Mobile: Tighter spacing & smaller fonts */
@media screen and (max-width: 480px) {
  .portfolio-title {
    font-size: 1.6rem;
  }

  .portfolio-grid {
    gap: 1rem;
  }

  .portfolio-item img {
    height: 180px;
  }

  .project-header h1 {
    font-size: 1.6rem;
  }

  .project-header p {
    font-size: 0.9rem;
  }

  .project-details h2 {
    font-size: 1.3rem;
  }

  .project-details p {
    font-size: 0.9rem;
  }
}

/* ================================
   BRANDING RESPONSIVE DESIGN
   ================================ */

@media (max-width: 991px) {
  .branding-hero {
    padding: 90px 20px;
    clip-path: none;
  }

  .branding-hero__content h1 {
    font-size: 2.2rem;
  }

  .branding-hero__content p {
    font-size: 1.1rem;
  }

  .branding-packages h2,
  .branding-process h2,
  .branding-contact h2 {
    font-size: 2rem;
  }

  .branding-grid {
    flex-direction: column;
    align-items: center;
  }

  .branding-card {
    width: 100%;
    max-width: 400px;
  }

  .branding-steps {
    flex-direction: column;
    gap: 20px;
  }

  .branding-step {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .branding-contact form {
    width: 90%;
  }

  /* Fix overview section stacking */
  .branding-content {
    flex-direction: column;
    padding: 3rem 1rem;
  }

  .branding-content__image,
  .branding-content__text {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .branding-hero__content h1 {
    font-size: 1.8rem;
  }

  .branding-hero__content p {
    font-size: 1rem;
  }

  .branding-btn {
    font-size: 14px;
    padding: 0.7rem 2rem;
  }

  .branding-card {
    width: 90%;
    padding: 25px;
  }

  .branding-card h3 {
    font-size: 1.3rem;
  }

  .branding-card p {
    font-size: 0.95rem;
  }

  .branding-contact input,
  .branding-contact select,
  .branding-contact textarea {
    font-size: 0.95rem;
  }

  .branding-contact button {
    font-size: 15px;
    padding: 12px;
  }
}

/* Mobile adjustments for spacing (up to 600px) */
@media (max-width: 600px) {
  /* Reduce space below subtitle */
  .social-hero__subtitle {
    margin-bottom: 1.5rem; /* was 3rem, now smaller */
  }

  /* Reduce space between mockup images */
  .social-hero__mockups {
    gap: 1rem; /* was 1.5rem, now tighter */
  }
}

/* Extra small phones (up to 400px) */
@media (max-width: 400px) {
  .social-hero__subtitle {
    margin-bottom: 1rem; /* even tighter for small phones */
  }

  .social-hero__mockups {
    gap: 0.8rem; /* closer spacing */
  }
}

/* Mobile adjustments for social features */
@media (max-width: 768px) {
  /* Reduce text size */
  .social-features__text h2 {
    font-size: 1rem; /* smaller headline */
  }

  .social-features__text p {
    font-size: 0.9rem; /* smaller paragraph */
  }
}

/* Company Profile*/
/* Small phones (up to 400px) */
@media (max-width: 400px) {
  .company-profile-section {
    padding: 2rem 1rem;
  }

  .company-profile__title {
    font-size: 1.6rem;
  }

  .company-profile__subtitle {
    font-size: 0.9rem;
  }

  .company-profile__grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .company-profile__card {
    padding: 1.2rem;
  }

  .company-profile__heading {
    font-size: 1.1rem;
  }

  .company-profile__text {
    font-size: 0.9rem;
  }
}

/* Mid phones (401px–600px) */
@media (min-width: 401px) and (max-width: 600px) {
  .company-profile-section {
    padding: 2.5rem 1.5rem;
  }

  .company-profile__title {
    font-size: 1.8rem;
  }

  .company-profile__subtitle {
    font-size: 1rem;
  }

  .company-profile__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .company-profile__heading {
    font-size: 1.2rem;
  }
}

/* Large phones / small tablets (601px–768px) */
@media (min-width: 601px) and (max-width: 768px) {
  .company-profile__title {
    font-size: 2rem;
  }

  .company-profile__subtitle {
    font-size: 1.05rem;
  }

  .company-profile__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }

  .company-profile__heading {
    font-size: 1.25rem;
  }
}

/* Tablets (769px–1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .company-profile__title {
    font-size: 2.4rem;
  }

  .company-profile__subtitle {
    font-size: 1.15rem;
  }

  .company-profile__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .company-profile__card {
    padding: 1.8rem;
  }
}

/* Large tablets / Nest Hub Max (1025px–1280px) */
@media (min-width: 1025px) and (max-width: 1280px) {
  .company-profile__title {
    font-size: 2.6rem;
  }

  .company-profile__subtitle {
    font-size: 1.2rem;
  }

  .company-profile__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .company-profile__card {
    padding: 2rem;
  }

  .company-profile__heading {
    font-size: 1.35rem;
  }

  .company-profile__text {
    font-size: 1rem;
  }
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */

/* Tablets (up to 1024px) */
@media (max-width: 1024px) {
  .packaging-highlight {
    grid-template-columns: 1fr; /* stack */
    text-align: center;
  }

  .packaging-highlight__title {
    font-size: 2.2rem;
  }

  .packaging-highlight__text {
    font-size: 1rem;
  }
}

/* Large Phones & Small Tablets (up to 768px) */
@media (max-width: 768px) {
  .packaging-highlight {
    gap: 2rem;
  }

  .packaging-highlight__image img {
    max-height: 350px;
    object-fit: cover;
  }

  .packaging-highlight__title {
    font-size: 2rem;
  }

  .packaging-gallery__title {
    font-size: 1.8rem;
  }
}

/* Phones (up to 600px) */
@media (max-width: 600px) {
  .packaging-showcase {
    padding: 0 0.5rem;
  }

  .packaging-highlight {
    gap: 1.6rem;
  }

  .packaging-highlight__title {
    font-size: 1.8rem;
  }

  .packaging-highlight__text {
    font-size: 0.95rem;
  }

  .packaging-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

/* Small Phones (up to 420px) */
@media (max-width: 420px) {
  .packaging-highlight__title {
    font-size: 1.6rem;
  }

  .packaging-gallery__grid {
    grid-template-columns: 1fr; /* 1 column for very small screens */
  }

  .packaging-highlight__text {
    font-size: 0.9rem;
  }
}

/* ===========================
   Business Card RESPONSIVE FIXES
   =========================== */

/* Tablets and below */
@media (max-width: 900px) {
  .business-card__img {
    height: 280px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .business-card__intro h2 {
    font-size: 1.8rem;
  }

  .business-card__intro p {
    font-size: 1rem;
  }

  .business-card__grid {
    grid-template-columns: 1fr; /* one item per row */
    gap: 2rem;
  }

  .business-card__img {
    height: 240px; /* fit smaller screens */
  }
}

/* Extra small phones (360px–414px) */
@media (max-width: 414px) {
  .business-card__img {
    height: 210px;
  }

  .business-card__item {
    padding: 1.5rem 0.5rem;
  }
}

/* ================= PRINT RESPONSIVE ================= */

/* Tablets */
@media screen and (max-width: 1024px) {
  .print-gallery__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .print-gallery__grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .print-gallery__title {
    font-size: 1.5rem;
  }

  .print-gallery__subtitle {
    font-size: 1rem;
  }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
  .print-gallery__grid {
    grid-template-columns: 1fr;
  }

  .print-gallery__title {
    font-size: 1, 5rem;
  }

  .print-gallery__subtitle {
    font-size: 0.9rem;
  }
}

/* ============================
   DESIGN SERVICES MOBILE RESPONSIVE
=============================== */

@media (max-width: 992px) {
  .portfolio-row {
    padding: 1.5rem;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .portfolio-row,
  .portfolio-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .portfolio-text {
    order: 2;
  }

  .portfolio-image {
    order: 1;
  }

  .portfolio-row {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  }
}

@media (max-width: 480px) {
  .portfolio-row {
    padding: 1.2rem;
  }

  .client-experience__grid {
    grid-template-columns: 1fr;
  }

  .client-experience__card {
    padding: 1.5rem;
  }

  .graphic-showcase__description {
    font-size: 1.05rem;
  }
}

/* FOOTER */

/* Large tablets & small laptops */
@media (max-width: 1024px) {
  .hs-footer {
    padding: 2rem 3rem;
  }
  .hs-footer-top {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .hs-footer-column {
    flex: 1 1 100%;
    max-width: 400px;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .hs-footer-logo {
    align-items: center;
  }
  .hs-footer-logo img {
    width: 150px;
    max-width: 70%;
    margin-bottom: 1rem;
    gap: 1rem;
  }
  .hs-footer-socials {
    justify-content: center;
  }
}

/* Tablets (portrait) */
@media (max-width: 768px) {
  .hs-footer {
    padding: 1.5rem 2rem;
  }
  .hs-footer-logo img {
    width: 120px;
    max-width: 60%;
  }
  .hs-footer-column h4 {
    font-size: 1rem;
  }
  .hs-footer-column li {
    font-size: 0.9rem;
  }
  .hs-footer-socials a {
    font-size: 18px;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .hs-footer {
    padding: 1rem 1rem;
  }
  .hs-footer-logo img {
    width: 150px;
    max-width: 60%;
    margin-bottom: 0.8rem;
  }
  .hs-footer-column h4 {
    font-size: 0.95rem;
  }
  .hs-footer-column li {
    font-size: 1rem;
  }
  .hs-footer-socials {
    gap: 0.5rem;
  }
  .hs-footer-socials a {
    font-size: 25px;
  }
  .hs-footer-bottom {
    font-size: 15px;
    padding-top: 0.3rem;
  }
}

/* ========== WEB DEV MOBILE RESPONSIVE ========== */

/* General Mobile Adjustments */
@media (max-width: 1024px) {
  .wdv-services {
    padding: 0 1.5rem;
    margin: 4rem auto;
  }

  .wdv-services__heading {
    font-size: 2.4rem;
  }

  .wdv-services__intro {
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  .wdv-service {
    flex-direction: column;
    gap: 2rem;
  }

  .wdv-service--alt {
    flex-direction: column;
  }

  .wdv-service__title {
    font-size: 1.6rem;
  }

  .wdv-service__desc {
    font-size: 0.95rem;
  }

  .wdv-service__btn {
    width: 100%;
    text-align: center;
    padding: 0.8rem 2rem;
  }
}

/* Tablets & Small Laptops */
@media (max-width: 768px) {
  .wdv-process__heading {
    font-size: 2.2rem;
  }

  .wdv-process__intro {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }

  .wdv-process__step {
    padding: 1.5rem;
  }

  .wdv-process__num {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 1.3rem;
  }

  .wdv-process__step h3 {
    font-size: 1.2rem;
  }

  .wdv-process__step p {
    font-size: 0.95rem;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  .wdv-services {
    margin: 3rem auto;
    padding: 0 1rem;
  }

  .wdv-services__heading {
    font-size: 2rem;
  }

  .wdv-services__intro {
    font-size: 0.95rem;
  }

  .wdv-service__title {
    font-size: 1.5rem;
  }

  .wdv-service__desc {
    font-size: 0.9rem;
  }

  .wdv-service__btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.8rem;
  }

  .wdv-process__heading {
    font-size: 2rem;
  }

  .wdv-process__intro {
    font-size: 0.95rem;
  }

  .wdv-process__step h3 {
    font-size: 1.1rem;
  }

  .wdv-process__step p {
    font-size: 0.9rem;
  }
}

/* ===== DIGITAL MARKETING MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .dm-hero {
    height: 45vh;
    padding: 0 1.5rem;
  }

  .dm-hero h1 {
    font-size: 1.8rem;
  }

  .dm-hero p {
    font-size: 0.95rem;
  }

  .dm-btn-hero {
    padding: 0.9rem 1.8rem;
  }

  .dm-title {
    font-size: 1.8rem;
  }

  .dm-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 768px) {
  .dm-hero {
    height: 50vh;
    padding: 0 1rem;
  }

  .dm-hero h1 {
    font-size: 1.6rem;
  }

  .dm-hero p {
    font-size: 0.9rem;
  }

  .dm-btn-hero {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .dm-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .dm-card {
    padding: 1.5rem;
  }

  .dm-card h3 {
    font-size: 1.1rem;
  }

  .dm-card p {
    font-size: 0.85rem;
  }

  .dm-btn-service {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
  }

  .dm-process {
    padding: 3rem 1rem;
  }

  .dm-process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .dm-step {
    padding: 1.5rem;
  }

  .dm-step-number {
    font-size: 1.2rem;
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}

@media (max-width: 480px) {
  .dm-hero {
    height: 55vh;
  }

  .dm-hero h1 {
    font-size: 1.4rem;
  }

  .dm-hero p {
    font-size: 0.85rem;
  }

  .dm-btn-hero {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }

  .dm-title {
    font-size: 1.6rem;
  }

  .dm-subtitle {
    font-size: 0.85rem;
  }

  .dm-card h3 {
    font-size: 1rem;
  }

  .dm-card p {
    font-size: 0.8rem;
  }

  .dm-btn-service {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }

  .dm-step-number {
    font-size: 1rem;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}

/* ================= MOBILE RESPONSIVE FOR FREELANCING PACKAGES ================= */

@media (max-width: 1024px) {
  .freelance-section,
  .freelance-process {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .freelance-header h2,
  .process-header h2 {
    font-size: 1.8rem;
  }

  .freelance-header p,
  .process-header p {
    font-size: 1rem;
  }

  .freelance-card {
    padding: 1.8rem;
  }
}

@media (max-width: 480px) {
  .freelance-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .freelance-card {
    padding: 1.5rem;
  }

  .freelance-card h3 {
    font-size: 1.3rem;
  }

  .freelance-card .price {
    font-size: 1.4rem;
  }

  .freelance-card ul li {
    font-size: 0.9rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-step h4 {
    font-size: 1.2rem;
  }
}

/* ================================
  CONSULTATION RESPONSIVE DESIGN
   ================================ */
@media (max-width: 768px) {
  .consult-header h2 {
    font-size: 2rem;
  }
  .consult-card {
    text-align: center;
  }
  .consult-card ul {
    text-align: left;
    display: inline-block;
  }
}

/* ================================
   SUBSCRIPTIONS RESPONSIVE DESIGN
   ================================ */
@media (max-width: 768px) {
  .subs-header h2 {
    font-size: 2rem;
  }
  .subs-card {
    text-align: center;
  }
  .subs-card ul {
    text-align: left;
    display: inline-block;
  }
}

/* ================================
   ABOUT SECTION RESPONSIVE DESIGN
   ================================ */
@media (max-width: 768px) {
  .custom-btn {
    display: block;
    margin: 1.5rem auto; /* ensures it stays centered */
    width: 9rem; /* slightly wider for touch devices */
  }
}

@media (max-width: 991px) {
  .services-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* push left */
    gap: 2rem;
    padding-left: 1.5rem; /* adjust left spacing */
  }

  .service-item {
    width: 100%;
    max-width: 600px;
    text-align: left; /* keep text aligned left for balance */
  }

  .service-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .service-item h3 {
    font-size: 1.5rem;
    margin-top: 1rem;
  }

  .service-item p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .row,
  .second-about-row {
    flex-direction: column;
    gap: 2rem;
  }

  .single-about-txt h3,
  .single-about-txt2 h3 {
    font-size: 1.5rem;
    text-align: center;
  }

  .single-about-txt p,
  .single-about-txt2 p {
    text-align: center;
    font-size: 1rem;
  }

  .single-about-img,
  .single-about-img2 {
    order: -1;
    max-width: 90%;
    margin: 0 auto;
  }

  .banner-content h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .about {
    padding: 50px 15px;
  }

  .services-header h2 {
    font-size: 2rem;
    text-align: center;
  }

  .service-item {
    padding: 20px;
  }

  .service-item h3 {
    font-size: 1.3rem;
  }

  .service-item p {
    font-size: 0.95rem;
  }

  .banner-overlay {
    padding: 80px 15px;
  }

  .banner-content h1 {
    font-size: 1.5rem;
  }

  .custom-btn,
  .btn.btn-color-4,
  .btn.btn-banner {
    width: 7rem;
    padding: 0.8rem;
    font-size: 14px;
  }

  .company-logo img {
    max-height: 70px;
  }
}

/* ===== CONTACT ME RESPONSIVE ===== */

/* Extra Small Phones (≤360px) */
@media (max-width: 360px) {
  .hamilton-contact {
    padding: 3.5rem 1rem;
  }
  .contact-heading {
    font-size: 1.6rem;
  }
  .contact-social {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

/* Small–Medium Phones (361–600px) */
@media (min-width: 361px) and (max-width: 600px) {
  .contact-heading {
    font-size: 1.9rem;
  }
  .contact-subtext {
    font-size: 1rem;
  }
}

/* Tablets (601–900px) */
@media (min-width: 601px) and (max-width: 900px) {
  .contact-heading {
    font-size: 2.2rem;
  }
  .contact-right {
    padding: 2.2rem;
  }
}

/* Larger Screens (≥901px) */
@media (min-width: 901px) {
  .contact-container {
    max-width: 1000px;
  }
  .contact-heading {
    font-size: 2.6rem;
  }
  .contact-right {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .contact-form {
    grid-template-columns: 1fr;
  }
  textarea,
  .submit-btn {
    grid-column: 1;
  }
}

/* ======================
        SHOP RESPONSIVE
      ====================== */

@media (max-width: 768px) {
  .shop-hero-content h1 {
    font-size: 2rem;
  }

  .shop-hero-content p {
    font-size: 1rem;
  }

  .shop-item img {
    height: 200px;
  }
}

/* PHOTOGRAPHY */

/* Product Responsive fixes */
@media (max-width: 768px) {
  .showcase-gallery-zigzag {
    gap: 1rem;
  }

  .showcase-item:nth-child(odd),
  .showcase-item:nth-child(even) {
    margin: 0;
  }

  .showcase-title {
    font-size: 2rem;
  }
}

/*  Event Responsive */
@media (max-width: 768px) {
  .event-item,
  .event-item.reverse {
    justify-content: center;
  }
  .event-item img {
    width: 90%;
    height: 220px;
  }
}

/* Print Packages Responsive Adjustments */
@media (max-width: 768px) {
  .service-box {
    text-align: center;
  }

  .service-box ul {
    text-align: left;
    display: inline-block;
  }

  .custom-btn {
    width: 10rem;
    font-size: 16px;
    margin: 1.5rem auto 0 auto;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    padding: 0 1rem;
  }
}

/* Product Packaging Design Responsive Design */
@media (max-width: 768px) {
  .packaging-section {
    padding: 3rem 1rem;
  }

  .packaging-header h2 {
    font-size: 1.6rem;
  }

  .packaging-card {
    text-align: center;
  }

  .packaging-card ul li {
    text-align: left;
  }

  .packaging-btn {
    display: block;
    margin: 0 auto;
  }
}

/* ================================
   WEB PACKAGES RESPONSIVE DESIGN
   ================================ */
@media (max-width: 991px) {
  .webdev-hero__content h1 {
    font-size: 2.2rem;
  }

  .packages-grid {
    flex-direction: column;
    align-items: center;
  }

  .package-card {
    width: 100%;
    max-width: 420px;
  }

  .webdev-booking h2 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .webdev-hero {
    padding: 80px 15px;
  }

  .webdev-hero__content h1 {
    font-size: 1.8rem;
  }

  .webdev-hero__content p {
    font-size: 1rem;
  }

  .hero-btn {
    padding: 0.8rem 2rem;
    font-size: 14px;
  }

  .package-card {
    padding: 25px;
  }

  .package-card h3 {
    font-size: 1.4rem;
  }

  .webdev-booking {
    padding: 60px 15px;
  }

  .booking-step {
    padding: 20px;
  }
}

/* ================================
   Apparel RESPONSIVE DESIGN
   ================================ */
@media (max-width: 768px) {
  .apparel-title {
    font-size: 2rem;
  }

  .apparel-card {
    width: 100%;
    max-width: 400px;
  }

  .apparel-intro {
    font-size: 1rem;
  }

  .apparel-steps {
    grid-template-columns: 1fr;
  }
}

/* SEO Responsive */
@media (max-width: 768px) {
  .hamilton-seo-hero-content h1 {
    font-size: 2.2rem;
  }

  .hamilton-seo-grid {
    flex-direction: column;
    align-items: center;
  }

  .hamilton-seo-card {
    width: 90%;
  }
}

/* GOOGLE Responsive */

@media (max-width: 768px) {
  .google-marketing-intro h2 {
    font-size: 2rem;
  }
  .google-service-card {
    text-align: center;
  }
  .google-service-card ul {
    text-align: left;
    display: inline-block;
  }
}

/* Ecomm Responsive */
@media (max-width: 768px) {
  .ecom-header h2 {
    font-size: 2rem;
  }
  .ecom-card {
    text-align: center;
  }
  .ecom-card ul {
    text-align: left;
    display: inline-block;
  }
}

/* Content Marketing Responsive Styling */
@media (max-width: 768px) {
  .content-header h2 {
    font-size: 2rem;
  }

  .content-card {
    text-align: center;
  }

  .content-card ul {
    text-align: left;
    display: inline-block;
  }
}
