/* CSS Custom Properties */
:root {
    --navy: #1e3a8a;
    --charcoal: #374151;
    --gold: #f59e0b;
    --divine-orange: #ff6b35;
    --divine-purple: #6b46c1;
    --sacred-red: #dc2626;
    --lotus-pink: #ec4899;
    --spiritual-blue: #3b82f6;
    --light-gray: #f8fafc;
    --medium-gray: #6b7280;
    --rich-black: #111827;
    --white: #ffffff;
    --border-light: #e5e7eb;
    --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-heavy: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --divine-glow: rgba(255, 107, 53, 0.3);
    --sacred-gradient: linear-gradient(135deg, var(--divine-orange), var(--divine-purple), var(--sacred-red));
    --spiritual-gradient: linear-gradient(45deg, var(--divine-orange), var(--gold), var(--lotus-pink));
}

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

/* Custom Trishul Cursor */
.trishul-cursor {
    cursor: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="%23ff6b35"><g stroke="%23ff6b35" stroke-width="2" fill="none"><line x1="16" y1="4" x2="16" y2="28"/><line x1="12" y1="8" x2="20" y2="8"/><line x1="10" y1="12" x2="22" y2="12"/><circle cx="16" cy="20" r="2" fill="%23ff6b35"/></g></svg>') 16 16, auto;
}

/* Interactive Elements Cursor */
button, a, .btn, .nav-link, .nav-cta, [role="button"], input[type="submit"], input[type="button"] {
    cursor: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 36 36"><defs><linearGradient id="trishulHover" x1="0%25" y1="0%25" x2="100%25" y2="100%25"><stop offset="0%25" stop-color="%23ff0080"/><stop offset="25%25" stop-color="%23ff6b35"/><stop offset="50%25" stop-color="%23ffff00"/><stop offset="75%25" stop-color="%2300ff00"/><stop offset="100%25" stop-color="%230080ff"/></linearGradient></defs><g fill="url(%23trishulHover)" stroke="url(%23trishulHover)" stroke-width="2"><path d="M11 3 L11 12 L9 14 L13 14 Z"/><path d="M18 2 L18 14 L16 16 L20 16 Z"/><path d="M25 3 L25 12 L23 14 L27 14 Z"/><rect x="17" y="14" width="2" height="18"/><ellipse cx="18" cy="23" rx="4" ry="2"/></g></svg>') 18 18, pointer;
}

/* Form Elements Cursor */
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
    cursor: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 28 28"><defs><linearGradient id="trishulText" x1="0%25" y1="0%25" x2="100%25" y2="100%25"><stop offset="0%25" stop-color="%23ff0080"/><stop offset="25%25" stop-color="%23ff6b35"/><stop offset="50%25" stop-color="%23ffff00"/><stop offset="75%25" stop-color="%2300ff00"/><stop offset="100%25" stop-color="%230080ff"/></linearGradient></defs><g fill="url(%23trishulText)" stroke="url(%23trishulText)" stroke-width="1.2"><path d="M8 2 L8 9 L6 11 L10 11 Z"/><path d="M14 1 L14 11 L12 13 L16 13 Z"/><path d="M20 2 L20 9 L18 11 L22 11 Z"/><rect x="13" y="11" width="2" height="14"/><ellipse cx="14" cy="19" rx="3" ry="1.5"/></g></svg>') 14 14, text;
}

