/* =========================
BASE RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #f6f6f6;
    color: #333;
    overflow-x: hidden;
}


/* =========================
   GLOBAL RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f4f4;
}

/* OVERLAY */
.top-mark {
    position: absolute;
    inset: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.2)
    );
}



/* =========================
   MAIN BAR (LOGO + SEARCH + FILTERS)
========================= */
.main-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f5b301;
    padding: 10px 20px;
    position: relative;
}

/* LOGO */
.logo {
    font-size: 20px;
    font-weight: bold;
    color: black;
}

/* CENTER CONTROLS */
.center-controls {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

/* SEARCH */
.search {
    width: 60%;
    padding: 8px;
    border-radius: 5px;
    border: none;
    outline: none;
}



/* MENU WRAPPER */
.menu-wrapper {
    position: relative;
    display: inline-block;
    border: #333 solid 1.2px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    padding-left: 2.5px;
    background-color: #f07605;
}

.menu-icon {
    font-size: 36px;
    cursor: pointer;
    user-select: none;
    padding: 5px;
    color: #333;
    transition: 0.2s;
}

.menu-icon:hover {
    color: #ffffff;
}

/* DROPDOWN */
.menu-dropdown {
    position: absolute;
    right: 0;
    top: 40px;
    background: white;
    width: 170px;
    display: none;
    flex-direction: column;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    overflow: hidden;
    z-index: 999;
}

.menu-dropdown a {
    padding: 11px 16px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s;
    border-bottom: 1px solid #f5f5f5;
}

.menu-dropdown a:last-child {
    border-bottom: none;
}

.menu-dropdown a:hover {
    background: #f5b301;
    color: #000;
    padding-left: 20px;
}

.menu-wrapper:hover .menu-dropdown {
    display: flex;
}


/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 768px) {
    .search {
        width: 90%;
    }

    

    .main-bar {
        flex-direction: column;
        gap: 10px;
    }
}



.shop-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgb(252, 233, 192);

    padding: 12px 20px;
    border-bottom: 1px solid #ddd;
    gap: 10px;
}

/* LEFT BRAND */
.shop-brand {
    font-size: 1.7rem;
  
    font-weight: bold;
    color: #222;
}

.shop-center{color: orange;

font-family: arial-bold;
font-size: 90px;
padding-top: 20%;}


/* CENTER SEARCH */
.shop-search {
    flex: 1;
    display: flex;
    justify-content: center;
}

.shop-search input {
    width: 60%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
}

/* RIGHT ICONS */
.shop-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* FAVORITES */
.fav-icon {
    font-size: 20px;
    cursor: pointer;
    transition: 0.2s;
}

.fav-icon:hover {
    transform: scale(1.2);
}



