/* Root guard: never allow horizontal page scroll on the homepage (carousels lay
   their slides out in a wide off-screen track that must stay clipped). */
html, body { overflow-x: hidden; max-width: 100%; }

/**
 * PROMO CAROUSEL SECTION
 **/

.promoCarousel {
  position: relative;
  overflow: hidden;
}

.promoCarouselTrack {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.promoSlide {
  min-width: 100%;
  padding: 36px 24px 60px;
  box-sizing: border-box;
}

.promoSlide--blue { background: linear-gradient(135deg, #0d47a1 0%, #1565c0 50%, #1976d2 100%); }
.promoSlide--dark { background: linear-gradient(135deg, #0a1628 0%, #0d2347 50%, #122d5a 100%); }
.promoSlide--teal { background: linear-gradient(135deg, #006064 0%, #00838f 50%, #0097a7 100%); }
.promoSlide--green { background: linear-gradient(135deg, #14532d 0%, #1b6b3a 50%, #22874a 100%); }

.promoArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  padding: 0;
}
.promoArrow:hover { background: rgba(255,255,255,0.28); }
.promoArrowPrev { left: 14px; }
.promoArrowNext { right: 14px; }

.promoCarouselDots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.promoDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.promoDot.active {
  background: rgba(255,255,255,0.95);
  transform: scale(1.35);
}

.promoSpotlightInner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.promoSpotlightLeft { flex: 1; }

.promoSpotlightBadge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.promoSpotlightTitle {
  font-size: 30px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 12px;
}

.promoSpotlightDesc {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 520px;
}

.promoSpotlightCTAs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.promoCtaPrimary {
  display: inline-block;
  background: #ffffff;
  color: #0d47a1;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.promoCtaPrimary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.promoCtaSecondary {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.6);
  text-decoration: none;
  transition: border-color 0.22s ease, background 0.22s ease;
}
.promoCtaSecondary:hover {
  border-color: #ffffff;
  background: rgba(255,255,255,0.1);
}

.promoSpotlightRight {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.promoShieldIcon { opacity: 0.85; }

.promoSpotlightSavings {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.promoSavingsLabel {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.promoSavingsPrice {
  font-size: 56px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 4px;
}

.promoSavingsPriceSm {
  font-size: 36px;
  line-height: 1.15;
}

.promoSavingsCompare {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

/* Shop stats — slide 3 */
.promoShopStats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.promoStatItem {
  display: flex;
  align-items: center;
  gap: 12px;
}
.promoStatIcon {
  font-size: 24px;
  width: 34px;
  text-align: center;
  flex-shrink: 0;
}
.promoStatLabel {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .promoArrow { display: none; }
  .promoSpotlightInner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .promoSpotlightRight { align-self: flex-start; }
  .promoSpotlightTitle { font-size: 24px; }
  .promoSavingsPrice { font-size: 44px; }
}

@media (max-width: 480px) {
  .promoSlide { padding: 28px 20px 56px; }
  .promoSpotlightTitle { font-size: 22px; }
  .promoCtaPrimary,
  .promoCtaSecondary { font-size: 13px; padding: 9px 20px; }
}

/**
 * FEATURED SECTION
 **/

.featuredContainer {
  display: flex;
  flex-direction: column;
  padding-top: 60px;
}

.scrollRow {
  width: 1600px;
  margin: auto;
  text-align: right;
  margin-bottom: 100px;
}

.scrollText {
  font-size: 26px;
}

.scrollText img {
  height: 15px;
  width: auto;
  margin: auto;
  transform: translateY(5px);
}

.featuredTitleContainer {
  width: 1600px;
  margin: auto;
  text-align: center;
  margin-bottom: 40px;
}

.featuredTitle {
  font-size: 40px;
}

.carouselInner {
  height: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0,0,0,0.3);
}

.carouselContent {
  background-position: center;
  background-repeat: none;
  background-size: cover;
}

.carouselInnerContent {
  width: 800px;
}

#carouselOne {
  background-image: url(/images/deals.jpg);
}

#carouselTwo {
  background-image: url(/images/about1.jpg);
}

#carouselThree {
  background-image: url(/images/about2.jpg);
}

#carouselFour {
  background-image: url(/images/about3.jpg);
}

.carouselTitle {
  font-size: 46px;
  color: #ffffff;
  text-align: center;
}

.carouselBody {
  color: #ffffff;
  font-size: 24px;
  text-align: center;
}

.carouselControlRow {
  width: 1600px;
  height: 80px;
  margin: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center; /* controls center vs right align - center/flex-end */
}

.carouselControls {
  width: 400px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.carouselButton {
  cursor: pointer;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border-width: 1px;
  border-color: #000000;
  border-style: solid;
  background-color: #ffffff;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.carouselButton.active {
  background-color: #000000;
}

/**
 * SERVICE SECTION
 **/

.serviceContainer {
  padding: 60px 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.serviceTitleContainer {
  margin: 0 auto;
  max-width: 1100px;
  width: 100%;
  padding: 0 24px;
  box-sizing: border-box;
}

.serviceTitle {
  text-align: center;
  font-size: 40px;
}

.serviceGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  width: 100%;
  margin: 36px auto 20px;
  padding: 0 24px;
  box-sizing: border-box;
}

/* Photo-style device cards */
.serviceCard {
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.serviceCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.5);
}

.serviceCard--iphone  { background: linear-gradient(145deg, #0c1c3a 0%, #1c3a6a 100%); }
.serviceCard--android { background: linear-gradient(145deg, #0c2630 0%, #155f6b 100%); }
.serviceCard--tablet  { background: linear-gradient(145deg, #141a33 0%, #2c2f72 100%); }
.serviceCard--laptop  { background: linear-gradient(145deg, #0a1c30 0%, #0c4a6c 100%); }
.serviceCard--desktop { background: linear-gradient(145deg, #0e1430 0%, #1e2a5a 100%); }
.serviceCard--console { background: linear-gradient(145deg, #101d33 0%, #234e74 100%); }

.serviceCardDevice {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  transition: transform 0.35s ease;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.45));
}

.serviceCard:hover .serviceCardDevice {
  transform: translate(-50%, -60%) scale(1.07);
}

.serviceCardFooter {
  position: relative;
  z-index: 2;
  padding: 30px 18px 18px;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
}

.serviceCardTitle {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 3px;
  font-family: sofia-pro, sans-serif;
}

.serviceCardDesc {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
  margin: 0 0 10px;
}

.serviceCardBtn {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.32);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 5px 13px;
  border-radius: 20px;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.serviceCard:hover .serviceCardBtn {
  background: rgba(255,255,255,0.26);
  border-color: rgba(255,255,255,0.55);
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .serviceGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .serviceCard { height: 210px; }
}

@media (max-width: 560px) {
  .serviceGrid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .serviceCard { height: 180px; }
  .serviceTitle { font-size: 32px; }
  .serviceCardTitle { font-size: 14px; }
  .serviceCardDesc { font-size: 11px; }
}

.devicesLinkContainer {
  margin: auto;
  width: 1600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.devicesLink {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: #000000;
  background-color: #ffffff;
  border-width: 1px;
  border-color: #000000;
  border-style: solid;
  padding: 3px 15px;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.devicesLink:hover {
  background-color: #000000;
  color: #ffffff;
}

/**
 * QUOTE SECTION
 **/

.quoteContainer {
  width: 1600px;
  margin: auto;
  padding: 50px 0px;
}

.quote {
  text-align: center;
  font-family: sofia-pro, sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 30px;
}

/**
 * AWARDS SECTION
 **/

.awardsContainer {
  padding: 50px 24px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.awardImage {
  height: auto;
  width: 200px;
  margin: 15px;
}

#awardSmall {
  transform: scale(1.2);
}

/**
 * TESTIMONIAL SECTION
 **/

.testimonialContainer {
  background-color: #fafafa;
  padding: 50px 0 20px;
  overflow-x: hidden;
}

.testimonialTitleContainer {
  width: 1600px;
  margin: auto;
  text-align: center;
  margin-bottom: 40px;
}

.testimonialTitle {
  font-size: 40px;
}

.testimonialsRow {
  margin: 120px auto 0px auto;
  width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial {
  height: 400px;
  width: 350px;
  background-color: #ffffff;
  border-width: 1px;
  border-color: #cccccc;
  border-style: solid;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonialBody {
  font-size: 20px;
  padding: 50px 50px 50px 50px;
  text-align: center;
  line-height: 35px;
}

/**
 * ABOUT SECTION
 **/

.aboutContainer {
  padding: 50px 0px;
}

.aboutTitleContainer {
  width: 1600px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.aboutTitle {
  margin: auto;
  font-size: 40px;
}

.aboutSubTitle {
  margin: auto;
  font-size: 26px;
}

.aboutContent {
  padding: 40px 0px;
  width: 1400px;
  margin: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.aboutBody {
  width: 40%;
}

.aboutImagesContainer {
  width: 35%;
  height: 630px;
  position: relative;
}

.aboutText {
  font-size: 18px;
  margin: 12px 0px;
  line-height: 26px;
  text-indent: 30px;
  text-align: justify;
}

.aboutImage {
  background-position: center;
  background-repeat: none;
  background-size: cover;
  position: absolute;
  border-width: 5px;
  border-color: #ffffff;
  border-style: solid;
}

#about1 {
  width: 430px;
  height: auto;
  right: 0px;
}

#about2 {
  width: 300px;
  height: auto;
  top: 130px;
  right: 320px;
}

#about3 {
  width: 430px;
  height: auto;
  top: 320px;
  right: 100px;
}

@media only screen and (max-width : 1650px) {
  .scrollRow {
    width: 1200px;
  }

  .featuredTitleContainer {
    width: 1200px;
  }

  .carouselControlRow {
    width: 1200px;
  }

  .devicesLinkContainer {
    width: 1200px;
  }

  .quoteContainer {
    width: 1200px;
  }


  .testimonialTitleContainer {
    width: 1200px;
  }
  
  .testimonialsRow {
    width: 1200px;
  }

  .aboutTitleContainer {
    width: 1200px;
  }

  .aboutContent {
    width: 1200px;
  }

  .contactContent {
    width: 1200px;
  }
}


@media only screen and (max-width : 1250px) {
  .scrollRow {
    width: 900px;
    margin-top: 30px;
    margin-bottom: 70px;
  }
  
  .scrollText {
    font-size: 20px;
  }

  .featuredTitleContainer {
    width: 900px;
  }

  .carouselControlRow {
    width: 900px;
  }

  .carouselInner {
    height: 500px;
  }
  
  .carouselInnerContent {
    width: 600px;
  }

  .carouselButton {
    height: 25px;
    width: 25px;
  }


  .devicesLinkContainer {
    width: 900px;
  }

  .quoteContainer {
    width: 900px;
  }


  .testimonialTitleContainer {
    width: 900px;
  }
  
  .testimonialsRow {
    width: 900px;
  }

  .testimonial {
    height: 450px;
    width: 290px;
  }

  .aboutTitleContainer {
    width: 900px;
  }

  .aboutContent {
    width: 900px;
  }

  #about1 {
    width: 390px;
    height: auto;
    right: 30px;
    top: 40px;
  }
  
  #about2 {
    width: 260px;
    height: auto;
    top: 200px;
    right: 0px;
  }
  
  #about3 {
    width: 390px;
    height: auto;
    top: 340px;
    right: 50px;
  }

  .contactContent {
    width: 900px;
  }
}

@media only screen and (max-width : 992px) {
  .scrollRow {
    width: 40%;
    margin-left: auto;
    margin-right: 30px;
    margin-top: 30px;
    margin-bottom: 70px;
  }
  
  .scrollText {
    font-size: 16px;
  }

  .featuredTitleContainer {
    width: 300px;
  }

  .featuredTitle {
    font-size: 36px;
  }

  .carouselControlRow {
    width: 230px;
  }

  .carouselInner {
    height: 300px;
  }

  .carouselInnerContent {
    width: 290px;
  }

  .carouselTitle {
    font-size: 36px;
  }

  .carouselBody {
    font-size: 18px;
    line-height: 20px;
  }

  .devicesLinkContainer {
    width: 300px;
  }

  .devicesLink {
    font-size: 18px;
  }

  .quoteContainer {
    width: 300px;
  }

  .quote {
    font-size: 20px;
  }

  .quoteContainer {
    width: 300px;
  }


  .awardImage {
    width: 180px;
    margin: 20px 0px;
  }

  .testimonialTitleContainer {
    width: 300px;
  }

  .testimonialTitle {
    font-size: 26px;
  }
  
  .testimonialsRow {
    flex-direction: column;
    width: 300px;
  }

  .testimonial {
    margin: 60px 0px;
    height: 390px;
  }

  .testimonialBody {
    font-size: 18px;
    line-height: 26px;
  }

  .aboutContent {
    padding: 20px 0px;
    width: 300px;
    flex-direction: column-reverse;
  }

  .aboutTitleContainer {
    width: 300px;
  }

  .aboutTitle {
    font-size: 36px;
  }

  .aboutSubTitle {
    font-size: 18px;
    text-align: center;
  }

  .aboutText {
    font-size: 18px;
    line-height: 26px;
  }
  
  .aboutBody {
    width: 100%;
  }
  
  .aboutImagesContainer {
    width: 100%;
    height: 500px;
  }

  #about1 {
    width: 260px;
    height: auto;
    right: 0px;
  }
  
  #about2 {
    width: 240px;
    height: auto;
    top: 150px;
    right: 60px;
  }
  
  #about3 {
    width: 260px;
    height: auto;
    top: 280px;
    right: 20px;
  }

  .contactContent {
    width: 300px;
    flex-direction: column;
  }

  .formTitle {
    font-size: 30px;
  }

  .contactInfoTitle {
    font-size: 30px;
  }

  #name, #email, #message {
    width: 274px;
  }

  #formSubmit {
    width: 100%;
  }
}