   :root {
            --primary-color: #F7A8B8;
            --secondary-color: #5D4037;
            --accent-color: #FFD54F;
            --light-color: #FFF9F2;
            --dark-color: #3E2723;
            --text-color: #4E342E;
            --white: #FFFFFF;
            --whatsapp-color: #25D366;
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            background-color: var(--light-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-weight: 700;
            color: var(--dark-color);
        }

        h1 {
            font-size: 3.8rem;
            font-family: 'Dancing Script', cursive;
            color: var(--primary-color);
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
        }

        h2 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
            font-family: 'Playfair Display', serif;
        }

        h2:after {
            content: '';
            position: absolute;
            width: 60%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            bottom: -10px;
            left: 0;
            border-radius: 3px;
        }

        .container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
            animation: slideDown 0.5s ease;
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo-container {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: transform 0.3s;
        }

        .logo-container:hover {
            transform: scale(1.03);
        }

        .logo-img-container {
            position: relative;
            margin-right: 20px;
        }

        .logo-circle {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, var(--primary-color), #FFB6C1);
            border-radius: 50%;
            box-shadow: 0 6px 15px rgba(247, 168, 184, 0.4);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-circle img {
            width: 90%;
            height: 90%;
            object-fit: contain;
            border-radius: 50%;
        }
        
        .logo-circle:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.3) 1%, transparent 20%);
            transform: rotate(30deg);
        }

        .logo-text-container {
            display: flex;
            flex-direction: column;
        }

        .logo-main {
            font-family: 'Dancing Script', cursive;
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
            letter-spacing: 1px;
        }

        .logo-tagline {
            font-size: 1rem;
            color: var(--secondary-color);
            font-weight: 600;
            letter-spacing: 2px;
            margin-top: 5px;
            text-transform: uppercase;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 35px;
            position: relative;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--dark-color);
            font-weight: 600;
            font-size: 1.15rem;
            transition: all 0.3s;
            position: relative;
            padding: 8px 0;
            display: inline-block;
        }

        nav ul li a:hover {
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            bottom: 0;
            left: 0;
            transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-radius: 2px;
        }

        nav ul li a:hover:after {
            width: 100%;
        }

        /* ACTIVE MENU STYLES */
        nav ul li a.active {
            color: var(--primary-color);
            font-weight: 700;
            padding: 8px 12px;
            border-radius: 8px;
        }

        nav ul li a.active:after {
            width: 100%;
            height: 4px;
            bottom: -5px;
        }

        .mobile-menu {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--dark-color);
            transition: color 0.3s;
        }

        .mobile-menu:hover {
            color: var(--primary-color);
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(255, 249, 242, 0.9), rgba(255, 249, 242, 0.95)), url('https://images.unsplash.com/photo-1555507036-ab794f27d2e9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
            background-size: cover;
            background-position: center;
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23f7a8b8' fill-opacity='0.15' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.5;
            z-index: 0;
        }

        .page-header-content {
            position: relative;
            z-index: 1;
        }

        .page-title {
            margin-bottom: 30px;
        }

        .page-intro {
            font-size: 1.9rem;
            /* max-width: 1000px; */
            margin: 0 auto;
            color: var(--text-color);
            line-height: 1.8;
            color: var(--primary-color);
        }

        /* Custom Order Section */
        .custom-order-section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 3rem;
        }

        .section-title p {
            font-size: 1.3rem;
            color: var(--text-color);
            max-width: 800px;
            margin: 25px auto 0;
            line-height: 1.8;
        }

        /* Order Steps */
        .order-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }

        .step-card {
            background-color: var(--white);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .step-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), #FF80AB);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 auto 25px;
            box-shadow: 0 8px 20px rgba(247, 168, 184, 0.3);
        }

        .step-card h3 {
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: var(--dark-color);
        }

        .step-card p {
            color: var(--text-color);
            line-height: 1.7;
            font-size: 1.05rem;
        }

        .step-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            border-radius: 5px 5px 0 0;
        }

        /* Order Form */
        .order-form-container {
            background-color: var(--white);
            border-radius: 25px;
            padding: 60px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            max-width: 900px;
            margin: 0 auto;
        }

        .form-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .form-title h3 {
            font-size: 2.2rem;
            color: var(--dark-color);
            font-family: 'Playfair Display', serif;
        }

        .form-title p {
            color: var(--text-color);
            font-size: 1.1rem;
            margin-top: 15px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .order-form {
            display: grid;
            gap: 25px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        .form-group {
            margin-bottom: 10px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--dark-color);
            font-size: 1.05rem;
        }

        .required {
            color: var(--primary-color);
            margin-left: 3px;
        }

        .form-control {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #eee;
            border-radius: 12px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: all 0.3s;
            background-color: var(--light-color);
        }

        .form-control:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(247, 168, 184, 0.2);
            background-color: var(--white);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        select.form-control {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234E342E' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 20px center;
            background-size: 16px;
            padding-right: 50px;
        }

        /* WhatsApp Field - Special Styling */
        .whatsapp-wrapper {
            display: flex;
            align-items: center;
            background: var(--light-color);
            border: 2px solid #eee;
            border-radius: 12px;
            transition: all 0.3s;
        }
        
        .whatsapp-wrapper:focus-within {
            border-color: var(--whatsapp-color);
            box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
        }
        
        .whatsapp-prefix {
            background: #f0f0f0;
            padding: 16px 20px;
            border-radius: 12px 0 0 12px;
            border-right: 2px solid #eee;
            font-weight: 600;
            color: var(--whatsapp-color);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .whatsapp-prefix i {
            font-size: 1.2rem;
        }
        
        #whatsapp {
            border: none;
            border-radius: 0 12px 12px 0;
            background: var(--light-color);
        }
        
        #whatsapp:focus {
            box-shadow: none;
            background: var(--white);
        }

        /* Cake Design Options */
        .design-options {
            margin: 30px 0;
        }

        .options-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .design-option {
            position: relative;
            cursor: pointer;
        }

        .design-option input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
        }

        .option-label {
            display: block;
            background-color: var(--light-color);
            border: 2px solid #eee;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s;
        }

        .design-option input:checked + .option-label {
            background-color: rgba(247, 168, 184, 0.1);
            border-color: var(--primary-color);
            box-shadow: 0 5px 15px rgba(247, 168, 184, 0.2);
        }

        .option-label:hover {
            border-color: var(--primary-color);
            transform: translateY(-5px);
        }

        .option-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .option-label h4 {
            font-size: 1.2rem;
            margin-bottom: 8px;
        }

        .option-label p {
            font-size: 0.9rem;
            color: var(--text-color);
            opacity: 0.8;
        }

        /* File Upload */
        .file-upload {
            position: relative;
            margin-top: 10px;
        }

        .file-input {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: pointer;
            z-index: 2;
        }

        .file-label {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            background-color: var(--light-color);
            border: 2px dashed #ddd;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
        }

        .file-label:hover {
            border-color: var(--primary-color);
            background-color: rgba(247, 168, 184, 0.05);
        }

        .file-icon {
            font-size: 2rem;
            color: var(--primary-color);
        }

        .file-text h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .file-text p {
            font-size: 0.9rem;
            color: var(--text-color);
            opacity: 0.8;
        }

        /* Submit Button */
        .submit-btn {
            background: linear-gradient(135deg, var(--primary-color), #FF80AB);
            color: white;
            border: none;
            padding: 20px 50px;
            border-radius: 35px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s;
            font-size: 1.3rem;
            letter-spacing: 1px;
            box-shadow: 0 10px 25px rgba(247, 168, 184, 0.3);
            display: block;
            margin: 40px auto 0;
            min-width: 250px;
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, var(--dark-color), #5D4037);
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(247, 168, 184, 0.4);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        /* Success Message */
        .success-message {
            display: none;
            text-align: center;
            padding: 50px;
            background-color: var(--white);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-top: 30px;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .success-icon {
            font-size: 5rem;
            color: var(--primary-color);
            margin-bottom: 25px;
        }

        .success-message h3 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--dark-color);
        }

        .success-message p {
            font-size: 1.2rem;
            color: var(--text-color);
            max-width: 600px;
            margin: 0 auto 30px;
            line-height: 1.7;
        }

        /* WhatsApp Button in Success Message */
        .whatsapp-confirm-btn {
            background: var(--whatsapp-color);
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            margin: 20px 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
        }

        .whatsapp-confirm-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
        }

        .whatsapp-confirm-btn i {
            font-size: 1.5rem;
        }

        /* Track Order Button */
        .track-order-btn {
            background: linear-gradient(135deg, var(--secondary-color), var(--dark-color));
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s;
            font-size: 1.1rem;
            letter-spacing: 1px;
            box-shadow: 0 8px 20px rgba(93, 64, 55, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
            text-decoration: none;
        }

        .track-order-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(93, 64, 55, 0.4);
        }

        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: var(--light-color);
            padding: 100px 0 40px;
            position: relative;
        }

        footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath d='M500,97C126.7,96.3,0.8,19.8,0,0v100l1000,0V0C999.2,19.8,873.3,96.3,500,97z' fill='%233E2723'/%3E%3C/svg%3E");
            background-size: 100% 120px;
            background-position: top;
            background-repeat: no-repeat;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 60px;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }

        .footer-logo {
            font-family: 'Dancing Script', cursive;
            font-size: 3.5rem;
            color: var(--primary-color);
            margin-bottom: 25px;
            line-height: 1;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        }

        .footer-about p {
            margin-bottom: 30px;
            opacity: 0.85;
            line-height: 1.9;
            font-size: 1.05rem;
        }

        .footer-links h3, .footer-contact h3 {
            font-size: 1.6rem;
            margin-bottom: 35px;
            color: var(--white);
            font-family: 'Playfair Display', serif;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-links h3:after, .footer-contact h3:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            bottom: 0;
            left: 0;
            border-radius: 2px;
        }

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

        .footer-links ul li {
            margin-bottom: 18px;
        }

        .footer-links ul li a {
            color: var(--light-color);
            text-decoration: none;
            opacity: 0.85;
            transition: all 0.3s;
            display: inline-block;
            font-size: 1.05rem;
        }

        .footer-links ul li a:hover {
            opacity: 1;
            color: var(--primary-color);
            transform: translateX(8px);
        }

        .footer-contact p {
            margin-bottom: 25px;
            opacity: 0.85;
            display: flex;
            align-items: flex-start;
            line-height: 1.7;
            font-size: 1.05rem;
        }

        .footer-contact i {
            margin-right: 18px;
            color: var(--primary-color);
            font-size: 1.3rem;
            margin-top: 3px;
        }

        .footer-social {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.12);
            color: var(--light-color);
            border-radius: 50%;
            font-size: 1.3rem;
            transition: all 0.4s;
            text-decoration: none;
        }

        .social-icon:hover {
            background: linear-gradient(135deg, var(--primary-color), #FF80AB);
            transform: translateY(-8px) rotate(10deg);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
        }

        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            font-size: 1rem;
            opacity: 0.8;
            position: relative;
            z-index: 1;
        }

        .copyright i.fa-heart {
            color: var(--primary-color);
            margin: 0 5px;
            animation: heartbeat 1.5s infinite;
        }

        @keyframes heartbeat {
            0% { transform: scale(1); }
            5% { transform: scale(1.2); }
            10% { transform: scale(1.1); }
            15% { transform: scale(1.3); }
            50% { transform: scale(1); }
            100% { transform: scale(1); }
        }

        /* Responsive Design */
        @media (max-width: 1100px) {
            h2 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2.8rem;
            }
            
            .order-form-container {
                padding: 50px 40px;
            }
        }

        @media (max-width: 900px) {
            .form-row {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .options-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .order-steps {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }
        }

        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                padding: 25px;
                box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
                z-index: 100;
                border-top: 2px solid var(--light-color);
            }
            
            nav ul.show {
                display: flex;
            }
            
            nav ul li {
                margin: 0;
                margin-bottom: 15px;
            }
            
            nav ul li a {
                display: block;
                padding: 12px 20px;
                width: 100%;
            }
            
            nav ul li a.active {
                padding: 12px 20px;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .page-header {
                padding: 100px 0 60px;
            }
            
            .custom-order-section {
                padding: 80px 0;
            }
            
            .logo-main {
                font-size: 2.3rem;
            }
            
            .logo-circle {
                width: 65px;
                height: 65px;
                font-size: 1.8rem;
            }
            
            .order-form-container {
                padding: 40px 30px;
            }
            
            .options-grid {
                grid-template-columns: 1fr;
            }
            
            .whatsapp-wrapper {
                flex-direction: column;
                align-items: stretch;
            }
            
            .whatsapp-prefix {
                border-radius: 12px 12px 0 0;
                border-right: none;
                border-bottom: 2px solid #eee;
                justify-content: center;
            }
            
            #whatsapp {
                border-radius: 0 0 12px 12px;
            }
        }

        @media (max-width: 576px) {
            h1 {
                font-size: 3rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .logo-main {
                font-size: 2rem;
            }
            
            .logo-circle {
                width: 55px;
                height: 55px;
                font-size: 1.6rem;
                margin-right: 15px;
            }
            
            .logo-tagline {
                font-size: 0.85rem;
                letter-spacing: 1px;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .page-intro {
                font-size: 1.5rem;
                color: var(--primary-color);
            }
            
            .order-form-container {
                padding: 35px 25px;
            }
            
            .submit-btn {
                width: 100%;
                min-width: auto;
                padding: 18px 30px;
            }
            
            .step-card {
                padding: 35px 25px;
            }
            
            .track-order-btn,
            .whatsapp-confirm-btn {
                width: 100%;
                justify-content: center;
                padding: 15px 20px;
                font-size: 1rem;
            }
        }

        /* Mobile Portrait Specific Styles */
@media screen and (max-width: 480px) {
    .success-message {
        padding: 18px 12px;
        margin: 8px 6px;
        border-radius: 12px;
        width: 100%;
        max-width: 100%;
    }
    
    .success-icon {
        font-size: 3.2rem;
        margin-bottom: 10px;
    }
    
    .success-message h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .success-message p {
        font-size: 0.9rem;
        margin-bottom: 12px;
        padding: 0 3px;
        line-height: 1.4;
    }
    
    .whatsapp-confirm-btn {
        padding: 13px 18px;
        font-size: 0.9rem;
        max-width: 100%;
        min-height: 48px;
        gap: 8px;
        margin: 6px auto;
    }
    
    .whatsapp-confirm-btn i {
        font-size: 1.2rem;
    }
}

/* Extra Small Devices - Max Optimization */
@media screen and (max-width: 380px) {
    .success-message {
        padding: 15px 10px;
        margin: 6px 4px;
        border-radius: 10px;
    }
    
    .success-icon {
        font-size: 2.8rem;
        margin-bottom: 8px;
    }
    
    .success-message h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .success-message p {
        font-size: 0.85rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .whatsapp-confirm-btn {
        padding: 12px 15px;
        font-size: 0.85rem;
        min-height: 44px;
        gap: 6px;
    }
    
    .whatsapp-confirm-btn i {
        font-size: 1.1rem;
    }
}

/* Landscape Mode */
@media screen and (orientation: landscape) and (max-height: 500px) {
    .success-message {
        padding: 15px 20px;
        margin: 5px 10px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }
    
    .success-icon {
        font-size: 2.5rem;
        margin-bottom: 0;
        flex: 0 0 100%;
    }
    
    .success-message h3 {
        font-size: 1.1rem;
        margin-bottom: 4px;
        flex: 0 0 100%;
    }
    
    .success-message p {
        font-size: 0.85rem;
        margin-bottom: 8px;
        flex: 0 0 100%;
        max-width: 80%;
    }
    
    .whatsapp-confirm-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        min-height: 40px;
        max-width: 250px;
        flex: 0 1 auto;
    }
}

/* Tablet and Larger Screens */
@media screen and (min-width: 768px) {
    .success-message {
        padding: 40px 30px;
        max-width: 600px;
        margin: 20px auto;
        border-radius: 20px;
    }
    
    .success-icon {
        font-size: 4.5rem;
        margin-bottom: 20px;
    }
    
    .success-message h3 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .success-message p {
        font-size: 1.1rem;
        max-width: 90%;
        margin: 0 auto 20px;
    }
    
    .whatsapp-confirm-btn {
        padding: 16px 35px;
        font-size: 1.1rem;
        max-width: 350px;
        min-height: 55px;
    }
}

/* Height-based optimization - Ensures 1.5 screen visibility */
@media screen and (max-height: 700px) {
    .success-message {
        padding: 15px 12px;
        margin: 5px 8px;
    }
    
    .success-icon {
        font-size: 2.8rem;
        margin-bottom: 8px;
    }
    
    .success-message h3 {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .success-message p {
        font-size: 0.85rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .whatsapp-confirm-btn {
        padding: 11px 16px;
        font-size: 0.85rem;
        min-height: 42px;
        max-width: 280px;
        margin: 5px auto;
    }
}

/* Combined width and height optimization for 1.5 screen */
@media screen and (max-width: 480px) and (max-height: 750px) {
    .success-message {
        padding: 12px 10px;
        margin: 5px 6px;
        border-radius: 10px;
    }
    
    .success-icon {
        font-size: 2.5rem;
        margin-bottom: 6px;
    }
    
    .success-message h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    
    .success-message p {
        font-size: 0.8rem;
        margin-bottom: 8px;
        padding: 0 2px;
    }
    
    .whatsapp-confirm-btn {
        padding: 10px 14px;
        font-size: 0.8rem;
        min-height: 38px;
        max-width: 100%;
        gap: 5px;
        margin: 4px auto;
    }
    
    .whatsapp-confirm-btn i {
        font-size: 1rem;
    }
}