/* =========================
   MOBILE SHOP HEADER
========================= */
@media (max-width: 768px) {

    .shop-header {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
        padding: 10px 15px;
    }

    /* Brand smaller */
    .shop-brand {
        font-size: 1.1rem;
        flex: 1;
    }

    /* Shop center text smaller */
    .shop-center {
        font-size: 24px;
        padding-top: 0;
    }

    /* Keep menu on far right */
    .shop-actions {
        margin-left: auto;
    }

    .menu-icon {
        font-size: 26px;
    }

    /* Search bar moves below */
    .shop-search {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .shop-search input {
        width: 100%;
        max-width: none;
    }
}

/* =========================
   MENU ICON
========================= */
.menu-wrapper {
    position: relative;
    display: inline-block;
}


.menu-icon {
    font-size: 30px;
    cursor: pointer;
    user-select: none;
    padding: 5px;
}

/* DROPDOWN MENU */
.menu-dropdown {
    position: absolute;
    right: 0;
    top: 35px;
    background: white;
    width: 150px;
    display: none;
    flex-direction: column;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    overflow: hidden;
    z-index: 999;
}

.menu-dropdown a {
    padding: 10px;
    text-decoration: none;
    color: black;
    font-size: 14px;
    transition: 0.2s;
}

.menu-dropdown a:hover {
    background: #f5b301;
}

/* SHOW ON HOVER */
.menu-wrapper:hover .menu-dropdown {
    display: flex;
}





/* =========================
   ADVERT SLIDER (FULL WIDTH OVERLAY STYLE)
========================= */
.ad-section {
   
    width: 100%;
    position:relative;
    overflow: hidden;
}

/* VIEW WINDOW FULL WIDTH */
.ad-window {
    width: 100%;
    background-color: #dc5406;
    overflow: hidden;
}

/* TRACK */
.ad-track {
    display: flex;
    transition: transform 0.6s ease;
}

/* EACH SLIDE FULL WIDTH */
.ad-slide {
    min-width: 100%;
    height: auto;
}

.ad-slide img {
    width: 100%;
    height: 300px;
    object-fit:contain;
    pointer-events: none;
}

/* =========================
   OVERLAY BUTTONS (‹ ›)
========================= */
.ad-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 28px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.ad-btn:hover {
    background: rgba(245, 179, 1, 0.9);
    color: black;
}

/* LEFT BUTTON */
.ad-btn.left {
    left: 10px;
}

/* RIGHT BUTTON */
.ad-btn.right {
    right: 10px;
}

/* =========================
   TABLET VIEW
========================= */
@media (max-width: 1024px) {

    .ad-slide img {
        height: 250px;
        width: 100%;
        object-fit: contain;
    }

    .ad-btn {
        font-size: 24px;
        padding: 8px 12px;
    }
}

/* =========================
   MOBILE VIEW
========================= */
@media (max-width: 768px) {

    .ad-section {
        width: 100%;
        overflow: hidden;
    }

    .ad-window {
        width: 100%;
    }

    .ad-slide {
        min-width: 100%;
    }

    .ad-slide img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }

    .ad-btn {
        font-size: 18px;
        padding: 6px 10px;
    }

    .ad-btn.left {
        left: 5px;
    }

    .ad-btn.right {
        right: 5px;
    }
}

/* =========================
   SMALL PHONES
========================= */
@media (max-width: 480px) {

    .ad-slide img {
        width: 100%;
        height: auto;
        min-height: 180px;
        object-fit: contain;
    }

    .ad-btn {
        font-size: 16px;
        padding: 5px 8px;
    }
}



/* =========================
PRODUCT GRID
========================= */
/* =========================
PRODUCT GRID
========================= */

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    padding:30px;
    max-width:1400px;
    margin:0 auto;
}

/* =========================
PRODUCT CARD
========================= */

.product-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);

    display:flex;
    flex-direction:column;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* =========================
PRODUCT IMAGE
========================= */

.product-card img{
    width:100%;
    height:200px;

    object-fit:contain;

    background:#fff;
    padding:20px;

    display:block;
}

/* =========================
PRODUCT TITLE
========================= */

.product-card h3{
    font-size:18px;
    font-weight:600;

    color:#222;

    text-align:center;

    margin:15px 15px 10px;
}

/* =========================
PRODUCT DESCRIPTION
========================= */

.product-card p{
    font-size:15px;
    line-height:1.6;

    color:#666;

    text-align:center;

    margin:0 15px 15px;
}

/* =========================
VIEW BUTTON
========================= */

.view-btn{
    display:block;

    width:calc(100% - 30px);

    margin:auto 15px 15px;

    padding:12px 15px;

    border:none;
    border-radius:6px;

    background:#f5b301;
    color:#000;

    font-size:15px;
    font-weight:600;

    cursor:pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.view-btn:hover{
    background:#000;
    color:#fff;
    transform:translateY(-2px);
}

/* =========================
TABLET
========================= */

@media(max-width:992px){

    .product-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
        padding:20px;
    }

    .product-card img{
        height:280px;
    }
}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

    .product-grid{
        grid-template-columns:1fr;
        gap:20px;
        padding:15px;
    }

    .product-card img{
        height:250px;
        padding:15px;
    }

    .product-card h3{
        font-size:17px;
    }

    .product-card p{
        font-size:14px;
    }
}/* =========================
PRODUCT DETAILS PAGE
========================= */

#product-details{
    max-width:1400px;
    margin:40px auto;
    padding:30px;

    background:#fff;

    border-radius:12px;

    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

/* =========================
BACK BUTTON
========================= */

#back-btn{
    padding:12px 18px;

    border:none;
    border-radius:6px;

    background:#000;
    color:#fff;

    cursor:pointer;

    margin-bottom:30px;

    transition:0.3s ease;
}

#back-btn:hover{
    background:#333;
}

/* =========================
LAYOUT
========================= */