html {
    scroll-behavior: smooth;
    cursor: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><defs><linearGradient id="trishul" x1="0%25" y1="0%25" x2="100%25" y2="100%25"><stop offset="0%25" stop-color="%23ff0080"/><stop offset="25%25" stop-color="%23ff6b35"/><stop offset="50%25" stop-color="%23ffff00"/><stop offset="75%25" stop-color="%2300ff00"/><stop offset="100%25" stop-color="%230080ff"/></linearGradient></defs><g fill="url(%23trishul)" stroke="url(%23trishul)" stroke-width="1.5"><path d="M10 2 L10 10 L8 12 L12 12 Z"/><path d="M16 1 L16 12 L14 14 L18 14 Z"/><path d="M22 2 L22 10 L20 12 L24 12 Z"/><rect x="15" y="12" width="2" height="16"/><ellipse cx="16" cy="20" rx="3" ry="1.5"/></g></svg>') 16 16, auto;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background: linear-gradient(180deg, 
        var(--white) 0%, 
        rgba(255, 107, 53, 0.02) 25%, 
        rgba(107, 70, 193, 0.02) 75%, 
        var(--white) 100%);
    min-height: 100vh;
    font-feature-settings: "rlig" 1, "calt" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><defs><linearGradient id="trishul" x1="0%25" y1="0%25" x2="100%25" y2="100%25"><stop offset="0%25" stop-color="%23ff0080"/><stop offset="25%25" stop-color="%23ff6b35"/><stop offset="50%25" stop-color="%23ffff00"/><stop offset="75%25" stop-color="%2300ff00"/><stop offset="100%25" stop-color="%230080ff"/></linearGradient></defs><g fill="url(%23trishul)" stroke="url(%23trishul)" stroke-width="1.5"><path d="M10 2 L10 10 L8 12 L12 12 Z"/><path d="M16 1 L16 12 L14 14 L18 14 Z"/><path d="M22 2 L22 10 L20 12 L24 12 Z"/><rect x="15" y="12" width="2" height="16"/><ellipse cx="16" cy="20" rx="3" ry="1.5"/></g></svg>') 16 16, auto;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 0.75rem;
    }
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.gradient-text {
    background: var(--spiritual-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 10px var(--divine-glow));
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 48px;
    position: relative;
    overflow: hidden;
}

.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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--spiritual-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px var(--divine-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--divine-glow), var(--shadow-medium);
    filter: brightness(1.1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--divine-orange);
    border: 2px solid var(--divine-orange);
}

.btn-secondary:hover {
    background-color: var(--divine-orange);
    color: var(--white);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-medium);
    background-color: rgba(255, 255, 255, 0.98);
}

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

.nav-brand .logo {
    height: 3rem;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-brand .logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link, .nav-cta {
    color: var(--medium-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    background-color: transparent;
    cursor: pointer;
}

.nav-link:hover, .nav-cta:hover {
    background: var(--spiritual-gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 0 15px var(--divine-glow);
    transform: translateY(-2px);
}

/* Attractive Login Icon Button */
.nav-login-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--divine-purple), var(--sacred-red));
    border: 3px solid transparent;
    background-clip: padding-box;
    color: var(--white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.2);
}

.nav-login-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--divine-purple), var(--sacred-red), var(--gold));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-login-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.4);
    background: linear-gradient(135deg, var(--sacred-red), var(--divine-purple));
}

.nav-login-icon:hover::before {
    opacity: 1;
}

.nav-login-icon:active {
    transform: translateY(-1px) scale(1.05);
}

.nav-link.active, .nav-cta.active {
    background: var(--spiritual-gradient) !important;
    color: var(--white) !important;
    border-color: transparent !important;
    box-shadow: 0 0 15px var(--divine-glow) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle .bar {
    width: 24px;
    height: 3px;
    background-color: var(--medium-gray);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, 
        var(--light-gray) 0%, 
        rgba(255, 107, 53, 0.05) 25%,
        rgba(107, 70, 193, 0.05) 50%,
        var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, var(--divine-glow) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(107, 70, 193, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 70vh;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.image-container {
    position: relative;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-heavy);
}

.floating-icon {
    position: absolute;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    animation: float 6s ease-in-out infinite;
}

.floating-icon-1 {
    top: -1rem;
    right: -1rem;
    background: var(--spiritual-gradient);
    box-shadow: 0 0 20px var(--divine-glow);
}

.floating-icon-2 {
    bottom: -1rem;
    left: -1rem;
    background: linear-gradient(135deg, var(--divine-purple), var(--sacred-red));
    animation-delay: 1s;
    box-shadow: 0 0 20px rgba(107, 70, 193, 0.4);
}

/* Sections */
.services-section,
.testimonials-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.portfolio-section,
.contact-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--medium-gray);
    max-width: 32rem;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.service-icon {
    font-size: 2.5rem;
    background: var(--spiritual-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px var(--divine-glow));
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.service-link:hover {
    color: var(--navy);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: var(--shadow-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.portfolio-item img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(30, 58, 138, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--white);
    font-size: 1.5rem;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

/* Social Media Section */
.social-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.08) 0%, 
        rgba(107, 70, 193, 0.08) 50%,
        rgba(220, 38, 127, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="sparkle"><stop offset="0%" stop-color="rgba(255,107,53,0.3)"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><circle cx="20" cy="10" r="1" fill="url(%23sparkle)"/><circle cx="80" cy="5" r="0.5" fill="url(%23sparkle)"/><circle cx="60" cy="15" r="0.8" fill="url(%23sparkle)"/></svg>') repeat;
    opacity: 0.5;
}

.social-content {
    position: relative;
    z-index: 2;
}

.social-platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (max-width: 1200px) {
    .social-platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .social-platforms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.social-platform-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.1);
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.social-platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--divine-orange), var(--divine-purple), var(--sacred-red));
}

