/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    color: #cccccc;
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    color: #ffd700;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    color: #000000;
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: #ffd700;
    padding: 12px 25px;
    border: 2px solid #ffd700;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #ffd700;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

/* Logo image in header */
.nav-logo img {
    height: 34px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: #ffd700;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding-top: 80px;
}

.hero-container {
    /* Match the global container spacing to avoid content touching side edges */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
	/* Existing grid layout */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    text-align: left;
    max-width: 520px;
    width: 100%;
}

.hero-title {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 3.5rem;
}

.hero-tagline {
    color: #ffd700;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 520px;
    width: 100%;
    justify-self: end;
}

.floating-card {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
    width: 100%;
}

.floating-card:nth-child(2) {
    animation-delay: 2s;
}

.floating-card:nth-child(3) {
    animation-delay: 4s;
}

.floating-card i {
    font-size: 2rem;
    color: #ffd700;
}

.floating-card span {
    font-weight: 600;
    color: #ffffff;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.page-header h1 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.page-subtitle {
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Sections */
section {
    padding: 80px 0;
}

/* Indian Brand Section */
.indian-brand-section {
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.06) 0%, rgba(255, 215, 0, 0.02) 100%);
}

.indian-brand-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.indian-brand-container.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.indian-title {
    font-size: 2.4rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.indian-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 16px;
}

.indian-tagline {
    font-size: 0.95rem;
    color: #ffd700;
    letter-spacing: 0.5px;
}

.indian-accent {
    width: 120px;
    height: 6px;
    margin: 0 auto 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff9933 0%, #ffffff 50%, #138808 100%);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .indian-title { font-size: 2rem; }
    .indian-subtitle { font-size: 1.05rem; }
}

