/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Safari-specific fixes */
*:focus {
  outline: none;
}

*:focus-visible {
  outline: 2px solid var(--lux-gold);
  outline-offset: 2px;
}

/* Remove Safari's default orange outline */
input, textarea, select, button {
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f5f4f2;
  color: #232323;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Luxury Color Palette */
:root {
  --lux-navy: #181c2b;
  --lux-charcoal: #232323;
  --lux-gold: #bfa76a;
  --lux-ivory: #f5f4f2;
  --lux-grey: #6c6c6c;
  --lux-white: #fff;
}

/* Navbar */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(24, 28, 43, 0.97);
  box-shadow: 0 2px 24px rgba(24, 28, 43, 0.08);
  z-index: 100;
  transition: background 0.3s;
  animation: fadeIn 1s ease;
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-family: 'Playfair Display', 'Inter', serif, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--lux-gold);
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(191, 167, 106, 0.08);
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo:hover {
  color: var(--lux-gold);
  transform: scale(1.05);
  text-shadow: 0 4px 16px rgba(191, 167, 106, 0.15);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--lux-ivory);
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  transition: color 0.2s;
}

.nav-links a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--lux-gold);
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: -4px;
}

.nav-links a:hover {
  color: var(--lux-gold);
}

.nav-links a:hover:after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(191, 167, 106, 0.1);
  border: 1px solid rgba(191, 167, 106, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-toggle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(191, 167, 106, 0.1), transparent);
  transition: left 0.5s ease;
}

.nav-toggle:hover::before {
  left: 100%;
}

.nav-toggle:hover {
  background: rgba(191, 167, 106, 0.15);
  border-color: rgba(191, 167, 106, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(191, 167, 106, 0.2);
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--lux-gold);
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

.nav-toggle span:nth-child(1) {
  transform-origin: center;
}

.nav-toggle span:nth-child(2) {
  transform-origin: center;
}

.nav-toggle span:nth-child(3) {
  transform-origin: center;
}

/* Hamburger menu animation */
.nav-toggle.active {
  background: rgba(191, 167, 106, 0.2);
  border-color: rgba(191, 167, 106, 0.4);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(191, 167, 106, 0.3);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  width: 20px;
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  width: 20px;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, var(--lux-navy) 0%, #232323 100%);
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}

.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.hero-content {
  flex: 1;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--lux-gold);
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
  line-height: 1.1;
  text-shadow: 0 4px 32px rgba(191, 167, 106, 0.18);
}

.hero-content p {
  font-size: 1.3rem;
  color: #e0ded9;
  margin-bottom: 2.2rem;
  max-width: 500px;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--lux-gold) 0%, #a68a4d 100%);
  color: var(--lux-navy);
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 40px;
  font-size: 1.1rem;
  box-shadow: 0 8px 32px rgba(191, 167, 106, 0.18);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 40px rgba(191, 167, 106, 0.22);
  background: linear-gradient(90deg, #a68a4d 0%, var(--lux-gold) 100%);
}

