/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a:-webkit-any-link {
    color: -webkit-link;
    cursor: pointer;
    text-decoration: none;
}
/*
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c1810;
    overflow-x: hidden;
}
*/
body {
    font-family: cormorantgaramond-light, cormorantgaramond, 'cormorant garamond', serif;
    font-style: italic;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.5em;
    color: #2c1810;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.gradient-text {
    background: linear-gradient(135deg, #623817, #7A5137, #A27246);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #623817, #7A5137);
    color: white;
    box-shadow: 0 8px 25px rgba(213, 197, 180, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(213, 197, 180, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid #623817;
    color: #623817;
}

.btn-outline:hover {
    background: #623817;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 32px;
    font-size: 18px;
    border-radius: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: #2c1810;
}

.section-header p {
    font-size: 20px;
    color: #6b5b73;
    max-width: 600px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(251, 113, 133, 0.1);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0;
}

.logo img {
    height: 75px;
    width: auto;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: #2c1810;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #623817;
}

.book-btn {
    background: linear-gradient(135deg, #623817, #7A5137);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(213, 197, 180, 0.3);
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(213, 197, 180, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c1810;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(213, 197, 180, 0.5) 0%, 
        rgba(255, 255, 255, 0.8) 50%, 
        rgba(254, 243, 199, 0.5) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(213, 197, 180, 0.1), rgba(213, 197, 180, 1));
    border: 1px solid rgba(213, 197, 180, 0.2);
    border-radius: 50px;
    font-weight: 500;
    color: #623817;
    margin-bottom: 32px;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
    color: #2c1810;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: #6b5b73;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 32px;
    color: #623817;
    margin-bottom: 12px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #2c1810;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #6b5b73;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 800px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s ease;
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 30px;
    color: white;
}

.image-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.image-category {
    font-size: 14px;
    opacity: 0.9;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    top: -20px;
    right: -20px;
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, #623817, #7A5137);
    animation-delay: 0s;
}

.floating-2 {
    bottom: -30px;
    left: -30px;
    width: 128px;
    height: 128px;
    background: linear-gradient(135deg, #A27246, #fbbf24);
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

/* About Section */
.about {
    padding: 50px 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.quote-card {
    background: linear-gradient(135deg, white, rgba(213, 197, 180, 0.8));
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 32px;
    border: 1px solid rgba(213, 197, 180, 0.1);
}

.quote-card blockquote p {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    color: #2c1810;
    margin-bottom: 20px;
}

.quote-card footer {
    color: #623817;
    font-weight: 600;
}

.achievement-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.achievement-card {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.achievement-card i {
    font-size: 32px;
    color: #623817;
    margin-bottom: 12px;
}

.achievement-card p {
    font-weight: 600;
    color: #2c1810;
}

.about-right img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* USP Section */
.usp {
    padding: 50px 0;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.usp-card {
    background: linear-gradient(135deg, white, rgba(213, 197, 180, 0.8));
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(213, 197, 180, 0.1);
}

.usp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.usp-icon i {
    font-size: 32px;
    color: #623817;
}

.usp-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 8px;
}

.usp-content p {
    color: #6b5b73;
}

/* Services Section */
.services {
    padding: 50px 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(213, 197, 180, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    height: 450px;
    overflow: hidden;
}
.video-testimonials {
  padding: 60px 20px;
  background: #fafafa;
  text-align: center;
}
.video-testimonials .section-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.video-testimonials .section-header p {
  color: #666;
  margin-bottom: 40px;
}
.video-grid {
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;
  gap: 20px; /* space between videos */
  flex-wrap: wrap; /* responsive for mobile */
}
.video-card {
  width: 500px;
  height: 500px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* crop karega neatly */
  border-radius: 12px;
}
/* Brands Section */
.brands {
  padding: 60px 0;
  background: #fafafa;
  text-align: center;
  overflow: hidden;
}

.brands .section-header h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.brands .section-header p {
  color: #666;
  margin-bottom: 40px;
}

.brands-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.brands-track {
  display: flex;
  width: calc(250px * 18); /* 9 brands * 2 copies */
  animation: scrollBrands 25s linear infinite;
}


.brand-card:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}
.brand-card {
  flex: 0 0 180px; /* fix width */
  height: 100px;   /* fix height */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;  /* white background for all logos */
  border: 1px solid #eee;
  border-radius: 10px;
  margin: 0 10px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.brand-card img {
  max-height: 70px;   /* fix logo height */
  max-width: 150px;   /* fix logo width */
  object-fit: contain; /* keep aspect ratio */
}
/* Smooth infinite scroll */
@keyframes scrollBrands {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: #623817;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.service-content {
    padding: 32px;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 12px;
}

.service-content p {
    color: #6b5b73;
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 15px;
}

.service-price {
    font-size: 18px;
    font-weight: 600;
    color: #623817;
    margin-bottom: 20px;
}

.service-content .btn {
    width: 100%;
    justify-content: center;
}

/* Portfolio Section */
.portfolio {
    padding: 50px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.portfolio-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    text-align: center;
    color: white;
}

.portfolio-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.portfolio-category {
    font-size: 14px;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
    padding: 50px 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.testimonial-card {
    background: linear-gradient(135deg, white, rgba(213, 197, 180, 0.8));
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid rgba(213, 197, 180, 0.1);
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.testimonial-stars i {
    font-size: 24px;
    color: #A27246;
}

.testimonial-content blockquote {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    color: #2c1810;
    margin-bottom: 32px;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: #623817;
    margin-bottom: 8px;
}

.author-date {
    color: #6b5b73;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: none;
    background: #D5C5B4;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #623817;
    transform: scale(1.2);
}

/* Contact Section */
.contact {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(213, 197, 180, 0.8) 0%, 
        rgba(255, 255, 255, 0.9) 50%, 
        rgba(254, 243, 199, 0.8) 100%);
}

.floating-bg {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.floating-bg-1 {
    top: 40px;
    left: 40px;
    width: 128px;
    height: 128px;
    background: linear-gradient(135deg, #623817, #7A5137);
    animation-delay: 0s;
}

.floating-bg-2 {
    bottom: 40px;
    right: 40px;
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #A27246, #fbbf24);
    animation-delay: 3s;
}

.floating-bg-3 {
    top: 50%;
    left: 25%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7A5137, #f9a8d4);
    animation-delay: 1.5s;
}

.contact-header {
    text-align: center;
    margin-bottom: 120px;
    position: relative;
    z-index: 2;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(213, 197, 180, 0.1), rgba(188, 159, 125, 1));
    border: 1px solid rgba(213, 197, 180, 0.2);
    border-radius: 50px;
    font-weight: 500;
    color: #623817;
    margin-bottom: 32px;
}

.contact-header h2 {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    margin-bottom: 32px;
    color: #2c1810;
}

.contact-header p {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #6b5b73;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}
/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-content {
    display: block; /* or flex with column */
  }

  .contact-info,
  .contact-form-container {
    margin-bottom: 40px; /* spacing between sections */
  }
}
.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(213, 197, 180, 0.9));
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(213, 197, 180, 0.1);
    margin-bottom: 32px;
}

.contact-card-header {
    text-align: center;
    margin-bottom: 32px;
}

.contact-card-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 8px;
}

.contact-card-header p {
    color: #6b5b73;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #623817, #7A5137);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.contact-label {
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.contact-value {
    color: #6b5b73;
}

.social-links {
    text-align: center;
}

.social-links p {
    color: #6b5b73;
    font-weight: 500;
    margin-bottom: 16px;
}

.social-buttons {
    display: flex;
    gap: 16px;
}

.social-buttons .btn {
    flex: 1;
    border-color: rgba(213, 197, 180, 0.2);
}

.contact-form-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(213, 197, 180, 0.9));
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(213, 197, 180, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header i {
    font-size: 48px;
    color: #623817;
    margin-bottom: 16px;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 8px;
}

.form-header p {
    color: #6b5b73;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #2c1810;
    font-size: 18px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px;
    border: 2px solid rgba(251, 113, 133, 0.2);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    color: #2c1810;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #623817;
    box-shadow: 0 0 0 3px rgba(213, 197, 180, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #059669;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

#submit-btn {
    background: linear-gradient(135deg, #623817, #7A5137, #A27246);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(213, 197, 180, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

#submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(213, 197, 180, 0.4);
}

#submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Footer */
.footer {
    padding: 80px 0;
    background: linear-gradient(135deg, #623817, #7A5137, #A27246);
    color: white;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    height: 64px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 24px;
}

.footer-tagline {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 32px;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

.footer-copyright {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright p {
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding-top: 100px;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .usp-grid {
        grid-template-columns: 1fr;
    }
    
    .usp-card {
        flex-direction: column;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 16px;
    }
    
    .social-buttons {
        flex-direction: column;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .testimonial-card {
        padding: 40px 24px;
    }
    
    .contact-card,
    .contact-form-card {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-image-container {
        height: 400px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-header h2 {
        font-size: 2.5rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-content blockquote {
        font-size: 18px;
    }
}

/* Additional Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Scroll animations can be added with JavaScript */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}