.product-details-container{
    display:grid;
    grid-template-columns:550px 1fr;
    gap:60px;
    align-items:start;
}

/* =========================
IMAGE SECTION
========================= */

.product-image-box{
    width:100%;
}

.product-image-box img{
    width:100%;
    height:550px;

    object-fit:contain;

    background:#f8f8f8;

    border-radius:12px;

    padding:20px;

    cursor:zoom-in;

    transition:transform 0.3s ease;
}

.product-image-box:hover img{
    transform:scale(1.05);
}

/* =========================
INFO SECTION
========================= */

.product-info-box{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.product-info-box h2{
    font-size:2.2rem;
    line-height:1.3;
    color:#222;
}

.product-info-box h3{
    font-size:2rem;
    color:#f5b301;
}

/* =========================
STATUS
========================= */

.sold-by,
.stock-status{
    font-size:17px;
    color:#666;
}

.company{
    color:#dc5406;
}

.tick{
    color:green;
    font-weight:bold;
}

/* =========================
DESCRIPTION
========================= */

#detail-description{
    font-size:16px;
    line-height:1.8;
    color:#555;
}



/* =========================
SHARE SECTION
========================= */

.share-section {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.share-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* icon container */
.share-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* base icon style */
.share-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f4f4f4;
    color: #333;

    text-decoration: none;
    font-size: 18px;

    transition: 0.3s ease;
}

/* hover lift */
.share-icon:hover {
    transform: translateY(-3px);
}

/* =========================
BRAND COLORS
========================= */

.share-icon.whatsapp:hover {
    background: #25D366;
    color: #fff;
}

.share-icon.facebook:hover {
    background: #1877F2;
    color: #fff;
}

.share-icon.twitter:hover {
    background: #000;
    color: #fff;
}

.share-icon.linkedin:hover {
    background: #0A66C2;
    color: #fff;
}

.share-icon.copy:hover {
    background: #666;
    color: #fff;
}

/* =========================
TABLET VIEW
========================= */
@media (max-width: 992px) {

    .share-text {
        font-size: 15px;
    }

    .share-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

/* =========================
MOBILE VIEW
========================= */
@media (max-width: 600px) {

    .share-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .share-icons {
        gap: 10px;
    }

    .share-icon {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
}



/* =========================
INQUIRY BUTTON
========================= */

#inquiry-btn{
    width:220px;

    padding:15px 20px;

    border:none;
    border-radius:8px;

    background:#f5b301;

    font-size:16px;
    font-weight:600;

    cursor:pointer;

    transition:0.3s ease;
}

#inquiry-btn:hover{
    background:#000;
    color:#fff;
}



/* =========================
RESPONSIVE DESIGN
========================= */

/* TABLET (iPad, small laptops) */
@media (max-width: 1024px) {

    #product-details{
        padding:20px;
        margin:25px auto;
    }

    .product-details-container{
        grid-template-columns: 1fr;
        gap:30px;
    }

    .product-image-box img,
    .zoom-container{
        height:450px;
    }

    .product-info-box h2{
        font-size:1.rem;
    }

    .product-info-box h3{
        font-size:1.6rem;
    }

    #inquiry-btn{
        width:100%;
        max-width:280px;
    }
}

/* MOBILE (phones) */
@media (max-width: 768px) {

    #product-details{
        padding:15px;
        margin:15px auto;
        border-radius:0;
        box-shadow:none;
    }

    .product-details-container{
        grid-template-columns: 1fr;
        gap:20px;
    }

    .zoom-container,
    .product-image-box img{
        height:320px;
        padding:10px;
    }

    .product-info-box h2{
        font-size: 1em;
    }

    .product-info-box h3{
        font-size:1.3rem;
    }

    .sold-by,
    .stock-status{
        font-size:14px;
    }

    #detail-description{
        font-size:14px;
    }

    #inquiry-btn{
        width:100%;
        padding:14px;
        font-size:15px;
    }

    #back-btn{
        width:100%;
        text-align:center;
    }
}



/* =========================
RELATED PRODUCTS
========================= */

/* =========================
RELATED PRODUCTS CAROUSEL
========================= */

#related-products {
    margin-top: 60px;
    background-color: #cbc9c2;
    width: 100%;
    padding: 30px 20px;
    overflow: hidden;
}

.related-grid {
    display: flex;
    gap: 20px;

    overflow-x: auto;
    scroll-behavior: smooth;

    padding-bottom: 10px;

    scroll-snap-type: x mandatory;
}