.social-platform-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Social Embed Styling - All Platforms */
.social-embed {
    width: 100%;
    height: 250px;
    border-radius: 1rem;
    background: var(--white);
    border: 1px solid #e5e7eb;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 1rem;
}

.social-embed .instagram-media {
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: auto !important;
}

/* Instagram Embed Container */
.instagram-embed-container {
    width: 100%;
    height: 250px;
    border-radius: 1rem;
    background: var(--white);
    border: 1px solid #e5e7eb;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    position: relative;
}

.instagram-feed-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Instagram Loading State */
.instagram-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
    text-align: center;
    background: #f8fafc;
}

.loading-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1rem;
}

.profile-placeholder {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.profile-img-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    animation: shimmer 1.5s infinite;
}

.username-placeholder {
    width: 80px;
    height: 14px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    border-radius: 4px;
    margin-bottom: 6px;
    animation: shimmer 1.5s infinite;
}

.follower-placeholder {
    width: 60px;
    height: 12px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    border-radius: 4px;
    animation: shimmer 1.5s infinite;
}

.loading-header i {
    font-size: 1.2rem;
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.instagram-loading p {
    margin: 0 0 1rem 0;
    color: #6b7280;
    font-size: 0.9rem;
}

.loading-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #f3f4f6;
    border-top: 3px solid #833ab4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: 200px 0; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Instagram Posts Grid (when loaded) */
.instagram-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    padding: 0.5rem;
    height: calc(100% - 80px);
    overflow-y: auto;
}

.instagram-real-post {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
}

.instagram-real-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-real-post:hover img {
    transform: scale(1.05);
}

.instagram-real-post::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-real-post:hover::after {
    opacity: 1;
}

/* Instagram API Integration Styles */
.instagram-feed-header {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    cursor: pointer;
}

.instagram-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.instagram-profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.instagram-profile-info h4 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
}