.hero-visual {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-anim {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 60% 40%, #fff 0%, #bfa76a22 100%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  animation: bgPulse 4s infinite alternate;
}

.hero-img {
  width: 350px;
  z-index: 2;
  filter: drop-shadow(0 8px 32px #bfa76a33);
  animation: float 3.5s ease-in-out infinite;
}

/* Services Section */
.services-section {
  padding: 100px 0 80px;
  background: var(--lux-ivory);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--lux-navy);
  margin-bottom: 3rem;
  letter-spacing: 1px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid-second {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto 0;
}

.service-card {
  background: var(--lux-white);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(24, 28, 43, 0.08);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-content {
  flex: 1;
  overflow-y: auto;
  padding-right: 5px;
}

.service-content::-webkit-scrollbar {
  width: 6px;
}

.service-content::-webkit-scrollbar-track {
  background: transparent;
}

.service-content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 3px;
}

.service-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f7931e 0%, #ff6b35 100%);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(24, 28, 43, 0.15);
  border-color: var(--lux-gold);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.service-icon i {
  color: var(--lux-white);
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--lux-navy);
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.service-list li {
  color: var(--lux-grey);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.6rem;
  padding-left: 1.2rem;
  position: relative;
  transition: color 0.3s ease;
}

.service-list li::before {
  content: '•';
  color: #ff6b35;
  font-weight: bold;
  font-size: 1rem;
  position: absolute;
  left: 0;
  top: -1px;
}

.service-card:hover .service-list li {
  color: var(--lux-navy);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 40px rgba(24, 28, 43, 0.13);
}



/* About Section */
.about-section {
  padding: 100px 0 80px;
  background: linear-gradient(120deg, var(--lux-ivory) 60%, #e6e1d3 100%);
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.about-img img {
  width: 340px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(24, 28, 43, 0.10);
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--lux-navy);
  margin-bottom: 1.2rem;
}

.about-content p {
  font-size: 1.1rem;
  color: var(--lux-grey);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  font-size: 1rem;
  color: var(--lux-navy);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.about-list i {
  color: var(--lux-gold);
  font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
  padding: 100px 0 80px;
  background: var(--lux-white);
}

.contact-flex {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  color: var(--lux-navy);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.contact-info li {
  color: var(--lux-grey);
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.contact-info i {
  color: var(--lux-gold);
  font-size: 1.2rem;
}

.contact-form {
  flex: 1;
  background: var(--lux-ivory);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(24, 28, 43, 0.07);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-width: 300px;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 2px solid #e6e1d3;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border 0.2s;
  background: var(--lux-white);
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 2px solid var(--lux-gold);
  outline: none;
}

.contact-form button {
  margin-top: 0.5rem;
}

/* Footer */
.footer-section {
    background: var(--lux-navy);
    color: white;
    padding: 80px 0 0;
    margin-top: 80px;
}

.footer-content {
    width: 100%;
}

.footer-section-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-company {
    max-width: 400px;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--lux-orange);
    margin-bottom: 20px;
}
.footer-company a {
  text-decoration: none;
  color: white;
}

.footer-description {
    color: var(--lux-gray-light);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1rem;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.footer-socials a:hover {
    color: var(--lux-orange);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--lux-orange);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--lux-orange);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--lux-gray-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: var(--lux-orange);
    padding-left: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
    color: var(--lux-orange);
    font-size: 1.1rem;
    margin-top: 2px;
    min-width: 16px;
}

.contact-item div {
    color: var(--lux-gray-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-item strong {
    color: white;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-top: 40px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copy {
    color: var(--lux-gray-light);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--lux-gray-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--lux-orange);
}

.footer-legal .separator {
    color: var(--lux-gray);
    font-size: 0.8rem;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-section-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-company {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 60px 0 0;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-section-main {
        gap: 30px;
    }
    
    .footer-logo {
        font-size: 2rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .footer-socials a {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 900px) {
  .footer-section-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-company {
    max-width: 100%;
    text-align: center;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    justify-items: center;
  }
}

@media (max-width: 600px) {
  .footer-section {
    padding: 40px 0 0;
  }
  .footer-section-main {
    gap: 20px;
  }
  .footer-links {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .footer-column {
    text-align: center;
  }
  .footer-socials {
    justify-content: center;
    margin-bottom: 16px;
  }
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  .contact-info {
    align-items: center;
  }
  .contact-item {
    justify-content: center;
  }
}

/* Animations */
.animated-fadein {
  opacity: 0;
  animation: fadeIn 1.2s 0.2s forwards;
}

.animated-fadein-delay {
  opacity: 0;
  animation: fadeIn 1.2s 0.7s forwards;
}

.animated-slidein {
  opacity: 0;
  transform: translateX(-60px);
  animation: slideIn 1.2s 0.4s forwards;
}

.animated-pop {
  opacity: 0;
  transform: scale(0.8);
  animation: popIn 1.1s 1s forwards;
}

.animated-float {
  animation: float 3.5s ease-in-out infinite;
}

.animated-up {
  opacity: 0;
  transform: translateY(40px);
  animation: upIn 1.1s 0.3s forwards;
}

.animated-up-delay1 {
  opacity: 0;
  transform: translateY(40px);
  animation: upIn 1.1s 0.5s forwards;
}

.animated-up-delay2 {
  opacity: 0;
  transform: translateY(40px);
  animation: upIn 1.1s 0.7s forwards;
}

.animated-up-delay3 {
  opacity: 0;
  transform: translateY(40px);
  animation: upIn 1.1s 0.9s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes upIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes bgPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Founder & CEO Section */
.founder-section {
  background: var(--lux-white);
  padding: 80px 0 60px;
}

.founder-flex {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.founder-photo img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--lux-gold);
  box-shadow: 0 4px 24px rgba(191, 167, 106, 0.12);
  background: var(--lux-ivory);
}

.founder-content {
  flex: 1;
}

.founder-content h2 {
  font-size: 1.7rem;
  color: var(--lux-navy);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.founder-content h3 {
  font-size: 1.3rem;
  color: var(--lux-gold);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.founder-title {
  color: var(--lux-grey);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  font-style: italic;
}

.founder-content p {
  color: var(--lux-charcoal);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Detailed Services Section */
.detailed-services-section {
  padding: 100px 0 80px;
  background: var(--lux-white);
}

/* IT Infrastructure Section */
.it-infrastructure-section {
  padding: 100px 0 80px;
  background: var(--lux-ivory);
  position: relative;
}

.it-infrastructure-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
}

.infrastructure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Responsive Design */

/* iPad Specific Optimizations */
@media (min-width: 768px) and (max-width: 1024px) {
  /* iPad Portrait and Landscape */
  .container {
    padding: 0 30px;
    max-width: 100%;
  }
  
  /* Navbar iPad adjustments */
  .nav-flex {
    height: 80px;
  }
  
  .logo {
    font-size: 1.8rem;
  }
  
  .nav-links a {
    font-size: 1.1rem;
  }
  
  /* Hero section iPad */
  .hero-section {
    min-height: 90vh;
    padding-top: 100px;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .hero-bg-anim {
    width: 350px;
    height: 350px;
  }
  
  .hero-img {
    width: 250px;
    height: 250px;
  }
  
  /* Services grid iPad */
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 100%;
  }
  
  .services-grid-second {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    margin-top: 1.5rem;
  }
  
  .infrastructure-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 100%;
  }
  
  .service-card {
    padding: 1.5rem 1rem;
    height: 320px;
  }
  
  .service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .service-list li {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }
  
  .service-icon i {
    font-size: 1.4rem;
  }
  
  /* Section spacing iPad */
  .services-section,
  .it-infrastructure-section {
    padding: 80px 0 60px;
  }
  
  .section-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  
  /* About section iPad */
  .about-section {
    padding: 80px 0 60px;
  }
  
  .about-flex {
    gap: 3rem;
  }
  
  .about-img img {
    width: 150px;
    height: 150px;
  }
  
  .about-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
  }
  
  /* Founder section iPad */
  .founder-section {
    padding: 80px 0 60px;
  }
  
  .founder-flex {
    gap: 3rem;
  }
  
  .founder-photo img {
    width: 150px;
    height: 150px;
  }
  
  .founder-content h2 {
    font-size: 1.6rem;
  }
  
  .founder-content h3 {
    font-size: 1.3rem;
  }
  
  .founder-content p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Contact section iPad */
  .contact-section {
    padding: 80px 0 60px;
  }
  
  .contact-flex {
    gap: 3rem;
  }
  
  .contact-info h2 {
    font-size: 1.8rem;
  }
  
  .contact-info p {
    font-size: 1.1rem;
  }
  
  .contact-info li {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }
  
  /* Footer iPad optimizations */
  .footer-section {
    padding: 60px 0 40px;
  }
  
  .footer-section-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
  }
  
  .footer-company {
    grid-column: 1;
  }
  
  .footer-links {
    grid-column: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .footer-logo {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .footer-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .footer-socials {
    gap: 1rem;
  }
  
  .footer-socials a {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .footer-column ul li a {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
  
  .contact-info {
    margin-top: 1.5rem;
  }
  
  .contact-item {
    margin-bottom: 0.8rem;
  }
  
  .contact-item i {
    font-size: 1rem;
    margin-right: 0.8rem;
  }
  
  .contact-item div {
    font-size: 0.95rem;
  }
  
  .contact-item strong {
    font-size: 1rem;
  }
  
  .footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(191, 167, 106, 0.2);
  }
  
  .footer-copy {
    font-size: 0.9rem;
    text-align: center;
  }
}
@media (max-width: 1024px) {

  .hero-flex,
  .about-flex,
  .contact-flex,
  .footer-flex {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-content,
  .about-content,
  .contact-info,
  .contact-form {
    width: 100%;
    min-width: unset;
  }

  .hero-img,
  .about-img img {
    width: 260px;
  }

  .hero-bg-anim {
    width: 260px;
    height: 260px;
  }
}

/* Large Desktop */
@media (max-width: 1400px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    max-width: 1200px;
  }
  
  .services-grid-second {
    max-width: 900px;
  }
  
  .infrastructure-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    max-width: 1200px;
  }
  
  .service-card {
    height: 380px;
    padding: 1.8rem 1.5rem;
  }
  
  .service-icon {
    width: 65px;
    height: 65px;
  }
  
  .service-icon i {
    font-size: 1.7rem;
  }
}

/* Desktop */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
  }
  
  .services-grid-second {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
  }
  
  .infrastructure-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
  }
  
  .service-card {
    height: 360px;
    padding: 1.6rem 1.3rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon i {
    font-size: 1.6rem;
  }
  
  .service-card h3 {
    font-size: 1.3rem;
  }
}

/* Large Tablet */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    max-width: 900px;
  }
  
  .services-grid-second {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin-top: 1.4rem;
  }
  
  .infrastructure-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.4rem;
    max-width: 800px;
  }
  
  .service-card {
    height: 350px;
    padding: 1.5rem 1.2rem;
  }
  
  .service-icon {
    width: 55px;
    height: 55px;
  }
  
  .service-icon i {
    font-size: 1.5rem;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .service-list li {
    font-size: 0.9rem;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    max-width: 800px;
  }
  
  .services-grid-second {
    grid-template-columns: repeat(3, 1fr);
    max-width: 800px;
    margin-top: 1.5rem;
  }
  
  .infrastructure-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
    max-width: 700px;
  }
  
  .service-card {
    padding: 1.5rem 1rem;
    height: 340px;
  }
  
  .service-content {
    padding-right: 3px;
  }
  
  .service-content::-webkit-scrollbar {
    width: 4px;
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
  }
  
  .service-icon i {
    font-size: 1.4rem;
  }
  
  .service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .service-list li {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
}

/* Large Mobile */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 600px;
  }
  
  .services-grid-second {
    grid-template-columns: repeat(2, 1fr);
    max-width: 400px;
    margin-top: 1.2rem;
  }
  
  .infrastructure-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    max-width: 600px;
  }
  
  .service-card {
    height: 320px;
    padding: 1.3rem 0.8rem;
  }
  
  .service-icon {
    width: 45px;
    height: 45px;
  }
  
  .service-icon i {
    font-size: 1.3rem;
  }
  
  .service-card h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }
  
  .service-list li {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
  }
}

/* Medium Mobile */
@media (max-width: 700px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100vw;
    background: linear-gradient(135deg, var(--lux-navy) 0%, #232323 100%);
    flex-direction: column;
    gap: 0;
    padding: 0;
    box-shadow: 0 8px 32px rgba(24, 28, 43, 0.15);
    z-index: 99;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(191, 167, 106, 0.1);
    animation: slideDown 0.3s ease-out;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(191, 167, 106, 0.1);
    transition: all 0.3s ease;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links li:hover {
    background: rgba(191, 167, 106, 0.05);
  }

  .nav-links a {
    display: block;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--lux-ivory);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .nav-links a::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(191, 167, 106, 0.1), transparent);
    transition: left 0.5s ease;
  }

  .nav-links a:hover::before {
    left: 100%;
  }

  .nav-links a:hover {
    color: var(--lux-gold);
    padding-left: 2.5rem;
    background: rgba(191, 167, 106, 0.05);
  }

  .nav-links a:after {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .footer-flex {
    flex-direction: column;
    gap: 1rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    max-width: 500px;
  }
  
  .services-grid-second {
    grid-template-columns: repeat(2, 1fr);
    max-width: 350px;
    margin-top: 1rem;
  }
  
  .infrastructure-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.8rem;
    max-width: 500px;
  }
  
  .service-card {
    padding: 1.2rem 0.7rem;
    height: 300px;
  }
  
  .service-content {
    padding-right: 2px;
  }
  
  .service-content::-webkit-scrollbar {
    width: 3px;
  }
  
  .service-icon {
    width: 40px;
    height: 40px;
  }
  
  .service-icon i {
    font-size: 1.2rem;
  }
  
  .service-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
  }
  
  .service-list li {
    font-size: 0.75rem;
    margin-bottom: 0.3rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 100%;
  }
  
  .services-grid-second {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-top: 1rem;
  }
  
  .infrastructure-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 100%;
  }
  
  .service-card {
    padding: 1.5rem;
    height: auto;
    min-height: 280px;
  }
  
  .service-content {
    overflow-y: visible;
    padding-right: 0;
  }
  
  .service-icon {
    width: 55px;
    height: 55px;
  }
  
  .service-icon i {
    font-size: 1.4rem;
  }
  
  .service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .service-list li {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .services-grid {
    gap: 0.8rem;
  }
  
  .services-grid-second {
    margin-top: 0.8rem;
  }
  
  .service-card {
    padding: 1.2rem;
    min-height: 260px;
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
  }
  
  .service-icon i {
    font-size: 1.3rem;
  }
  
  .service-card h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }
  
  .service-list li {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
  }
}