/* Hide scrollbar (clean pro look) */
.related-grid::-webkit-scrollbar {
    display: none;
}

.related-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Each product card inside carousel */
.related-grid .product-card {
    min-width: 220px;
    flex: 0 0 auto;

    scroll-snap-align: start;

    background: #fff;
    border-radius: 50px 50px 0 0;

    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);

    transition: transform 0.3s ease;
}

.related-grid .product-card:hover {
    transform: translateY(-5px);
}




/* =========================
TABLET VIEW
========================= */
@media (max-width: 1024px){

    .related-grid .product-card{
        min-width: 200px;
    }

    #related-products h2{
        font-size: 1.8rem;
    }
}

/* =========================
MOBILE VIEW
========================= */
@media (max-width: 768px){

    #related-products{
        margin-top: 40px;
        padding: 20px 15px;
    }

    #related-products h2{
        font-size: 1.rem;
        margin-bottom: 15px;
    }

    .related-grid{
        gap: 15px;
    }

    .related-grid .product-card{
        min-width: 160px;
        padding: 12px;
    }

    .related-grid .product-card img{
        height: 140px;
        object-fit: contain;
    }
}

/* =========================
SMALL PHONES
========================= */
@media (max-width: 480px){

    .related-grid .product-card{
        min-width: 140px;
    }

    .related-grid .product-card img{
        height: 120px;
    }
}




/* =========================
HORIZON BEE OFFERS
========================= */

.offers-section {
    margin-top: 20px;
    padding: 20px 0;
    
}

.offers-title {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 35px;
    font-family: Arial, Helvetica, sans-serif;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}





.offer-card {
    background: #ffffff;
    
    
    text-align: center;
    margin: auto;

    
}


.offer-icon {
    font-size: 2.7rem;
    margin-bottom: 15px;
}

.offer-card h3 {
    margin-bottom: 30px;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.offer-card p {
    color: #666;
    line-height: 1.6;
}




/* =========================
RESPONSIVE
========================= */

@media (max-width: 992px) {

    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {

    

    .offers-grid {
    display: flex;
    gap: 1px;

    overflow-x: auto;
    scroll-behavior: smooth;

    padding-bottom: 5px;

    scroll-snap-type: x mandatory;
}

    .offers-title {
        font-size: 1.6rem;
    }



    
.offer-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.offer-card h3 {
    margin-bottom: 30px;
    font-size: 14px;
    margin-bottom: 5px;
}

.offer-card p {
    color: #666;
    line-height: 1;
    font-size: 12px;
}



}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 768px) {

    .product-details-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-image-box img {
        height: 350px;
    }

    .related-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .product-info-box h2 {
        font-size: 1.7rem;
    }

    .product-info-box h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 600px) {

    .product-grid {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    #product-details {
        margin: 10px;
        padding: 15px;
    }

    .product-image-box img {
        height: 280px;
    }
}


/*FOOTER*/
/* =========================
   CONTACT SECTION
========================= */




.queen-contact {
    position: relative;
    min-height: 70vh;

    background: url("background1.jpg") center/cover no-repeat;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    padding: 80px 8%;
    color: white;
}

/*===================
THE BRINK
====================*/

.blink-dot {
    animation: blink 1s infinite;
    width: 20px;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }

    51%, 100% {
        opacity: 0;
    }
}


/* =========================
   OVERLAY
========================= */

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 1;
}

/* =========================
   LEFT CONTENT
========================= */

.content-containers {
    position: relative;
    z-index: 2;

    width: 40%;
    max-width: 500px;
}

/* MAIN TITLE */