.section-title {
    text-align: center;
    color: #ffffff;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* Services Preview */
.services-preview {
    background: #0f0f0f;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.service-card i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

/* Portfolio Preview */
.portfolio-preview {
    background: #0a0a0a;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: 600;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.portfolio-overlay p {
    color: #cccccc;
}

.text-center {
    text-align: center;
}



.mission-vision {
    background: #0a0a0a;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mv-card {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.mv-icon i {
    font-size: 2rem;
    color: #000000;
}

.values {
    background: #0f0f0f;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.value-card i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.team {
    background: #0a0a0a;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.member-photo .placeholder-img {
    height: 200px;
    margin-bottom: 1.5rem;
}

.member-role {
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Services Page Styles */
.services-main {
    background: #0f0f0f;
}

.services-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card-main {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-card-main:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon i {
    font-size: 2rem;
    color: #000000;
}

.service-card-main h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    color: #cccccc;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.service-features li:last-child {
    border-bottom: none;
}

.process {
    background: #0a0a0a;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #ffd700;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

/* Portfolio Page Styles */
.portfolio-filter {
    background: #0f0f0f;
    padding: 40px 0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 215, 0, 0.3);
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #ffd700;
    color: #000000;
    border-color: #ffd700;
}

.portfolio-main {
    background: #0a0a0a;
}

.portfolio-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item-main {
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    transition: all 0.3s ease;
}

.portfolio-item-main:hover {
    transform: translateY(-10px);
}

.portfolio-image-main {
    width: 100%;
    height: 100%;
    position: relative;
}

.portfolio-overlay-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item-main:hover .portfolio-overlay-main {
    opacity: 1;
}

.portfolio-overlay-main h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.portfolio-overlay-main p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.portfolio-tech {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.portfolio-tech span {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.stats {
    background: #0f0f0f;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-content {
    background: #0f0f0f;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-section h2,
.contact-info-section h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-form-section p,
.contact-info-section p {
    color: #cccccc;
    margin-bottom: 2rem;
}

.contact-form {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 2rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.contact-info-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #000000;
    font-size: 1.2rem;
}

.contact-details h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #cccccc;
    margin: 0;
}

.social-connect {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 2rem;
    border-radius: 15px;
}

.social-connect h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.social-connect p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.social-links-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    transform: translateY(-2px);
}

.social-link i {
    color: #ffd700;
    font-size: 1.2rem;
}

.social-link span {
    color: #ffffff;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    background: #0a0a0a;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.1);
}

.faq-question h3 {
    color: #ffffff;
    margin: 0;
    font-size: 1.2rem;
}

.faq-question i {
    color: #ffd700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #cccccc;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
}

.cta-section h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #000000;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.footer-tagline {
    color: #ffd700 !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-section ul li {
    margin-bottom: 0;
}

.footer-section ul li a {
    color: #cccccc;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffd700;
    border-color: #ffd700;
    color: #000000;
}

.footer-email {
    margin-top: 1rem;
}

.footer-email a {
    color: #cccccc;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-email a:hover {
    color: #ffd700;
    transform: translateX(5px);
}

.footer-email i {
    color: #ffd700;
    font-size: 1rem;
}

/* Foundation Button */
.foundation-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 3px solid #ffd700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.foundation-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.foundation-btn:hover::before {
    left: 100%;
}

.foundation-btn:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    color: #000000;
    border-color: #ffed4e;
}

.foundation-btn i {
    color: #ff0000;
    font-size: 1.2rem;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-bottom p {
    color: #888888;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 2rem;
    }

    .hero-visual {
        max-width: 100%;
        justify-self: center;
        align-items: stretch;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .services-grid-main {
        grid-template-columns: 1fr;
    }

    .portfolio-grid-main {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 200px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        padding-top: 60px;
    }

    .page-header {
        padding: 100px 0 60px;
    }

    /* Footer Mobile Styles */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-section {
        text-align: center;
        padding: 0 20px;
    }

    .footer-section ul {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .footer-section ul li {
        margin-bottom: 0;
    }

    .social-links {
        justify-content: center;
    }

    .footer-email {
        text-align: center;
    }
    
    .footer-email a {
        justify-content: center;
    }
    
    .foundation-btn {
        font-size: 1rem;
        padding: 14px 24px;
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.8rem !important;
        background: linear-gradient(135deg, #ffd700, #ffed4e) !important;
        color: #000000 !important;
        border-radius: 50px !important;
        font-weight: 700 !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        border: 3px solid #ffd700 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2) !important;
        position: relative !important;
        overflow: hidden !important;
        width: auto !important;
        margin: 0 auto !important;
    }
    
    .foundation-btn i {
        color: #ff0000 !important;
        font-size: 1.2rem !important;
        animation: heartbeat 2s ease-in-out infinite !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .floating-card {
        padding: 1rem;
        min-width: 0;
    }

    .floating-card i {
        font-size: 1.5rem;
    }

    .floating-card span {
        font-size: 0.9rem;
    }

    /* Footer Mobile Small Screen Styles */
    .footer {
        padding: 30px 0 15px;
    }

    .footer-content {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-section {
        padding: 0 15px;
    }

    .footer-section ul {
        gap: 0.3rem;
    }

    .footer-section ul li a {
        font-size: 0.8rem;
        padding: 3px 6px;
    }

    .social-links {
        gap: 0.8rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
    }

    .footer-email a {
        font-size: 0.9rem;
    }
    
    .foundation-btn {
        font-size: 0.95rem;
        padding: 12px 20px;
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.6rem !important;
        background: linear-gradient(135deg, #ffd700, #ffed4e) !important;
        color: #000000 !important;
        border-radius: 50px !important;
        font-weight: 700 !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        border: 2px solid #ffd700 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        box-shadow: 0 3px 10px rgba(255, 215, 0, 0.2) !important;
        position: relative !important;
        overflow: hidden !important;
        width: auto !important;
        margin: 0 auto !important;
    }
    
    .foundation-btn i {
        color: #ff0000 !important;
        font-size: 1rem !important;
        animation: heartbeat 2s ease-in-out infinite !important;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-0 {
    margin-top: 0;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* Loading animation for form submission */
.btn-loading {
    display: none;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: inline-block;
}

/* Google My Business Section */
.google-business-section {
    padding: 80px 0;
    background: #0f0f0f;
    margin: 0;
    width: 100%;
}

.google-business-section .section-title {
    color: #ffffff !important;
    text-align: center !important;
    margin-bottom: 3rem !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    display: block !important;
}

.google-business-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    align-items: start !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.google-business-card {
    background: rgba(255, 215, 0, 0.05) !important;
    border: 1px solid rgba(255, 215, 0, 0.2) !important;
    border-radius: 20px !important;
    padding: 2.5rem !important;
    transition: all 0.3s ease !important;
    display: block !important;
    width: 100% !important;
}

.google-business-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.google-business-header {
    text-align: center;
    margin-bottom: 2rem;
}

.google-business-header i {
    font-size: 3rem;
    color: #4285f4;
    margin-bottom: 1rem;
}

.google-business-header h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.stars i {
    color: #ffd700;
    font-size: 1.2rem;
}

.rating-text {
    color: #cccccc;
    font-weight: 600;
}

.google-business-info {
    margin-bottom: 2rem;
}

.google-business-info p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #cccccc;
}

.google-business-info i {
    color: #ffd700;
    width: 20px;
    text-align: center;
}

.google-business-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.google-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 140px;
}

.directions-btn {
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: #ffffff;
    border: 2px solid #4285f4;
}

.directions-btn:hover {
    background: linear-gradient(135deg, #34a853, #4285f4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
}

.review-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    border: 2px solid #ffd700;
}

.review-btn:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.google-business-embed {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.google-business-embed iframe {
    border-radius: 15px;
}

/* Google My Business Mobile Responsive */
@media (max-width: 768px) {
    .google-business-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .google-business-card {
        padding: 2rem;
    }
    
    .google-business-header h3 {
        font-size: 1.5rem;
    }
    
    .google-business-actions {
        flex-direction: column;
    }
    
    .google-btn {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .google-business-card {
        padding: 1.5rem;
    }
    
    .google-business-header i {
        font-size: 2.5rem;
    }
    
    .google-business-header h3 {
        font-size: 1.3rem;
    }
    
    .google-business-info p {
        font-size: 0.9rem;
    }
}