/* Mobile Landscape */
@media (max-width: 768px) and (orientation: landscape) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 900px;
  }
  
  .services-grid-second {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin-top: 1rem;
  }
  
  .service-card {
    height: 280px;
    padding: 1rem 0.8rem;
  }
  
  .service-icon {
    width: 40px;
    height: 40px;
  }
  
  .service-icon i {
    font-size: 1.2rem;
  }
  
  .service-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
  }
  
  .service-list li {
    font-size: 0.7rem;
    margin-bottom: 0.3rem;
  }
}

/* iPad Landscape Specific */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  /* iPad Landscape optimizations */
  .hero-section {
    min-height: 80vh;
    padding-top: 90px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-bg-anim {
    width: 300px;
    height: 300px;
  }
  
  .hero-img {
    width: 200px;
    height: 200px;
  }
  
  /* Services grid landscape */
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
  }
  
  .services-grid-second {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
  
  .infrastructure-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
  }
  
  .service-card {
    height: 300px;
    padding: 1.2rem 0.8rem;
  }
  
  .service-card h3 {
    font-size: 1rem;
  }
  
  .service-list li {
    font-size: 0.85rem;
  }
  
  /* Section spacing landscape */
  .services-section,
  .it-infrastructure-section {
    padding: 60px 0 40px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  /* About and founder sections landscape */
  .about-section,
  .founder-section {
    padding: 60px 0 40px;
  }
  
  .about-flex,
  .founder-flex {
    gap: 2rem;
  }
  
  .about-img img,
  .founder-photo img {
    width: 120px;
    height: 120px;
  }
  
  /* Contact section landscape */
  .contact-section {
    padding: 60px 0 40px;
  }
  
  .contact-flex {
    gap: 2rem;
  }
  
  /* Footer landscape layout */
  .footer-section {
    padding: 50px 0 30px;
  }
  
  .footer-section-main {
    grid-template-columns: 1fr 2.5fr;
    gap: 2rem;
  }
  
  .footer-links {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  
  .footer-logo {
    font-size: 1.6rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .footer-column h4 {
    font-size: 1.1rem;
  }
  
  .footer-column ul li a {
    font-size: 0.9rem;
  }
  
  .contact-item {
    margin-bottom: 0.6rem;
  }
  
  .contact-item div {
    font-size: 0.9rem;
  }
}

/* Tablet Landscape */
@media (max-width: 1024px) and (orientation: landscape) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
  }
  
  .services-grid-second {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
  }
  
  .service-card {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 8px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

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

@media (max-width: 900px) {
  .founder-flex {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .founder-photo img {
    margin: 0 auto;
  }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    max-width: 400px;
    animation: slideIn 0.3s ease;
}

.notification-success {
    background: #10b981;
    color: white;
}

.notification-error {
    background: #ef4444;
    color: white;
}

.notification-info {
    background: #3b82f6;
    color: white;
}

.notification-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.notification-content button {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.notification-content button:hover {
    opacity: 0.8;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  background: #e6e1d3;
}

::-webkit-scrollbar-thumb {
  background: #bfa76a44;
  border-radius: 8px;
}

/* Sticky Call Button */
.sticky-call {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 12000;
  background: linear-gradient(135deg, var(--lux-gold) 0%, #a68a4d 100%);
  color: var(--lux-navy);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(191, 167, 106, 0.18);
  font-size: 2rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  border: none;
  outline: none;
}
.sticky-call:hover, .sticky-call:focus {
  background: linear-gradient(135deg, #a68a4d 0%, var(--lux-gold) 100%);
  color: var(--lux-navy);
  transform: translateY(-4px) scale(1.07);
  box-shadow: 0 16px 40px rgba(191, 167, 106, 0.22);
}
.sticky-call i {
  pointer-events: none;
}
@media (max-width: 600px) {
  .sticky-call {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
}