.content-containers h2 {
    font-family: Arial, sans-serif;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

/* SUBTEXT */

.typing-text {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* BUTTON GROUP */

.btn-group {
    display: flex;
    gap: 20px;
}

/* CONTACT BUTTON */

.contact-btn {
    padding: 14px 30px;
    background: #dc5406;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: 0.3s;
}

.contact-btn:hover {
    transform: translateY(-3px);
}

/* TOP BUTTON */

.top-btn {
    padding: 14px 30px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
}

.top-btn:hover {
    background: white;
    color: #111;
}

/* =========================
   FOOTER COLUMNS
========================= */

.class-bottom {
    position: relative;
    z-index: 2;

    width: 55%;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 50px;
}

/* COLUMN */

.footer-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* HEADINGS */

.class-bottom .footer-block h4 {
    color: yellow;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

/* ADDRESS */

.class-bottom .footer-block p {
    color: white;
    font-size: 1rem;
    line-height: 1.9;
}

/* LIST RESET */

.class-bottom .footer-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* LIST ITEMS */

.class-bottom .footer-block ul li {
    margin-bottom: 12px;
}

/* LINKS */

.class-bottom .footer-block ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.class-bottom .footer-block ul li a:hover {
    color: yellow;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

    .queen-contact {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .content-containers {
        width: 100%;
        max-width: 100%;
    }

    .class-bottom {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-block {
        align-items: center;
    }
}

@media (max-width: 768px) {

    .content-containers h2 {
        font-size: 3rem;
    }

    .btn-group {
        justify-content: center;
        flex-wrap: wrap;
    }

    .class-bottom {
        grid-template-columns: 1fr;
    }
}

/* FORCE FULL VISIBILITY */

.class-bottom,
.class-bottom * {
    opacity: 1 !important;
    filter: none !important;
}



/* ACTIVE line */
.nav-links a.active {
    color: #ffffff;           /* keep text white and visible */
    position: relative;
    padding: 7px 11px;
    border-radius: 20px;
    background: transparent;  /* ← no background */
}

/* ANIMATED OUTLINE ONLY */
.nav-links a.active::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    border: 2px solid #f4c430;
    animation: cycleOutline 1.5s linear infinite;
}

@keyframes cycleOutline {
    0% {
        clip-path: inset(0 100% 0 0);        /* starts from left */
    }
    25% {
        clip-path: inset(0 0 0 0);           /* fully visible */
    }
    50% {
        clip-path: inset(0 0 0 0);           /* hold */
    }
    75% {
        clip-path: inset(0 0 0 100%);        /* disappears to right */
    }
    100% {
        clip-path: inset(0 100% 0 0);        /* resets */
    }
}

/* REMOVE OLD UNDERLINE ON ACTIVE */
.nav-links a.active::after {
    display: none;
}

/* =========================
TABLET VIEW
========================= */
@media (max-width: 1024px){

    .queen-contact{
        padding: 60px 5%;
        gap: 50px;

        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .content-containers{
        width: 100%;
        max-width: 700px;
    }

    .content-containers h2{
        font-size: 3.5rem;
        margin-bottom: 20px;
    }

    .typing-text{
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .btn-group{
        justify-content: center;
        flex-wrap: wrap;
    }

    .class-bottom{
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .footer-block{
        align-items: center;
    }

    .class-bottom .footer-block h4{
        font-size: 1.3rem;
    }

    .class-bottom .footer-block p,
    .class-bottom .footer-block ul li a{
        font-size: 0.95rem;
    }
}

/* =========================
MOBILE VIEW
========================= */
@media (max-width: 768px){

    .queen-contact{
        min-height: auto;
        padding: 50px 20px;
        gap: 40px;
    }

    .content-containers{
        width: 100%;
    }

    .content-containers h2{
        font-size: 2.4rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .typing-text{
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .btn-group{
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .contact-btn,
    .top-btn{
        width: 100%;
        max-width: 280px;
        margin: auto;
        text-align: center;
        padding: 13px 20px;
        font-size: 0.95rem;
    }

    .class-bottom{
        width: 100%;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-block{
        align-items: center;
        text-align: center;
    }

    .class-bottom .footer-block h4{
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .class-bottom .footer-block p{
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .class-bottom .footer-block ul li{
        margin-bottom: 8px;
    }

    .class-bottom .footer-block ul li a{
        font-size: 0.9rem;
    }
}

/* =========================
SMALL PHONES
========================= */
@media (max-width: 480px){

    .queen-contact{
        padding: 40px 15px;
    }

    .content-containers h2{
        font-size: 2rem;
    }

    .typing-text{
        font-size: 0.9rem;
    }

    .contact-btn,
    .top-btn{
        max-width: 240px;
        font-size: 0.9rem;
        padding: 12px 18px;
    }

    .class-bottom .footer-block h4{
        font-size: 1.05rem;
    }

    .class-bottom .footer-block p,
    .class-bottom .footer-block ul li a{
        font-size: 0.85rem;
    }
}