.instagram-profile-info span {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Comprehensive Responsive Design */

/* Large Screens */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

/* Medium Screens */
@media (max-width: 992px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-section {
        padding: 4rem 0 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .services-section,
    .testimonials-section,
    .portfolio-section,
    .contact-section {
        padding: 4rem 0;
    }
    
    .social-section {
        padding: 4rem 0;
    }
    
    .social-platforms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Tablet Screens */
@media (max-width: 768px) {
    .hero-section {
        padding: 5rem 0 3rem;
        margin-top: 0;
    }
    
    .hero-content {
        min-height: auto;
        padding-top: 1rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
        white-space: normal;
        line-height: 1.3;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .portfolio-item img {
        height: 12rem;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(30, 58, 138, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.nav-menu-open {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
    }
    
    .nav-toggle span {
        width: 24px;
        height: 2px;
        background: var(--navy);
        transition: all 0.3s ease;
    }
    
    .nav-toggle.nav-toggle-open span:first-child {
        transform: rotate(45deg) translate(6px, 6px);
        background: var(--white);
    }
    
    .nav-toggle.nav-toggle-open span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.nav-toggle-open span:last-child {
        transform: rotate(-45deg) translate(6px, -6px);
        background: var(--white);
    }
    
    .nav-link, .nav-cta {
        color: var(--white);
        font-size: 1.125rem;
        padding: 1rem 2rem;
    }
    
    .nav-login-icon {
        width: 50px;
        height: 50px;
        font-size: 1.75rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
}

/* Mobile Screens */
@media (max-width: 480px) {
    .hero-section {
        padding: 4.5rem 0 2.5rem;
    }
    
    .hero-content {
        padding-top: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.4rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        padding: 0 0.5rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.75rem 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .services-grid,
    .portfolio-grid {
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .service-icon {
        font-size: 2rem;
    }
    
    .service-title {
        font-size: 1.125rem;
    }
    
    .portfolio-item img {
        height: 10rem;
    }
    
    .social-platform-card {
        padding: 1.25rem;
        min-height: 350px;
    }
    
    .social-embed {
        height: 200px;
        margin-bottom: 1rem;
    }
    
    .instagram-embed-container {
        height: 200px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .floating-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    .map-link {
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
        gap: 0.5rem;
    }
}

/* Extra Small Screens */
@media (max-width: 320px) {
    .hero-section {
        padding: 4rem 0 2rem;
    }
    
    .hero-content {
        padding-top: 2rem;
    }
    
    .hero-title {
        font-size: 1.25rem;
        margin-top: 2rem;
        padding: 0 0.25rem;
    }
    
    .section-title {
        font-size: 1.375rem;
    }
    
    .service-card,
    .contact-form {
        padding: 1rem;
    }
    
    .btn {
        padding: 0.625rem 0.75rem;
        font-size: 0.85rem;
        min-height: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.6rem;
        white-space: normal;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.4rem;
        line-height: 1.4;
    }
}

/* Hero Tagline Styling - Original Design */
.hero-tagline {
    margin: 1.5rem 0 2rem 0;
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(245, 158, 11, 0.1));
    border-radius: 1rem;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.hero-tagline::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(135deg, var(--navy), var(--gold));
    border-radius: 1rem;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
}

.tagline-main {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, var(--navy), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tagline-sub {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    color: var(--navy);
    font-style: italic;
}

.brand-love {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    color: var(--gold);
    text-transform: capitalize;
}

/* Responsive tagline */
@media (max-width: 768px) {
    .tagline-main {
        font-size: 1.4rem;
    }
    
    .tagline-sub {
        font-size: 1.1rem;
    }
    
    .brand-love {
        font-size: 0.9rem;
    }
}

/* Toast Notification Styling */
.toast-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    background: linear-gradient(135deg, var(--navy), var(--gold));
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateX(450px);
    opacity: 0;
    transition: all 0.3s ease;
}

.toast-notification.toast-show {
    transform: translateX(0);
    opacity: 1;
}

.toast-content {
    padding: 1.5rem;
    color: var(--white);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
}

.toast-message {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 500;
}

.toast-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-close:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .toast-notification {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .toast-notification.toast-show {
        transform: translateY(0);
    }
}

/* Footer Map Link Styling */
.map-link-container {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--navy), var(--gold));
    color: var(--white);
    text-decoration: none;
    border-radius: 2rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
    background: linear-gradient(135deg, var(--gold), var(--navy));
    color: var(--white);
    text-decoration: none;
}

.map-link i {
    font-size: 1.1rem;
    color: var(--white);
}

/* Remove old thumbnail styling since all platforms now use feeds */

/* Keep WhatsApp icon styling unchanged */
.social-platform-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.social-platform-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: inherit;
    filter: blur(10px);
    opacity: 0.3;
}

.social-platform-icon i {
    position: relative;
    z-index: 2;
}

.social-platform-icon.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.social-platform-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.social-platform-description {
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.social-platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--divine-orange), var(--divine-purple));
    color: var(--white);
    text-decoration: none;
    border-radius: 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.social-platform-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, var(--divine-purple), var(--sacred-red));
}

/* Remove stats section styles since we removed the counts */

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 6xl;
    margin: 0 auto;
}

.contact-form-container,
.contact-info-card,
.social-media-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-light);
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--medium-gray);
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    background-color: var(--white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-textarea {
    resize: vertical;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--gold);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-title {
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.contact-text {
    color: var(--medium-gray);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--gold);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--gold);
    color: var(--white);
}

/* Footer */
.footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-social-link:hover {
    color: var(--gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--gold);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #d1d5db;
}

.footer-contact-item i {
    color: var(--gold);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #4b5563;
    padding-top: 2rem;
}

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

.footer-copyright {
    color: #d1d5db;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-link:hover {
    color: var(--gold);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    background-color: var(--white);
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 800px;
    border-radius: 1rem;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--medium-gray);
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--navy);
}

.modal-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.modal-title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        border-top: 1px solid var(--border-light);
        flex-direction: column;
        gap: 0;
        padding: 1rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link,
    .nav-cta {
        display: block;
        padding: 0.75rem 1rem;
        text-align: center;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .floating-icon {
        display: none;
    }
    
    .services-grid,
    .portfolio-grid,
    .social-platforms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .services-grid,
    .portfolio-grid,
    .social-platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 1rem;
        width: 95%;
    }
}